Code knowledge graph for Claude Code. Build a relationship graph of your Python codebase and query it during coding sessions.
Project description
ctxgraph-code
Code knowledge graph for Claude Code. Build a relationship graph of your Python codebase so Claude Code understands imports, class hierarchies, function calls, and cross-file dependencies without reading every file.
pip install ctxgraph-code
cd my-project
ctxgraph-code setup
Then in Claude Code, type /ctxgraph-code and Claude will use the graph.
Why?
Claude Code already reads files, searches code, and understands syntax. But it can't see relationships between files without manual exploration:
- What does this file import?
- What depends on this function?
- Where is this class defined?
- What calls this API endpoint?
These questions require running multiple grep commands or reading dependency chains file by file. ctxgraph-code pre-computes all of this via static AST analysis and stores it in a queryable SQLite graph — so Claude can answer relationship questions in one command.
Quick Start
# Install
pip install ctxgraph-code
# Navigate to your Python project
cd my-project
# One-command setup: init + build + configure Claude Code
ctxgraph-code setup
# Open Claude Code and type:
# /ctxgraph-code
Commands
setup (recommended)
ctxgraph-code setup
Does everything in one step:
- Creates
.ctxgraph/config.tomlwith defaults - Builds the knowledge graph from all Python files
- Creates
.claude/commands/ctxgraph-code.mdwith instructions for Claude Code
init
ctxgraph-code init
Creates the .ctxgraph/ directory with a default config.toml.
build
ctxgraph-code build
ctxgraph-code build --exclude "tests/" --exclude "*.generated.py"
Scans all *.py files in the project, runs AST analysis:
- Imports: which files import other files
- Class definitions: class names, base classes, methods
- Function definitions: function names, arguments
- Function calls: which functions call which (within the project)
- Docstrings: extracted as node summaries
Stores the result in .ctxgraph/graph.db.
query
ctxgraph-code query "user authentication"
ctxgraph-code query "database connection" --max 20
Searches the graph by relevance scoring (name matches > summary matches > path matches) and expands to neighboring nodes via BFS up to depth 2.
deps
ctxgraph-code deps src/api/routes.py
Shows all relationships for a file: imports, imported-by, function calls, class definitions.
usedby
ctxgraph-code usedby src/utils/helpers.py
Shows every file that imports or calls something in the given file. Useful to understand ripple effects before making changes.
overview
ctxgraph-code overview
Prints the project structure: every file with its summary and top-level symbols.
symbols
ctxgraph-code symbols src/main.py
Lists all classes and functions defined in a file, with line numbers and docstring summaries.
context
ctxgraph-code context "add pagination to the users endpoint"
Generates a focused context summary: relevant files, their symbols, and dependency/call edges between them. This is the closest equivalent to ctxgraph's capsule format.
info
ctxgraph-code info
Shows graph statistics: node/edge counts, type distribution, build time.
How It Works
Python files ──AST──> Import/Symbol/Call analysis ──> SQLite graph.db
│
Claude Code ──/ctxgraph-code──> CLI query/deps/overview <────┘
-
Build phase:
ctxgraph-code buildparses every.pyfile with Python'sastmodule. It extracts imports, class/function definitions, function calls, and docstrings. The result is a graph of nodes (files, classes, functions) and edges (imports, defines, extends, calls) stored in SQLite. -
Query phase: In Claude Code, the
/ctxgraph-codeslash command injects instructions into the conversation. Claude then runsctxgraph-codecommands as shell commands to query the graph. Claude reads the text output and reasons about it alongside its own file-reading capabilities.
What's in the graph
| Node type | Example ID | Stored |
|---|---|---|
file |
file:src/api/routes.py |
Name, path, size, summary |
class |
class:src/api/routes.py::UserAPI |
Name, path, parent file, docstring, line number |
function |
func:src/models.py::get_user |
Name, path, parent, docstring, line number |
| Edge relation | Meaning |
|---|---|
imports |
File A imports file B (or a symbol from it) |
defines |
A file/class defines a class/function |
extends |
Class A extends class B |
calls |
Function A calls function B |
Edge weights: imports=1.0, defines=1.0, extends=0.8, calls=0.7
Query relevance scoring
- Tokenize query (lowercase, split on word boundaries, remove stopwords)
- For each matching node: name match → +2.0 per token, text match → +0.5 per occurrence
- Multiply by
0.5 + importance(files=0.5, classes=0.6, functions=0.5) - BFS expansion: neighbor nodes get
0.1 × number_of_matched_neighbors - Return top-N results sorted by score
Using with Claude Code
After ctxgraph-code setup, Claude Code in the project directory will have the /ctxgraph-code slash command available.
When you type /ctxgraph-code, Claude sees:
# ctxgraph-code: Code Relationship Graph
This project has a knowledge graph at `.ctxgraph/graph.db`.
The graph knows about imports, class hierarchies, and function calls.
Available commands:
- ctxgraph-code query "search terms" -- Find relevant files, classes, and functions
- ctxgraph-code deps <path> -- Show what a file imports and what calls it
- ctxgraph-code usedby <path> -- Show what depends on a file
- ctxgraph-code overview -- Show the full project structure
- ctxgraph-code symbols <path> -- List classes/functions defined in a file
- ctxgraph-code context "task" -- Generate a focused context summary
Claude then uses these commands as needed during the conversation.
Example workflow
You: "Add rate limiting to the user API endpoints"
Claude does:
ctxgraph-code query "user api endpoint rate limit"→ finds relevant filesctxgraph-code deps src/api/users.py→ sees what it imports and what calls it- Reads actual source via built-in
readtool - Writes the rate-limiting code, knowing the full dependency context
Configuration
Configure via .ctxgraph/config.toml (created by init or setup):
[graph]
# Additional exclude patterns beyond defaults
exclude = ["tests/", "examples/"]
# Follow symlinks when scanning
follow_symlinks = false
# Skip files larger than this (MB)
max_file_size_mb = 5
Default exclusion patterns: __pycache__, *.pyc, .git, node_modules, venv, .venv, dist, build, *.egg-info, .pytest_cache, .mypy_cache, .ruff_cache, .tox, migrations, *.min.js, *.min.css.
Differences from ctxgraph
ctxgraph-code is a focused subset of ctxgraph designed specifically for Claude Code.
| Feature | ctxgraph | ctxgraph-code |
|---|---|---|
| CLI commands | 9 (build, capsule, query, view, serve, info, init, ask, chat, history, skill) | 8 (init, build, query, deps, usedby, overview, symbols, context, setup, info) |
| LLM integration | Built-in (Ollama, Claude, OpenAI, Azure) | None (delegates to Claude Code) |
| Chat sessions | Yes | No |
| Visualizer | D3.js HTML + SVG | No |
| Skills system | Yes (customizable skill TOML files) | No |
| MCP server | Yes | No |
| Token savings | Yes (capsule DSL compression) | No |
| Dependency | mcp optional, anyio optional |
typer, rich only |
| Claude integration | MCP protocol (Claude Desktop) | Slash command (Claude Code) |
| Windows compatibility | Blocked by pywintypes.dll with mcp≥1.27.2 |
No issues |
Requirements
- Python 3.10+
- A Claude Code subscription (for the
/ctxgraph-codeslash command — the graph itself works standalone)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ctxgraph_code-0.1.0.tar.gz.
File metadata
- Download URL: ctxgraph_code-0.1.0.tar.gz
- Upload date:
- Size: 21.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
616708bf0273fe6b2d6955a8a509699470ea98e53930e80570d00233c9284e02
|
|
| MD5 |
8811a8ed1090690992ecb39158c4a8de
|
|
| BLAKE2b-256 |
44efe75338da42c10dc7144a5498a28eb8b3728a272df886065d218cd4afb338
|
File details
Details for the file ctxgraph_code-0.1.0-py3-none-any.whl.
File metadata
- Download URL: ctxgraph_code-0.1.0-py3-none-any.whl
- Upload date:
- Size: 22.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbc51d85bf06cdbb78486f6f99916253cff1490c4509f609caf7f691494abe24
|
|
| MD5 |
7962f3077a8bc506ec38f53a56661708
|
|
| BLAKE2b-256 |
f1d4751e41ece9b30b75958b168fd22dbd958ced31801c189242c0c21126e0aa
|