You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A CLI tool that parses your source code and builds an interactive graph of relations between files, functions, and classes. Helps humans and AI agents understand code structure — what calls what, what imports what, and where things live.
Focus mode — click a node to dim everything except its neighbors; double-click to restore
Click any node to see its file path, line range, and type
Language support
Language
Status
TypeScript / JavaScript
✅ Working
Python
⏳ Grammar installed, adapter not yet written
Go
⏳ Grammar installed, adapter not yet written
Example
# Parse a project
codegraph parse ~/projects/my-app --languages ts --include "src/**"# Open the visual graph
codegraph html ~/projects/my-app
open graph.html
# Feed the JSON to an AI agent
codegraph export~/projects/my-app | pbcopy