repo-health
Read-only repository health scanners: definition drift, unwired-module reachability, prompt bloat, evidence-gate calibration, and registration completeness — as a CLI and an MCP server.
A codebase rots silently. The most damaging defects are the ones no test, type checker, or linter catches:
- a concept defined in two places where only one copy gets updated (drift),
- a module written but never wired up (unreachable),
- a fixed-injected prompt segment quietly eating the context (bloat),
- an extension point that exists but is never registered (registration).
repo-health is five read-only scanners that watch for exactly these. It is the extracted, generalized core of the quality-guard tooling behind a large production agent system, repackaged so any repository can run it.
Install
pip install "dsh-repo-health" # CLI
pip install "dsh-repo-health[mcp]" # + MCP server
Requires Python 3.11+ (the registration scanner uses tomllib; the others run on 3.10+).
Quick start
repo-health drift --root /path/to/repo # definition drift report
repo-health reach --root /path/to/repo # unwired-module report
repo-health prompt-bloat --root /path/to/repo # prompt segment shares
repo-health evidence --path logs/evidence_gate.jsonl
repo-health registration --root /path/to/repo --config registration.toml
repo-health all --root /path/to/repo # run every scanner
Every scanner also ships a --selftest that verifies the tool itself against a
synthetic fixture before it is trusted to judge your code — the predecessor of
these scanners shipped versions that produced pretty-but-wrong numbers, and
only known-answer fixtures caught them.
The five scanners
drift — multi-source definition drift
Detects the same name defined in more than one place with overlapping member structure, and flags it when one copy changes but the other does not.
- A class (guarded): same name and structure overlap ≥ 0.5 — watched for drift.
- B class (not guarded): same name, disjoint structure — a name collision, confusing but not a data hazard.
- Sync changes pass. If someone diligently updates both copies, that is correct behavior; a guard that punishes it gets disabled.
repo-health drift --root . # report
repo-health drift --root . --write-baseline # freeze a baseline
repo-health drift --root . --check # exit 1 on drift / new pairs
reach — unwired-module reachability
Builds the import graph and BFS-searches from startup entrypoints
(__main__.py, if __name__ == "__main__" guards, main.py, launch scripts).
Modules that cannot be reached are "wired but dead".
Its baseline carries auditable reasons: every unreachable module needs a
structured {verdict, anchor} entry, validated deterministically (V1–V7) so a
single wrong reason can never permanently hide code from every mechanism.
repo-health reach --root . # report
repo-health reach --root . --write-baseline # freeze
repo-health reach --root . --check # exit 1 on new unwired modules
repo-health reach --root . --audit-reasons # validate baseline reasons
prompt-bloat — prompt segment share baseline
Reads prompt-inspection JSONL logs ({segments: [{name, pct, kind}]}) and
watches the median share per segment, not the absolute size (absolute size
varies naturally with task complexity; share reflects structural bloat).
repo-health prompt-bloat --root . --check --json
evidence — evidence-gate decision log calibration
Summarizes a decision log ({passed, suggested_action, tool, issues} JSONL) to
answer "is the gate calibrated yet?" — insufficient samples or a
false-positive-prone tool block any conclusion.
registration — config-driven registration completeness
Declares your architecture's extension points in a TOML config and verifies
every defined item appears in its registry. See
config/registration.example.toml for an
annotated example covering agent roles, checkers, API routers, sidebar pages,
and LLM providers.
MCP server (DeepSeek Harness & any MCP client)
pip install "dsh-repo-health[mcp]"
python -m repo_health.mcp_server
Exposes the scanners as read-only MCP tools (drift_scan, reach_scan,
reach_reason_audit, prompt_bloat, evidence_calibration, registration).
Register it in DeepSeek Harness's MCP settings (or any MCP client) to let an
agent diagnose its own repository. Large repositories may exceed MCP's default
tool timeout — pass narrower root values or raise the client timeout.
Methodology (why this is not "yet another linter")
The scanners share a discipline learned the hard way:
- Watch events, not states. "Duplicated" is a state; "one side changed and the other didn't" is the event that actually corrupts data.
- Guard must not punish correct behavior. Sync updates pass; else the guard gets disabled within a week.
- Never freeze a baseline from insufficient samples. A median from three records is not a fact — a baseline frozen from it is false confidence.
- Reasons must be checkable. Free-text baseline justifications are how
code permanently hides from every mechanism; make them
{verdict, anchor}. - Self-test the scanner before it judges anything. Known-answer fixtures are the only thing that caught the predecessor's wrong-but-plausible output.
Known limitations
driftscans Python only (.pyunder the configured package dirs).reachis module-granular: a reachable module whose functions are never called is not reported; dynamic imports (importlib, plugin loaders) are invisible and belong in the baseline.evidenceandprompt-bloatconsume a specific JSONL schema; adapt your logger to emit it (examples in the docstrings).
License
MIT © 2026 Chen (Jarry) Pan
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dsh_repo_health-0.1.0.tar.gz.
File metadata
- Download URL: dsh_repo_health-0.1.0.tar.gz
- Upload date:
- Size: 39.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
304b676ed139112aef5c90c397fa29edb365c66584c71a0eaa9bf29ac05be97c
|
|
| MD5 |
a3f48ba04d15617f7738e83054e82431
|
|
| BLAKE2b-256 |
ed1f52eda11f72ad13a3bf625b98df2d2abe87c568ec74e692abab924eb0416e
|
File details
Details for the file dsh_repo_health-0.1.0-py3-none-any.whl.
File metadata
- Download URL: dsh_repo_health-0.1.0-py3-none-any.whl
- Upload date:
- Size: 39.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3817a8cd0ce66fce57b4710f9767779a220bc87ecc659e43adb5e6cbaf608e1b
|
|
| MD5 |
a7d57738fe631cf2259dea562a84ad0e
|
|
| BLAKE2b-256 |
f3ef9f942a93e499b8930724c65efbe6a65bbfbf0a3b2fc038246f31ed78ee4f
|