AgenticCodebase
Quickstart
curl -fsSL https://agentralabs.tech/install/codebase | bash
1. Install
curl -fsSL https://agentralabs.tech/install/codebase | bashProfile-specific commands are listed in Installation.
2. Compile a repository
acb compile ./my-project -o project.acb --coverage-report coverage.json
acb info project.acb3. Run core queries
acb query project.acb symbol --name "main"
acb query project.acb impact --unit-id 1
acb query project.acb deps --unit-id 1 --depth 3
acb query project.acb test-gap
acb query project.acb hotspots
acb query project.acb dead-code4. Run health and gate checks
acb health project.acb
acb gate project.acb --unit-id 1 --max-risk 0.60 --require-tests
acb budget project.acb --horizon-years 20 --max-bytes 21474836485. Start MCP server
acb-mcp serveUse Ctrl+C to stop after startup verification.