Skip to main content

distillrepo

distillrepo packages Python repositories into static-analysis-aware review bundles for LLMs and a structured Intermediate Representation (IR) for agents.

Common outputs:

  • distilled.<package>.<MMMDDYYYY>.py: a single-file bundle for LLM review
  • <package_root>/.distillrepo/: a structured Intermediate Representation (IR) for agents and downstream tooling when IR output is enabled

Why use distillrepo

Large repos are awkward to review with an LLM if you only have two bad options:

  • paste raw source and waste context
  • paste a vague summary and lose important detail

distillrepo sits in the middle:

  • it can package the relevant source into one reviewable file
  • it adds static-analysis context such as imports, inferred roots, call graphs, hotspots, and symbols
  • compresses lower-priority areas into summaries or signatures
  • keeps a structured IR for retrieval, ranking, and follow-up analysis
  • it helps with LLM-assisted review when you do not have an agent-assisted IDE such as Cursor, Windsurf, or a local coding agent wired into the repo

Example Demo Outputs

These are real runs on open-source repositories. They show the kind of compression distillrepo can achieve, but they should be interpreted together with root coverage and review quality, not as standalone scoreboards.

Repo Shape Review mode Files Symbols Distilled size Saved Compression
openai-agents-python Agent SDK review 163 1701 100,082 79.2% 4.8x
networkx Large API library review 288 1973 62,074 93.8% 16.3x
networkx Large API library budgeted 288 1973 41,872 95.8% 24.1x
rich Medium utility library review 100 833 15,964 94.6% 18.5x

Please note that distillrepo uses heuristics for root inference, reachability, hotspot ranking, and unused-code detection. Those are useful review aids, but they are not ground truth.

openai-agents-python

Good demo for an agent-native audience: handoffs, tools, tracing, memory, model adapters, and runtime orchestration all live in one package.

  • 163 files, 1701 symbols, 163 modules
  • 482,255 estimated original tokens -> 100,082 distilled tokens
  • 79.2% saved, 4.8x compression
  • 96 modules reached from the inferred root set

Why it is useful: the LLM bundle keeps the core agent runtime and API surface reviewable in one file, while .distillrepo/ gives agents a reusable symbol and relationship map for follow-up inspection.

Output tree in .distillrepo:

>>  tree
.
├── chunks.json
├── entrypoints.json
├── hotspots.json
├── manifest.json
├── modules.json
├── relationships.json
├── repo_summary.md
├── symbols.json
└── unused_candidates.json

1 directory, 9 files

networkx

Good demo for large API-heavy libraries: many modules, broad public surface, and enough internal structure that selective compression matters.

review mode:

  • 288 files, 1973 symbols, 288 modules
  • 1,008,946 estimated original tokens -> 62,074 distilled tokens
  • 93.8% saved, 16.3x compression
  • 222 modules reached from the inferred root set

budgeted mode:

  • 1,008,946 estimated original tokens -> 41,872 distilled tokens
  • 95.8% saved, 24.1x compression

Why it is useful: review preserves more structural and code detail for general inspection; budgeted shows how much further the bundle can shrink when you mainly want a compact triage artifact.

rich

Good demo for a medium-sized, recognizable library with many modules and a clear internal architecture.

  • 100 files, 833 symbols, 100 modules
  • 295,361 estimated original tokens -> 15,964 distilled tokens
  • 94.6% saved, 18.5x compression
  • 66 modules reached from the inferred root set

Why it is useful: the repo is large enough to make manual copy-paste review awkward, but still small enough that the bundle and IR outputs are intuitive to inspect.

Installation

pip install distillrepo

For richer static analysis, install the optional analyzers too:

pip install "distillrepo[analysis]"

Quick Start

Run it with no arguments to analyze the current project, write a full review bundle into the current working directory, and skip IR output:

distillrepo

Analyze a package or project path explicitly:

distillrepo path/to/package

Explicit path-based runs default to review mode and write:

  • path/to/package/distilled.<package>.<MMMDDYYYY>.py
  • path/to/package/.distillrepo/

Skip IR output explicitly:

distillrepo path/to/package --no-ir

Show help:

distillrepo --help

Print the generated bundle to stdout as well:

distillrepo path/to/package --stdout

What it Produces

1. LLM Bundle

The single-file bundle is optimized for copy-paste review in an LLM. It is derived from static analysis and, depending on mode, can include:

  • repo summary and review guidance
  • inferred roots and top-level structure
  • hotspot and cycle summaries
  • selected full source
  • summarized modules
  • signature-only modules

Default output name:

distilled.<package>.<MMMDDYYYY>.py

2. IR Directory

The .distillrepo/ directory is the structured output for agents and tooling. It includes artifacts such as:

  • manifest.json
  • repo_summary.md
  • modules.json
  • symbols.json
  • relationships.json
  • entrypoints.json
  • chunks.json
  • hotspots.json
  • unused_candidates.json

Use the IR when you want deterministic machine-readable structure instead of one monolithic bundle.

How to Use the Outputs

For LLM review:

  • start with distilled.<package>.<date>.py
  • use distillrepo with no arguments when you want a static-analysis-aware source package for the current repo
  • use review mode first unless you have a specific need
  • if the bundle still feels too large, try architecture or budgeted
  • if you need nearly raw source, use concat or plain_concat

For agents or scripts:

  • read .distillrepo/manifest.json first
  • use modules.json, symbols.json, and relationships.json to find relevant code
  • use chunks.json and hotspots.json to prioritize what to inspect

For manual follow-up:

  • use the bundle and IR as navigation aids, then verify important conclusions against the original source

Review Modes

Recommended order:

  • review Best default. Balanced mix of analysis, selected full source, summaries, and signatures.

  • architecture Better when you want a high-level map of a repo before drilling into code.

  • hotspots Better when you care most about complex or risky logic.

  • entrypath Better when you want code closest to inferred runtime or review roots.

  • budgeted More aggressive compression. Useful when context is tight and you still want a structured overview.

  • concat Cleaned source concatenation with lightweight headers from static analysis. Useful when you want near-source input with basic structure preserved.

  • plain_concat Cleaned source concatenation only. No added headers or analysis sections.

  • full Largest review bundle. Includes analysis sections plus broad full-source inclusion. Useful when you want to hand an LLM one source-rich file without relying on an agent-assisted IDE. Not for tight context budgets.

Common Scenarios

First pass on an unfamiliar repo

distillrepo path/to/package

This uses review mode, which is the recommended default.

Fast local bundle from the current repo

distillrepo

This uses full mode, writes the bundle into the current working directory, and skips IR output. It is the quickest path when you want a single static-analysis-aware file for LLM review.

Architecture walkthrough

distillrepo path/to/package --review-mode architecture

Use this when you want a compact map of the repo before asking the LLM deeper questions.

Focus on risky or complex code

distillrepo path/to/package --review-mode hotspots

Useful for audit-style passes and targeted review.

Near-source bundle with lightweight file markers

distillrepo path/to/package --review-mode concat

Useful when you want to preserve source fidelity but still keep file boundaries obvious.

Source only, no added headers

distillrepo path/to/package --review-mode plain_concat

Useful when you want a cleaned source dump and nothing else.

Override entry inference

distillrepo path/to/package \
  --entry-point-module cli.py \
  --entry-point-function main

Useful when the inferred root or entry surface is not the one you want reviewed.

Entry point outside the package

distillrepo path/to/project \
  --entry-point-module scripts/run_dashboard.py \
  --entry-point-function main

Useful for application repos where the runnable script lives beside the importable package, such as a Dash or Plotly dashboard launched from scripts/run_dashboard.py.

Tighten scope

distillrepo path/to/package \
  --exclude-dir tests \
  --exclude-glob "docs/*"

Useful when the repo has too much non-essential code for the task at hand.

Stdout Summary

Each run prints a short summary so the user gets immediate value even before opening the outputs:

  • files, symbols, and modules analyzed
  • analysis kind
  • roots analyzed
  • reached vs not reached
  • cycles
  • possible unused symbol count
  • top hotspot
  • original vs bundle estimated tokens
  • compression details, or analysis overhead for source-rich full bundles
  • output paths

What To Trust

distillrepo separates directly extracted facts from heuristic judgments.

High-confidence facts:

  • file paths and module paths
  • line spans and signatures
  • declared symbols
  • static imports
  • directly resolved relationships when extraction succeeds

Heuristics:

  • hotspot rankings
  • importance scores
  • root selection and pooled root coverage
  • "not reached from roots" conclusions
  • unused-code candidates
  • source inclusion and compression decisions

"Not reached from roots" does not mean dead code. Dynamic imports, lazy exports, plugin registration, reflection, and runtime dispatch may be underrepresented.

How It Chooses

distillrepo builds a small set of review roots, analyzes each root, then pools the results:

  • application-style repos bias toward package root plus runnable entry surfaces
  • library-style repos bias toward package and public subpackage roots
  • shared-across-roots modules are ranked higher for review

The .distillrepo/ Intermediate Representation (IR) keeps the fuller pooled analysis. The single-file distilled.<package>.<date>.py bundle is the review-oriented derived artifact.

Size Notes

The reported token counts are estimates based on text length. They are useful for comparing runs and spotting extreme compression or analysis overhead, but they are not model-specific tokenizer counts.

There is not yet a universal compression threshold that guarantees trustworthy review quality across repos. Treat compression as an observed outcome, not the main objective. In full mode, the bundle may be larger than the raw source estimate because it adds static-analysis guidance around the source. The main objective is retaining enough review-relevant structure and source to support a useful LLM review.

Use of AI

This software was developed with the help of Codex model GPT 5.4.

Download files

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

Source Distribution

distillrepo-0.4.tar.gz (33.5 kB view details)

Uploaded Source

Built Distribution

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

distillrepo-0.4-py3-none-any.whl (38.7 kB view details)

Uploaded Python 3

File details

Details for the file distillrepo-0.4.tar.gz.

File metadata

  • Download URL: distillrepo-0.4.tar.gz
  • Upload date:
  • Size: 33.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.17.0 {"ci":null,"cpu":"arm64","distro":{"name":"macOS","version":"26.4.1"},"implementation":{"name":"CPython","version":"3.14.5"},"installer":{"name":"hatch","version":"1.17.0"},"openssl_version":"OpenSSL 3.6.2 7 Apr 2026","python":"3.14.5","system":{"name":"Darwin","release":"25.4.0"}} HTTPX2/2.3.0

File hashes

Hashes for distillrepo-0.4.tar.gz
Algorithm Hash digest
SHA256 87d5e4ba58f5fd12aeb07cc5357cfe1e6fca3905b392f20c73dd056474650d29
MD5 2b48de5e32c075c0b8a3b3f44da26a0b
BLAKE2b-256 4193852cefa30cc9f1ed5381e2e4e85bc86dd2a47d4c1021c2502b616f370d6d

See more details on using hashes here.

File details

Details for the file distillrepo-0.4-py3-none-any.whl.

File metadata

  • Download URL: distillrepo-0.4-py3-none-any.whl
  • Upload date:
  • Size: 38.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.17.0 {"ci":null,"cpu":"arm64","distro":{"name":"macOS","version":"26.4.1"},"implementation":{"name":"CPython","version":"3.14.5"},"installer":{"name":"hatch","version":"1.17.0"},"openssl_version":"OpenSSL 3.6.2 7 Apr 2026","python":"3.14.5","system":{"name":"Darwin","release":"25.4.0"}} HTTPX2/2.3.0

File hashes

Hashes for distillrepo-0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 2b1ddcf969d3575b233c9f0510271e4290289a31cf4b8985353f3b99f36b0274
MD5 682511af27cf610db9286c80a8f5059a
BLAKE2b-256 0e5f3de5d574db25d1ea9c6868db3b326dbe5a05be1edca8ef299da782af362a

See more details on using hashes here.

Release history Release notifications | RSS feed

0.25

2 files

This release

0.4 This release

2 files

0.3

2 files

0.2

2 files

0.1.2

2 files

0.1

2 files

Supported by

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