Skip to main content

Static code analysis CLI tool optimized for AI agent context windows - Python analysis with intelligent clustering and AI-friendly output

Project description

IntentGraph

PyPI version Python 3.12+ License: MIT

Static code analysis for Python, JavaScript, and TypeScript — with a machine-queryable cache layer designed for AI agents.

pip install intentgraph

What it does

IntentGraph analyses a repository's AST, dependency graph, and code metrics and writes the result to a local cache. You can then query that cache without re-running analysis:

# One-time analysis pass
intentgraph cache warm --repo .

# Query without re-analysing
intentgraph query context src/app/models.py
intentgraph query deps src/app/cli.py
intentgraph query path src/app/cli.py src/app/models.py

Everything outputs JSON to stdout, exits 0 on success, exits 1 with {"error": "..."} to stderr on failure. No side effects, no network calls.


CLI reference

intentgraph — analysis

intentgraph [OPTIONS] REPO_PATH

Options:
  --level [minimal|medium|full]          Detail level (default: minimal)
  --lang TEXT                            Languages: py,js,ts,go
  --output FILE                          Write to file instead of stdout
  --include-tests                        Include test files
  --show-cycles                          Print dependency cycles, exit 2
  --cluster                              Cluster large repos into chunks
  --cluster-mode [analysis|refactoring|navigation]
  --workers INTEGER                      Parallel workers (default: cpu count)

Output levels:

Level Size Contents
minimal ~10 KB paths, deps, imports, basic metrics
medium ~70 KB + key symbols, exports, maintainability scores
full ~340 KB everything, including all signatures and docstrings

For repos that exceed token limits even at minimal, --cluster splits output into ~15 KB chunks with an index.json navigation map.

intentgraph cache — cache management

intentgraph cache warm   --repo PATH   # analyse and cache (idempotent)
intentgraph cache status --repo PATH   # {exists, stale, file_count, cache_path}
intentgraph cache clear  --repo PATH   # delete cache

Cache is stored at <repo>/.intentgraph/cache.json. Staleness is detected by comparing SHA-256 digests of tracked files.

intentgraph query — structured queries

All commands accept --repo PATH (default: .).

# Symbols defined in a file
intentgraph query symbols   src/app/models.py

# Full context: language, loc, sha256, symbols, exports, deps, dependents
intentgraph query context   src/app/models.py

# Direct dependencies
intentgraph query deps      src/app/cli.py

# Reverse dependencies (who imports this file)
intentgraph query dependents src/app/models.py

# Shortest dependency path between two files (BFS)
intentgraph query path      src/app/cli.py src/app/models.py

# Call sites for a named symbol
intentgraph query callers   RepositoryAnalyzer

# Filter files by name pattern, language, symbol, complexity
intentgraph query search --name-matches ".*parser.*"
intentgraph query search --has-symbol CacheManager
intentgraph query search --lang python --complexity-gt 10

AI agent pattern

Warm once, query many times — no re-analysis overhead:

# In your agent's setup step
intentgraph cache warm --repo /path/to/repo

# Per-query (fast — reads from cache)
intentgraph query context src/app/models.py | jq .
intentgraph query deps src/app/cli.py | jq .deps[].file
intentgraph query search --complexity-gt 15 | jq .results[].file

Because every output is stable JSON, an AI agent can pipe results directly into its context window at the level of detail it needs, without loading the entire codebase.


Programmatic API

from pathlib import Path
from intentgraph import RepositoryAnalyzer
from intentgraph.cache import CacheManager
from intentgraph.query_engine import QueryEngine

# Analysis
analyzer = RepositoryAnalyzer()
result = analyzer.analyze(Path("/path/to/repo"))

# Or use the cache layer
cm = CacheManager(Path("/path/to/repo"))
result = cm.load_or_analyze()  # uses cache if fresh, re-analyses if stale

# Query
engine = QueryEngine(result)
print(engine.context("src/app/models.py"))
print(engine.deps("src/app/cli.py"))
print(engine.search(name_pattern=r".*parser.*", lang="python"))

RepoSnapshot v1 — deterministic snapshots

from intentgraph.snapshot import RepoSnapshotBuilder

builder = RepoSnapshotBuilder(Path.cwd())
snapshot = builder.build()

# SHA256-based stable UUIDs — same path always produces same UUID
print(snapshot.structure.files[0].uuid)

# Runtime detection (static, no code execution)
print(snapshot.runtime.package_manager)   # pip, pnpm, poetry, ...
print(snapshot.runtime.python_version)
print(snapshot.runtime.tooling)           # pytest, ruff, mypy, ...

json_output = builder.build_json(indent=2)

Snapshot UUIDs are SHA256-derived — deterministic across machines and operating systems. Suitable for version-controlling snapshots or diffing them in CI.


Language support

Language Analysis depth
Python Full AST — symbols, complexity, maintainability, exports, function-level deps
JavaScript Full AST — ES6+, classes, CommonJS/ESM, complexity
TypeScript Full AST — interfaces, generics, decorators, type imports
Go File-level dependencies

The ai/ module provides a natural-language query interface and agent context management. Query parsing and intent detection work; deep semantic execution is still evolving — use the structured query CLI for reliable agent integration.


Development

git clone https://github.com/Raytracer76/IntentGraph.git
cd IntentGraph
pip install -e ".[dev]"
pytest                                # run all tests
ruff format . && ruff check --fix .   # format + lint
mypy .                                # type check

Coverage threshold: 90%. Strict mypy is enforced.


License

MIT — see LICENSE.

Project details


Download files

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

Source Distribution

intentgraph-0.5.2.tar.gz (101.3 kB view details)

Uploaded Source

Built Distribution

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

intentgraph-0.5.2-py3-none-any.whl (86.7 kB view details)

Uploaded Python 3

File details

Details for the file intentgraph-0.5.2.tar.gz.

File metadata

  • Download URL: intentgraph-0.5.2.tar.gz
  • Upload date:
  • Size: 101.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for intentgraph-0.5.2.tar.gz
Algorithm Hash digest
SHA256 7d442efcf07d04478b82711b9f977e692c5a233ade4dbfbb628e3726b141928f
MD5 f5fb047070742684f7cba12914ae0781
BLAKE2b-256 f9f3108e026f8a45a700709ff38240ca169fd0b2b9770a9d0759ec08f26e7468

See more details on using hashes here.

Provenance

The following attestation bundles were made for intentgraph-0.5.2.tar.gz:

Publisher: publish.yml on Raytracer76/IntentGraph

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file intentgraph-0.5.2-py3-none-any.whl.

File metadata

  • Download URL: intentgraph-0.5.2-py3-none-any.whl
  • Upload date:
  • Size: 86.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for intentgraph-0.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 21a461721d46dcf2df9dede6d583ff9439fe4f261b08d8e6c8c76455e9828164
MD5 4e3eb32cdec78e95e1ddb7d7c905e2af
BLAKE2b-256 395829a9f8ff418e0c02d473b8519dd250d8e6c2a0412d14230e96ad2b379897

See more details on using hashes here.

Provenance

The following attestation bundles were made for intentgraph-0.5.2-py3-none-any.whl:

Publisher: publish.yml on Raytracer76/IntentGraph

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page