tirth8205/code-review-graph
Summary
code-review-graph is a Python tool that builds a structural map of code using Tree-sitter, tracks incremental changes, and provides precise context to AI coding assistants via MCP, significantly reducing token usage during code review tasks.
View Cached Full Text
Cached at: 07/20/26, 09:44 AM
code-review-graph
Stop burning tokens. Start reviewing smarter.
English | Simplified Chinese | Japanese | Korean | Hindi
Usage · Commands · FAQ · Troubleshooting · GitHub Action · Reproducing the benchmarks · Roadmap
code-review-graph.com pip install code-review-graph && code-review-graph install Works with Codex, Claude Code, CodeBuddy Code, Cursor, Windsurf, Zed, Continue, OpenCode, Antigravity, Gemini CLI, Qwen, Qoder, Kiro, GitHub Copilot, and GitHub Copilot CLI
Similar Articles
@chenzeling4: Your AI coding assistant reads the entire codebase every single request. That's why it's slow and expensive. Code-revie…
code-review-graph is an open-source Python tool that builds a persistent structural map of your codebase, enabling AI coding assistants to fetch only relevant context instead of reading the entire repo on every request, drastically reducing token usage and cost.
colbymchenry/codegraph
CodeGraph is an open-source tool that creates a pre-indexed knowledge graph of a codebase, enabling Claude Code's exploration agents to query symbol relationships and call graphs instantly, reducing tool calls by up to 96% and exploration time by 77%.
@cathrynlavery: been starting to use codegraph in projects. It builds a local knowledge graph of every symbol, function, and connection…
Codegraph builds a local knowledge graph of every symbol, function, and connection in your code, allowing AI agents to look things up instantly instead of grep-searching, with reported cost and tool call reductions.
@austinit: Hey friends! Highly recommend CodeGraph: a tool that turns your entire codebase into a structured knowledge graph! It uses Tree-sitter to accurately parse AST, supports 20+ languages, and can be directly fed to AI agents like Claude/Cursor. Before modifying code, instantly see the impact scope, with incredibly accurate context. In practice, tokens are saved by 16% and tool calls reduced by 58%, all local and super secure. Start with one command: npx @colbymchenry/codegraph. A must-have for heavy AI coding! https://colbymchenry.github.io/codegraph/ Worth a try!
CodeGraph is a local-first tool that converts codebases into structured knowledge graphs. It uses Tree-sitter to precisely parse ASTs and supports over 20 languages. Through the MCP protocol, it directly feeds AI coding agents like Claude and Cursor, helping quickly analyze code impact scope while reducing token consumption and tool call frequency.
Graphify-Labs/graphify
Graphify maps an entire project (code, docs, PDFs, images, videos) into a knowledge graph that can be queried via an AI coding assistant, using tree-sitter AST for local code parsing.