Releases: MutharasuArchunan13/codebase-intel
Releases · MutharasuArchunan13/codebase-intel
v0.2.0 — Global Workspace Manager
What's New
Global Workspace Manager
Serve multiple projects from a single MCP server — no more per-project setup.
New CLI commands:
codebase-intel register /path/to/project— add to global registrycodebase-intel unregister <id>— remove from registrycodebase-intel projects— list all registered projectscodebase-intel serve --auto— workspace-aware MCP server
How it works:
- Register your repos once (from anywhere on disk)
- Run
codebase-intel serve --auto - MCP server auto-routes each request to the correct project based on file paths
- LRU cache keeps at most 5 projects loaded — evicts least recently used
Cross-repo improvements:
codebase-intel crossrepo --allscans all registered projects (no manual paths)
Global install (no venv needed):
uvx codebase-intel serve --auto
# or
pipx install codebase-intelMCP config (set once, works everywhere):
{
"servers": {
"codebase-intel": {
"type": "stdio",
"command": "uvx",
"args": ["codebase-intel", "serve", "--auto"]
}
}
}Also in this release
- Intent Tracking — captures goals with machine-verifiable acceptance criteria
- Cross-repo scanner — 14 frameworks, 10 languages
- Live analytics + feedback loop wired into MCP
- Auto-contract generation from detected patterns
Full Changelog: v0.1.0...v0.2.0
v0.1.0 — Initial Release
See README for full details. pip install codebase-intel