Skip to content

Commit 165158a

Browse files
jaykaycodesclaude
andcommitted
docs: update README with query CLI, agents table, fix build command
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3bb24f6 commit 165158a

1 file changed

Lines changed: 21 additions & 7 deletions

File tree

README.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,12 @@ Restart Claude Code, then use the `analyze_repo` or `query_repo` tools.
5151
### CLI
5252

5353
```bash
54-
npx codebase-analyzer-mcp analyze . # Standard analysis
55-
npx codebase-analyzer-mcp analyze . -d surface # Fast, free overview
56-
npx codebase-analyzer-mcp analyze . -d deep -s # Full semantic analysis
57-
npx codebase-analyzer-mcp patterns . # Find design patterns
58-
npx codebase-analyzer-mcp dataflow . "user login" # Trace data flow
54+
npx codebase-analyzer-mcp analyze . # Standard analysis
55+
npx codebase-analyzer-mcp analyze . -d surface # Fast, free overview
56+
npx codebase-analyzer-mcp analyze . -d deep -s # Full semantic analysis
57+
npx codebase-analyzer-mcp query . "how is auth handled?" # Ask a question
58+
npx codebase-analyzer-mcp patterns . # Find design patterns
59+
npx codebase-analyzer-mcp dataflow . "user login" # Trace data flow
5960
```
6061

6162
## What It Does
@@ -80,12 +81,25 @@ Analysis results include expandable sections - you only pay for what you drill i
8081
| `trace_dataflow` | Trace data flow through the system |
8182
| `get_analysis_capabilities` | List supported languages and analysis options |
8283

83-
## Plugin Command
84+
## Plugin
85+
86+
### Command
8487

8588
```
8689
/cba:analyze [source] [--depth surface|standard|deep] [--focus <paths>]
8790
```
8891

92+
### Agents
93+
94+
| Agent | Purpose |
95+
|-------|---------|
96+
| `architecture-analyzer` | Full codebase architecture analysis |
97+
| `pattern-detective` | Design/anti-pattern detection |
98+
| `dataflow-tracer` | Data flow tracing through systems |
99+
| `codebase-explorer` | Quick exploration and Q&A |
100+
101+
Agents are routed automatically based on your question — just ask naturally.
102+
89103
---
90104

91105
## Alternative Installation
@@ -104,7 +118,7 @@ git clone https://github.com/jaykaycodes/codebase-analyzer-mcp.git
104118
cd codebase-analyzer-mcp
105119
bun install
106120
bun run dev # Watch mode
107-
bun run build:js # Build JS
121+
bun run build # Build
108122
bun run cba analyze . # Test CLI
109123
```
110124

0 commit comments

Comments
 (0)