Skip to main content

PyCodeKG

Python License: Elastic-2.0 Version CI Poetry DOI

PyCodeKG — A Knowledge Graph for Python Codebases

PyCodeKG turns a Python codebase into a deterministic, queryable knowledge graph — and uses it to produce architectural analyses you can act on, with or without an LLM in the loop.

It walks the AST of every module, class, function, and method in your repo, extracts the typed relationships that actually hold the code together (CONTAINS, CALLS, IMPORTS, INHERITS, RESOLVES_TO), and stores the result in SQLite. A sqlite-vec vector index sits alongside the graph so that "authentication flow" and "verify_jwt" both find the right place to start exploring. From there you can rank functions by structural importance, trace fan-in across import aliases, detect circular imports and dead code, render the call graph in 3D, grow the repo as a tree you can put on a holographic display, snapshot metrics for diffing across releases, or hand the whole thing to Claude over MCP.

The original motivation was simple: produce thorough, defensible analyses of Python codebases that don't depend on inference. Every result is computed from the AST and the graph — no model is asked to guess. When an LLM is present, it consumes the same grounded output as a structured context pack, and the hallucinations that plague "embed-the-repo" tools largely disappear.

Everything runs on your laptop. No cloud APIs, no quotas, no source code leaving the machine.

Technical Paper (PDF) · Author: Eric G. Suchanek, PhD — Flux-Frontiers, Liberty TWP, OH


Sister projects

PyCodeKG is one of ten knowledge graphs sharing the same hybrid semantic-plus-structural design — code, prose, journals, filesystems, agent memory, metabolic pathways — federated by KGRAG so a single query can span all of them. The full list is in docs/SISTER_PROJECTS.md.


Two ways to use it

PyCodeKG is designed to be useful at both ends — as a standalone command-line analysis tool, and as a structured context layer for AI agents.

1. Standalone — pycodekg analyze

This single command is the actual reason I wrote this module. I got tired of my LLM doing grep on my src/ in order to get a good analysis of the codebase. This command runs fifteen analysis passes in seconds and the output drops straight into your favorite coding LLM for targeted improvement suggestions. I used this process to iteratively improve PyCodeKG and several of the analysis passes were added as a result.

The analysis/ has files *analysis.md - I ran PyCodeKG against numpy and matplotlib for fun.

pycodekg init                                        # downloads embedder
pycodekg build --repo .                              # one-time index
pycodekg analyze.                                    # the full report

Note The first-time run can take some time to warm up. Be patient.

The 15-phase pipeline runs in sequence and surfaces several important metrics:

# Phase What it surfaces
1 Baseline metrics Node/edge counts, graph shape
2 CodeRank (global PageRank) Structurally most important symbols
3 Fan-in analysis Heavily depended-on functions (breaking-change risk)
4 Fan-out analysis Orchestrators and complexity hotspots
5 Dependency analysis Orphaned / dead code candidates
6 Pattern detection Anti-patterns and structural red flags
7 Module coupling Tightly coupled pairs, import graph density
8 Critical paths Longest call chains, bottlenecks
9 Public API identification Exposed vs. internal surface
10 Docstring coverage By module, class, function, method
11 Inheritance hierarchy Depth, multiple inheritance, diamond patterns
12 Insight synthesis Issues + strengths callouts
13 Snapshot history Metric trends across releases
14 Structural centrality (SIR) Bridge nodes, graph removal impact
15 Concern-based ranking Nodes grouped by architectural concern

Every finding maps to a file and line number — no hallucinated signatures, no probabilistic guesses. The Markdown output is LLM-ready; the JSON snapshot is CI-gate-ready. Reach for analyze before any non-trivial refactor, at every release, and whenever you inherit an unfamiliar codebase. Full reference: docs/Analyze.md.

pycodekg analyze --quiet --json ~/.claude/pycodekg_analysis_latest.json
jq '.docstring_coverage.total' ~/.claude/pycodekg_analysis_latest.json

2. Agentic — MCP server for grounded AI workflows

Run pycodekg mcp and Claude (or any MCP-aware client) gets nineteen tools backed by the same graph: graph_stats, query_codebase, pack_snippets, get_node, list_nodes, callers, explain, centrality, bridge_centrality, framework_nodes, analyze_repo, snapshot_list / show / diff, and more. Setup for Claude Code, Claude Desktop, Kilo Code, Copilot, and Cline is a single line — see docs/MCP.md and docs/INSTALLATION.md.

The agent benefit isn't subtle. Tools like pack_snippets return actual source with line numbers and surrounding context; callers returns the real fan-in resolved across import aliases, not a regex's best guess. The agent stops fabricating function signatures and starts citing them. Multi-step workflows — "find the auth path, list its callers, summarize what changes if I rename it" — collapse from dozens of greps and file reads into a handful of source-grounded calls.

Independent assessments tend to put it the same way:

"PyCodeKG compresses a multi-step workflow — semantic search, graph expansion, caller tracing, snippet retrieval, and architectural summarization — into a small set of tools that are fast to invoke and easy to chain. In practice, it let me move from broad orientation to intent-driven discovery and then to structural validation without dropping down into manual grep or repeated file reads." — GPT-5 (via Cline)

"What sets it apart from 'search the repo with embeddings' tools is the structural layer… Verdict: 4.5/5 — recommend without reservation for any non-trivial Python codebase." — Claude Opus 4.7

"PyCodeKG is dramatically more effective than traditional grep/file-reading workflows. Unique value: hybrid search combining natural-language intent with precise structural relationships." — Claude Haiku 4.5

Full reports in assessments/.


Get started in 60 seconds

Requirements: Python ≥ 3.12, < 3.14

pip install 'pycode-kg[viz,viz3d]'        # base + Streamlit + 3-D viewer

cd /path/to/your/repo
pycodekg init --repo .                    # download model, build graph, install hooks, snapshot
pycodekg analyze .                        # the architectural report

That's the recommended path. Variants (minimal install, MCP-only, contributor setup) are in docs/INSTALLATION.md. Every capability is a subcommand of the single pycodekg entry point — pycodekg analyze, pycodekg build, pycodekg mcp — so that one name is all a Makefile or an MCP config needs.


How retrieval works

Search is hybrid by design. A query like "authentication flow" runs in two phases:

  1. Vector phase — the query is embedded with a local sentence-transformer (cached after first download) and sqlite-vec returns the k closest functions, classes, and modules by exact cosine similarity.
  2. Graph expansion phase — each seed hit is expanded hop BFS steps along the typed edges (CONTAINS, CALLS, IMPORTS, INHERITS, RESOLVES_TO) so call chains and module relationships surface alongside the names that matched.

Structure is treated as ground truth; the embeddings are strictly an acceleration layer. When the graph and the vector index disagree, the graph wins. This is why fan-in lookups are accurate even for same-named symbols across modules — RESOLVES_TO edges bridge call sites through their import aliases, and callers() does a two-phase reverse traversal that grep simply cannot replicate.

The graph is built around four node kinds (module, class, function, method) and five edge relations. Schema and edge semantics are documented in docs/CHEATSHEET.md.


The repo as a tree

pycodekg viz3d --layout organic grows the graph instead of plotting it. A skeleton is grown toward the code by space colonization, so the shape is the data rather than decoration:

  • The trunk is the repository; its radius follows the pipe model, so it reports how much code the tree carries.
  • Each limb is a module. Its length is how many definitions the module holds — the biggest module reaches furthest — and its thickness follows from the tips it carries.
  • Each leaf is a class, function, or method, tinted by kind.

pycodekg quilt renders that tree for a Looking Glass light-field display: a multi-view quilt the panel fuses into real depth, with --cast to send it straight to the device. Every render prints its disparity budget first, so you know whether the display will fuse the views or ghost them. Details in docs/VIZ3D.md.

The growth engine is shared across the KG fleet (kgmodule-utils) and the light-field output is quiltwright; what lives here is only the mapping from code to wood.


What you can do with it

If you want to… Reach for Detail
Get a thorough architectural report pycodekg analyze docs/Analyze.md
Generate a coherent architecture description pycodekg architecture docs/Architecture_usage.md
Track metrics across releases pycodekg snapshot save / list / diff docs/SNAPSHOTS.md
Identify the most structurally important code pycodekg centrality (SIR PageRank) docs/CODERANK.md
Pull source-grounded context for an LLM pycodekg pack "..." --format md docs/CHEATSHEET.md
Run a hybrid semantic + structural query pycodekg query "..." docs/CHEATSHEET.md
Browse the graph interactively pycodekg viz (Streamlit) docs/INSTALLATION.md
Share a graph as one file pycodekg viz-export -o graph.html opens from file://, no server
See call graphs in 3-D (active development — functional but rough) pycodekg viz3d --layout funnel docs/VIZ3D.md
Grow the repo as a tree pycodekg viz3d --layout organic modules are limbs, definitions are leaves
Render it for a Looking Glass display pycodekg quilt --spec 16-landscape docs/VIZ3D.md
Wire it into Claude / Copilot / Cline pycodekg mcp docs/MCP.md

If you only read one doc after this one, read docs/Analyze.md — that's where most of the day-to-day value lives.


Architecture

src/pycode_kg/
├── visitor.py                       # AST extraction (three-pass: structure, calls, dataflow)
├── graph.py                         # GraphBuilder: file discovery + dispatch
├── store.py                         # SQLite persistence + canonical edges
├── index.py                         # sqlite-vec semantic index
├── pycodekg.py                      # Public façade
├── pycodekg_thorough_analysis.py    # `analyze` engine
├── architecture.py                  # `architecture` description generator
├── ranking/                         # PageRank, bridge centrality, framework nodes
├── snapshots.py                     # Temporal metric snapshots
├── analysis/                        # Coupling, cycles, orphans, hotspots
├── cli/                             # `pycodekg` subcommands
├── mcp_server.py                    # MCP server (nineteen tools)
├── app.py                           # Streamlit web app
├── viz3d.py / layout3d.py           # PyVista/PyQt5 3-D viewer
├── scene3d.py                       # Organic tree: repo → trunk, module → limb
└── viz3d_timeline.py                # Metric history timeline

The MCP server, the CLI, and the Streamlit app are thin wrappers over the same store + index + ranking core — there is exactly one code path for each capability. The latest architectural deep-dive is in docs/analysis_v0.24.0.md, produced (of course) by pycodekg analyze against this very repo.


Documentation map

Doc What it covers
docs/INSTALLATION.md All install variants, MCP setup, contributor setup, troubleshooting
docs/Analyze.md The analyze command — every metric, every flag, interpretation guide
docs/Architecture_usage.md Generating coherent architecture descriptions
docs/SNAPSHOTS.md Temporal metric snapshots, diffing across releases
docs/CODERANK.md SIR PageRank, bridge centrality, framework hubs
docs/MCP.md MCP server setup for Claude / Kilo / Copilot / Cline, tool reference
docs/CHEATSHEET.md Every CLI flag and every MCP tool — one page
docs/VIZ3D.md The 3-D viewer, the organic tree, and Looking Glass output
docs/SISTER_PROJECTS.md The other KGRAG graphs and the shared foundations
CHANGELOG.md Release history

Citation

If you use PyCodeKG in your research or project, please cite it:

DOI

Suchanek, E. G. (2026). PyCodeKG: A Knowledge Graph for Python Codebases (Version 0.24.0) [Software]. Flux-Frontiers. https://doi.org/10.5281/zenodo.19737993

@software{suchanek_pycode_kg,
  author    = {Suchanek, Eric G.},
  title     = {{PyCodeKG}: A Knowledge Graph for Python Codebases},
  version   = {0.24.0},
  year      = {2026},
  publisher = {Flux-Frontiers},
  url       = {https://github.com/Flux-Frontiers/pycode_kg},
  doi       = {10.5281/zenodo.19737993},
}

License

Elastic License 2.0 — free for non-commercial and internal use; commercial redistribution or hosting requires a license from Flux-Frontiers.


Support & acknowledgments

  • IssuesGitHub Issues
  • Sister projects — the rest of the KGRAG family
  • sqlite-vec, sentence-transformers, PyVista, Streamlit, and FastMCP for the foundations

Built for Python developers and AI agents that work alongside them — egs · Last updated August 2026

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycode_kg-0.24.0.tar.gz (184.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pycode_kg-0.24.0-py3-none-any.whl (204.5 kB view details)

Uploaded Python 3

File details

Details for the file pycode_kg-0.24.0.tar.gz.

File metadata

  • Download URL: pycode_kg-0.24.0.tar.gz
  • Upload date:
  • Size: 184.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.12.13 Darwin/27.0.0

File hashes

Hashes for pycode_kg-0.24.0.tar.gz
Algorithm Hash digest
SHA256 b198d45f321d6db30b6bd7920196b6193b34b19d731cb36c000b615a89b62738
MD5 d07ebd73359b18a2d0220aa6b0b61521
BLAKE2b-256 9a2bbf4e41e2a778537047f78ad94b1fabae3be719fa74f5ca589f4071952021

See more details on using hashes here.

File details

Details for the file pycode_kg-0.24.0-py3-none-any.whl.

File metadata

  • Download URL: pycode_kg-0.24.0-py3-none-any.whl
  • Upload date:
  • Size: 204.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.2 CPython/3.12.13 Darwin/27.0.0

File hashes

Hashes for pycode_kg-0.24.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d67b7e4de52d81655a2ea7b8df131e4ac653ab093835cbfdb288cb7ba93f974b
MD5 a03bfbaa3e8317fc6959342fea6fcae0
BLAKE2b-256 0e7bc880b6e9146b14a85645e949471e93158f59c08e325e93633add8babcc16

See more details on using hashes here.

Release history Release notifications | RSS feed

0.25.1

2 files

0.25.0

2 files

0.24.1

2 files

This release

0.24.0 This release

2 files

0.23.1

2 files

0.23.0

2 files

0.22.0

2 files

0.21.4

2 files

0.21.2

2 files

0.21.1

2 files

0.21.0

2 files

0.20.0

2 files

0.19.3

2 files

0.19.2

2 files

0.19.1

2 files

0.19.0

2 files

0.18.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page