Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .vibe/development-plan-publish-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ if (args.length === 0) {
- [x] Fix remaining test failures in MCP server and E2E tests
- [x] Update all test configurations from old format (web_sources, local_path) to new sources format
- [x] Fix CLI routing issue - entry point was not properly awaiting imports
- [x] Fix missing CLI dependencies in main package (commander, chalk, ora)

### Completed

Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@
"@codemcp/knowledge-mcp-server": "workspace:*",
"@modelcontextprotocol/sdk": "^1.19.1",
"@types/js-yaml": "4.0.9",
"js-yaml": "4.1.0"
"js-yaml": "4.1.0",
"commander": "^12.0.0",
"chalk": "^5.3.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "0.16.8",
Expand Down
Loading
Loading