Skip to main content

Explain Codebase

PyPI version Python versions CI License: MIT

Static-analysis CLI for mapping repository architecture, dependencies, entry points, side effects, and change risk.

explain-codebase helps you find where execution starts, which files are central, how source files depend on one another, and where a change is likely to have the widest impact. It reads source files without importing or running the target project.

Quick start

Install from PyPI and inspect the current directory:

python -m pip install explain-codebase
explain-codebase .

For an isolated command-line installation, use pipx:

pipx install explain-codebase
explain-codebase .

The default view is intentionally compact:

Explain Codebase
--------------------------------

Repository

  Path        C:\Projects\checkout-service
  Type        Python backend service
  Language    python
  Files       7

Architecture

  Entrypoints        1
  Core modules       5
  Side effects       4

Suggested starting point

  api_server.py

Run with --verbose to see full architecture

What it shows

  • likely application entry points
  • central modules ranked by dependency usage
  • relative and package import relationships
  • probable execution paths
  • files that interact with databases, networks, filesystems, or caches
  • common architecture areas such as services, repositories, routes, and controllers
  • large files, highly connected files, circular dependencies, and risky change points
  • a suggested reading order for onboarding
  • focused dependency graphs and an HTML architecture report

The results are heuristic signals intended to shorten initial investigation. They are not a substitute for reading critical code paths or running the target project's own checks.

Installation

Requirements

  • Python 3.10 or newer
  • Git when inspecting a public GitHub repository
  • network access for remote repository checks and cloning

From PyPI

python -m pip install explain-codebase

Isolated CLI installation

pipx install explain-codebase

Local development

python -m pip install -e ".[dev]"

Usage

Common commands

Goal Command
Inspect the current directory explain-codebase .
Inspect another local directory explain-codebase path/to/repository
Show the detailed architecture view explain-codebase . --verbose
Focus on architecture risks explain-codebase . --deep
Write JSON to stdout explain-codebase . --json
Limit the number of scanned files explain-codebase . --max-files 500
Suggest a reading order explain-codebase onboarding .
Explain one file in repository context explain-codebase file src/services/orders.py
Write an interactive dependency graph explain-codebase . --graph
Write an HTML architecture report explain-codebase . --report
Return a failing status for detected architecture issues explain-codebase . --ci
Show the installed version explain-codebase --version

--verbose and --deep cannot be combined.

Graph views

--graph writes dependency_graph.html. --report writes codebase_report.html. Both files are written to the current working directory.

Flag View
--architecture Architecture-level relationships; this is the default graph view
--full Full file-level dependency graph
--entrypoint Paths starting from likely entry points
--risk Highly connected and risky files
--side-effects Files with probable external side effects

Choose at most one graph-view flag. A graph-view flag requires --graph or --report.

Examples:

explain-codebase . --graph --architecture
explain-codebase . --graph --entrypoint
explain-codebase . --report --risk
explain-codebase . --graph --full

Supported source formats

Language Extensions Primary signals
Python .py syntax tree, imports, definitions, calls, and side effects
JavaScript .js, .jsx, .mjs, .cjs static imports, CommonJS imports, calls, and side effects
TypeScript .ts, .tsx, .mts, .cts static imports, calls, and side effects

Import resolution accounts for relative paths, package entry files, and the supported extension variants where those relationships can be determined statically.

Scanning behavior

For a local directory, the scanner:

  • considers only the supported source extensions
  • keeps resolved file paths inside the selected repository
  • honors the optional file-count limit and a 1 MiB per-file size limit
  • skips common dependency, cache, build, coverage, and environment directories
  • respects the root .gitignore file
  • limits a Git worktree to tracked files when Git metadata can be read, then falls back to filesystem scanning if Git is unavailable
  • handles unreadable source files safely and skips unsupported or oversized files

Use --max-files to lower the file-count limit for a focused or faster scan.

Public GitHub repositories

Pass a public repository URL in the canonical form:

explain-codebase https://github.com/owner/repository

The CLI checks public repository metadata, asks for confirmation, performs a limited clone in a temporary directory, analyzes the clone, and removes the temporary directory afterward. Private repositories, other hosting providers, and arbitrary Git URLs are not supported.

Remote inspection requires an interactive terminal, Git, and network access. Clone timeouts can stop remote preparation, and oversized source files are skipped during analysis.

Output and automation

Standard output and error output

Human-readable output and JSON are written to stdout. Progress stages, warnings, and errors are written to stderr. This keeps JSON suitable for redirection:

explain-codebase . --json > architecture.json

CI mode

explain-codebase . --ci

CI mode exits with status 0 when no architecture issues are found and status 1 when an issue is detected. Current issue checks include circular dependencies and utility-style god modules. Thresholds are built into the CLI.

JSON

JSON output includes repository information, entry points, central modules, side-effect files, architecture areas, large files, hotspots, risky files, architecture issues, execution paths, and paths to optional HTML outputs.

How it works

At a high level, explain-codebase:

  1. resolves and validates the target
  2. selects supported source files within safety boundaries
  3. parses static imports and source-level signals
  4. resolves imports and builds a dependency graph
  5. ranks central modules and identifies entry points, side effects, hotspots, and architecture issues
  6. renders the selected CLI, JSON, graph, or report output

The target project's source code is not imported or executed during analysis.

Limitations

  • Dynamic imports, reflection, runtime dependency injection, and framework-specific wiring may not be visible.
  • Custom path aliases and build-tool transformations may reduce import-resolution accuracy.
  • Syntax that is valid only after a separate transform step may be skipped.
  • Minified, vendored, mirrored, or highly repetitive code can reduce signal quality.
  • Large monorepos should use --max-files or analyze a narrower directory.
  • Remote analysis supports only public GitHub repositories.
  • A shallow remote clone can still transfer large files because total repository download size is not capped.
  • Interactive HTML views load a version-pinned, integrity-checked graph library from a public CDN and need network access when opened.

Development

Install the development tools and run the checks:

python -m pip install -e ".[dev]"
ruff check .
pytest
python -m build
python -m twine check --strict dist/*

Project information

License

Licensed under the MIT License.

Download files

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

Source Distribution

explain_codebase-0.2.0.tar.gz (58.0 kB view details)

Uploaded Source

Built Distribution

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

explain_codebase-0.2.0-py3-none-any.whl (59.3 kB view details)

Uploaded Python 3

File details

Details for the file explain_codebase-0.2.0.tar.gz.

File metadata

  • Download URL: explain_codebase-0.2.0.tar.gz
  • Upload date:
  • Size: 58.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for explain_codebase-0.2.0.tar.gz
Algorithm Hash digest
SHA256 5252ce14d7fde302cba6712630eef4fe15a82a843045b31fa625deb6381c8cbe
MD5 f032d1e60db68309b0367877188d0031
BLAKE2b-256 ae506e353b1f56540f50fd7833ba283f336d78ab7edf28c693a6c5ddc9371996

See more details on using hashes here.

Provenance

The following attestation bundles were made for explain_codebase-0.2.0.tar.gz:

Publisher: release.yml on danyasync/explain-codebase

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

File details

Details for the file explain_codebase-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for explain_codebase-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 967a6e9bfbbd3b6b6f29ec1df395b850957637e03fc9220a2257a8590cd8f994
MD5 56d1c4044c82cba232cdb96030958fdf
BLAKE2b-256 57f3605b7257ee933525bb589c9fa21504ffff7930487d92999166e6cbcb831b

See more details on using hashes here.

Provenance

The following attestation bundles were made for explain_codebase-0.2.0-py3-none-any.whl:

Publisher: release.yml on danyasync/explain-codebase

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

Release history Release notifications | RSS feed

0.2.2

2 files

0.2.1

2 files

This release

0.2.0 This release

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

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