Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
09cdf1e
feat(sequential-thinking): Add comprehensive linting, type safety, an…
vlordier Feb 12, 2026
aa30704
feat(sequential-thinking): Round 7 — Configurability, Logic Gaps & Ro…
vlordier Feb 12, 2026
e0398a4
fix: Address minor observations from PR review
vlordier Feb 12, 2026
b93d84d
refactor: Implement 5 major logic improvements for efficiency and rob…
vlordier Feb 12, 2026
58a8a25
refactor: Implement 5 architectural improvements with comprehensive t…
vlordier Feb 12, 2026
90597e3
fix(docker): Correct build process to compile TypeScript
vlordier Feb 12, 2026
732c3f3
test: Add comprehensive Docker e2e tests
vlordier Feb 12, 2026
c8feee4
feat: Add progress overview, critique, and smart thought compression
vlordier Feb 12, 2026
2094307
refactor: 5 robustness & cleanup improvements
vlordier Feb 13, 2026
b01a6dd
refactor: 10 logic & implementation improvements
vlordier Feb 13, 2026
6ec4572
feat: Add comprehensive Zod schemas with validation improvements
vlordier Feb 13, 2026
6a61477
fix: Update Dockerfile and tsconfig for standalone build
vlordier Feb 13, 2026
dfd3e48
perf: Optimize regex patterns and string operations
vlordier Feb 13, 2026
958aa15
chore: Update dependencies and add maintenance scripts
vlordier Feb 13, 2026
4ed4933
chore: Add Docker linting, optimization, and maintenance scripts
vlordier Feb 13, 2026
1d985a0
chore: Tighten ESLint rules and improve test maintainability
vlordier Feb 13, 2026
7b0abe4
feat: Add metacognition module with circle detection, confidence scor…
vlordier Feb 13, 2026
38a0ca8
fix: Update E2E test to expect security block for javascript: protocol
vlordier Feb 13, 2026
28da4d8
feat: Add adaptive metacognition features
vlordier Feb 13, 2026
684a14f
docs: Add comprehensive documentation, TypeDoc, and CI
vlordier Feb 13, 2026
68a6599
feat: Add auto-mode selection and complexity analysis
vlordier Feb 13, 2026
967ace8
feat: Add proper enums with descriptions for LLM clarity
vlordier Feb 13, 2026
8d5ead1
feat: Expand problem types and add reasoning styles
vlordier Feb 13, 2026
31d4e41
feat: Add problem type metadata with phases, anti-patterns, completeness
vlordier Feb 13, 2026
23586f4
fix: Update package.json and format scripts
vlordier Feb 13, 2026
664ddb6
feat: Expand metacognition with patterns, insights, domains, recommen…
vlordier Feb 13, 2026
b958c28
feat: Upgrade to Zod v4 and Vitest v4 with breaking changes fixes
Feb 13, 2026
6e233f5
feat: Add get_version MCP tool for server version info
Feb 14, 2026
b6a36a1
fix: Match default server version to package.json (0.6.2)
Feb 14, 2026
41579d5
fix: Update test expectation for version to 0.6.2
Feb 14, 2026
3a47443
test: Enhance test suite with 44 new tests
Feb 14, 2026
5bfb3b1
test: Add snapshot tests and achieve 90%+ coverage
Feb 14, 2026
2f39949
chore(release): 0.6.3
Feb 14, 2026
d2a1513
feat: Add auto-versioning with standard-version
Feb 14, 2026
0938f67
fix: Sync version script regex pattern
Feb 14, 2026
b53f2c0
chore: Replace standard-version with release-it for modern versioning
Feb 14, 2026
538aa2f
chore: Configure release-it
Feb 14, 2026
d726cc6
chore: Update release-it config for CI
Feb 14, 2026
562c240
chore: Add --ci flag to release-it
Feb 14, 2026
0ab3264
Release 0.8.0
Feb 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
13 changes: 13 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
"mcp-docs": {
"type": "http",
"url": "https://modelcontextprotocol.io/mcp"
},
"sequential-thinking": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "MAX_THOUGHT_LENGTH=5000",
"-e", "MAX_HISTORY_SIZE=100",
"-e", "ENABLE_METRICS=true",
"-e", "ENABLE_HEALTH_CHECKS=true",
"mcp/sequential-thinking"
]
}
}
}
Loading
Loading