Skip to main content

A static analysis tool for identifying dead code in a codebase. It provides Python API and CLI for use by agents.

Project description

graphlint

PyPI Python License

en zh

Dead code detection for AI-generated Python codebases.

AI agents generate code rapidly, leaving behind dead and redundant code that pollutes the LLM's context window and dilutes attention. Graphlint analyzes your Python codebase's dependency graph to identify entry points and detect dead code — components unreachable from any entry point — so agents can self-clean and keep the codebase lean.

Features

  • Dead code detection — finds components unreachable from any entry point via graph traversal
  • AST parsing — extracts classes, functions, methods, variables, and fields
  • Dependency graph — builds directed edges: read, write, call, inherit, decorate
  • Entry point detection — 10 built-in rules (main, FastAPI, Flask, Django, Click, Typer, Celery, pytest, plus package and test entries) and custom rules
  • Warning detection — 11 warning types including circular references, unused imports, write-only variables, and more
  • Incremental indexing — SHA256-based change detection parses only modified files, with mtime-based fast-path stamp for zero-cost no-op rebuilds
  • Python API + CLI — integrate into any Tool, CI pipeline, or let agents self-analyze and self-clean
  • Zero runtime dependencies — only requires the Python standard library

Installation

pip install graphlint

Requirements: Python >= 3.9

Quick Start

Agent Integration

Graphlint provides a command to inject its usage prompt into your AI coding tools at the global level, so every project automatically has graphlint's guidance:

# Install graphlint prompt into agent tools (opencode, cursor, codex, cc)
graphlint install

# Remove graphlint prompt from agent tools
graphlint uninstall

Run graphlint install and select the tools you use — the prompt (usage scenarios, essential commands, and parameters) will be added to their global configuration. For details, see Agent Integration.

CLI

# Find dead code in current directory
graphlint query --warn-types "dead_code"

# Full analysis with JSON output
graphlint query --json

# View a specific graph detail
graphlint query -g 1 --detail full

# Rebuild index
graphlint build --force

# Configure
graphlint config show
graphlint config set --key lang --value en

Python API

from graphlint.api import query

# Find dead code components
result = query(warn_types="dead_code", json_output=True)

# Full dependency graph analysis
result = query(include_tests=True, json_output=True)

Warning Types

Warning Description
unused_import Imported module or name is never used
dynamic_import Dynamic import via importlib or __import__
circular_ref Circular dependency between functions/classes
syntax_error File contains a syntax error
write_only Variable is written but never read
deprecated_usage Usage of a deprecated function/class
dead_code Component unreachable from any entry point
type_mismatch Suspicious type annotations
unresolved_ref Reference to an undefined name
unused_variable Variable is defined but never used
file_too_large File exceeds the configured size limit

Development

# Clone the repository
git clone https://github.com/AngelosZou/graphlint.git
cd graphlint

# Create a virtual environment
python -m venv env
env/Scripts/activate  # Windows
source env/bin/activate  # Unix

# Install dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Run with coverage
pytest --cov=graphlint

# Run type checking
mypy graphlint/

# Run linting
ruff check graphlint/ tests/

Configuration

Graphlint stores its configuration in .graphlint/config.json within the analyzed directory. Use graphlint config commands to manage settings, or edit the file directly.

See graphlint config show for the full default configuration.

Documentation

Full documentation is available in the docs/ directory:

Limitations

  • Static analysis only — currently, graphlint performs static analysis and cannot detect runtime linkage such as getattr, importlib.import_module(), or other dynamic dispatch patterns, which may result in false positives.
  • Large codebase build time — on a large codebase with 700+ .py files, 1,000+ classes, and 14,000+ functions, a full rebuild takes approximately 200 seconds (actual performance depends on hardware). This is not a concern for small projects — a codebase with 60 Python files completes in about 1 second.

License

MIT — see LICENSE for details.

Links

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

graphlint-0.1.4.tar.gz (140.9 kB view details)

Uploaded Source

Built Distribution

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

graphlint-0.1.4-py3-none-any.whl (74.9 kB view details)

Uploaded Python 3

File details

Details for the file graphlint-0.1.4.tar.gz.

File metadata

  • Download URL: graphlint-0.1.4.tar.gz
  • Upload date:
  • Size: 140.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.14

File hashes

Hashes for graphlint-0.1.4.tar.gz
Algorithm Hash digest
SHA256 ddcb79ba48689d96eeafb5801719410d679678fa9d56adca5c713913e12a8215
MD5 d5b4c978c539f1bf25d541149d849c55
BLAKE2b-256 e23dd9ae443e87ec9945828482502482f25075b671adff7e5833b805b2d42563

See more details on using hashes here.

File details

Details for the file graphlint-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: graphlint-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 74.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.14

File hashes

Hashes for graphlint-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 23821ae5eae498ae71ad958d7f75abe4027fe975373b3671bca1ae0110a695ee
MD5 b187c5475244999bd4d6562cc45c611c
BLAKE2b-256 3e8413256a008a4bb3a81667b0aef9917fdcb45dac5bda02f8d73a4e56710f0f

See more details on using hashes here.

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