Skip to main content

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

Project description

IntentGraph

PyPI version Python 3.12+ License: MIT

Static code analysis for Python, JavaScript, TypeScript, and Go — 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.3.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.3-py3-none-any.whl (86.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: intentgraph-0.5.3.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.3.tar.gz
Algorithm Hash digest
SHA256 fed20f9f39ddef04ee0d688998ed67724ec453021f23872a059a2a48167ac770
MD5 82c3bf41d518c99304cdc8b77a692bba
BLAKE2b-256 fe5bf50da4d981772e9515f8f93c7d836e1fd9cd08818ed0d7ee10fe1e10df9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for intentgraph-0.5.3.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.3-py3-none-any.whl.

File metadata

  • Download URL: intentgraph-0.5.3-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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 eab0065452bf7bc0d3a9417762b1d1c4d18440a777ca23dd23f082b20cb5c0fc
MD5 26bde309864b59e0a370bd7a61637c4c
BLAKE2b-256 1e4f1d306b65f68e1b9166cba6a453640d013fa13a399078bf220f32db25c2aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for intentgraph-0.5.3-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