ccglisted
Install: claude install-skill tae2089/code-context-graph
# code-context-graph — Core Build & Search
Local code analysis tool that parses codebases via Tree-sitter into a knowledge graph with 12 language support and annotation-powered search.
## Subcommands
| Command | Description | Example |
| ----------------------------------- | ------------------------------------------- | ----------------------------------------- |
| `build [dir]` | Parse directory, build graph + search index | `ccg build .` |
| `build --exclude <pat>` | Exclude files/paths (repeatable) | `ccg build --exclude vendor` |
| `build --no-recursive [dir]` | Only parse top-level directory | `ccg build --no-recursive .` |
| `update [dir]` | Incremental sync (changed files only) | `ccg update .` |
| `status` | Show graph statistics (nodes/edges/files) | `ccg status` |
| `search <query>` | FTS keyword search (includes @annotations) | `ccg search "authentication"` |
| `search --path <prefix> <query>` | Scoped search by path prefix | `ccg search --path internal/auth "login"` |
| `languages` | List supported languages and extensions | `ccg languages`