Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1a65640
feat(phase-1): Add TDD tests for @say2/mcp package
livelifelively Jan 12, 2026
786ddac
feat(phase-1): implement Built-in Client core components
livelifelively Jan 12, 2026
369f76a
test(mcp): add high-priority gap tests and property-based tests
livelifelively Jan 13, 2026
35af099
test(mcp): add remaining actionable gap tests
livelifelively Jan 13, 2026
017bb10
test: strengthen tests to kill mutation survivors
livelifelively Jan 13, 2026
9b5a583
chore: test quality review updates
livelifelively Jan 13, 2026
f3e7fb0
docs: update test reports with gap analysis
livelifelively Jan 13, 2026
2bcb52f
feat: implement client protocol validation and pagination w/ tests
livelifelively Jan 13, 2026
78818cc
refactor: centralize MCP protocol version constant
livelifelively Jan 13, 2026
c30d2be
chore: update MCP protocol version to 2025-11-25
livelifelively Jan 13, 2026
b918188
refactor: replace fake coverage tests with real integration tests
livelifelively Jan 13, 2026
e0cf3e6
updated tests as per new specs;
livelifelively Jan 13, 2026
5f24f5e
updated tests as per new specs;
livelifelively Jan 13, 2026
62bfcf1
updated tests as per new specs;
livelifelively Jan 13, 2026
1d8ae9e
feat(core): implement configurable timeouts and detector DI
livelifelively Jan 13, 2026
31e4a02
fix missing tests;
livelifelively Jan 13, 2026
7c51f69
missing features implementation;
livelifelively Jan 13, 2026
34dd9b3
fix: test isolation via DI and session state machine improvements
livelifelively Jan 13, 2026
bc6b07a
update bun.lock to fix failing tests issue; move implementation docs …
livelifelively Jan 13, 2026
7852390
fix linting errors;
livelifelively Jan 14, 2026
d4018ed
Merge branch 'phase-1-tests' of github.com:context-engine/say2 into p…
livelifelively Jan 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 65 additions & 50 deletions bun.lock

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions packages/core/src/middleware/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
export { Context, createPipeline, MiddlewarePipeline } from "./pipeline";
export {
createStateMachineMiddleware,
protocolVersionKey,
serverCapabilitiesKey,
serverInfoKey,
} from "./state-machine";
export { createStoreMiddleware } from "./store";
Loading