You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update all references from codeprism-mcp-server to codeprism binary
Comprehensive update to align all documentation, test specs, and examples
with the new binary name 'codeprism':
Configuration Updates:
- Update test-harness.yaml and test-harness-fixed.yaml to use 'codeprism --mcp'
- Update codeprism-moth-specs to use correct binary and args
- Update comprehensive test files to spawn correct binary
Documentation Updates:
- README.md: Update all examples to use 'codeprism' with --mcp flag
- Update download URLs to reflect new binary naming (codeprism-*)
- Update Claude Desktop config examples with proper args structure
- docs/: Update all command examples across documentation
Docusaurus Documentation:
- Update all .md files in codeprism-docs/ to use 'codeprism --mcp'
- Update configuration examples in getting-started guides
- Update tools documentation and integration examples
Behavioral Note:
- SERVER_NAME constant kept as 'codeprism-mcp-server' for MCP protocol identification
- Binary name is now 'codeprism' for clean user experience
- All usage now follows pattern: 'codeprism --mcp' for server mode
This completes the binary rename alignment across all project documentation
and configuration files.
Copy file name to clipboardExpand all lines: README.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -142,7 +142,7 @@ cd codeprism
142
142
cargo build --release
143
143
144
144
# Verify installation
145
-
./target/release/codeprism-mcp-server --help
145
+
./target/release/codeprism --help
146
146
```
147
147
148
148
**⚠️ Development Note**: This project enforces strict implementation completeness standards via git pre-commit hooks. All commits must contain complete, functional implementations with zero placeholder code. The existing `.git/hooks/pre-commit` script automatically validates code quality and implementation completeness.
0 commit comments