Skip to main content

Root-cause analysis for a PR or branch: classify feature vs bugfix, find the introducing commit (suspect set) or the blast radius.

Project description

culprit

CI PyPI Python versions License: MIT

Root-cause analysis for a pull request or branch.

culprit looks at a PR (or the current branch), decides whether it's a bugfix or a feature, then:

  • Bugfix -> reconstructs the bug's life story. It blames the lines the fix removed/changed at the base revision to rank the commits that introduced it (the suspect set), surfaces what the author was trying to do (the introducing PR/commit + any linked issue), how long it lived and which releases shipped it, whether the file is a recurring hotspot, and whether the fix is actually complete (other untouched call sites, a missing test, a revert) - then explains why it broke.
  • Feature -> maps the blast radius: who imports the changed modules, which tests cover them, and which touched files live in high-risk shared/core areas.

It is read-only - it never modifies your repo or the PR.

Example

The visual report (rca --html report.html) for a bugfix - a one-line area formula silently broken by a perf commit and shipped across three releases before it was fixed. The line-evolution timeline walks every commit that touched those lines: created -> reformatted -> the commit that broke it (red) -> the fix (green).

culprit RCA report

A self-contained HTML file (no server, no CDN) with deep links, the introducing PR's intent, a lifecycle strip (how long it lived and the releases that shipped it), a fix-completeness callout, a test-gap callout, and expandable per-step diffs.

Why the split design

The deterministic git work (diff parsing, git blame / git log -L, the suspect set, the reverse-import map) lives in a plain Python engine that emits structured JSON. The only LLM step - the "why it broke" narrative - is isolated behind a ReasoningAdapter:

  • HarnessAdapter - used by the Claude Code skill. Returns the structured result + a markdown skeleton; the agent writes the narrative. No API key.
  • ClaudeAPIAdapter - used standalone. Calls the Claude API (claude-opus-4-8 by default, --fast -> claude-sonnet-4-6).

Same engine, two frontends.

Install

pip install culprit            # engine + CLI (rca / culprit)
pip install "culprit[api]"     # + Claude API reasoning layer (anthropic SDK)

Or with pipx for an isolated CLI: pipx install culprit. From source: pip install -e ".[dev]" then pytest.

PR metadata uses the GitHub CLI when available: brew install gh && gh auth login. For public repos you don't even need gh - rca --pr N falls back to the unauthenticated REST API (GitHub and GitLab) for metadata plus a read-only git fetch of the PR/MR head (set GITHUB_TOKEN / GITLAB_TOKEN to raise rate limits). With neither, culprit uses local git (base vs head) - fully offline, minus PR title/labels.

Any host, any language

  • Hosts: deep links (commit / PR / file) are generated for GitHub, GitLab, Bitbucket, and Gitea; the suspect-set + line-evolution timeline work on any git repo regardless of host. For a self-hosted forge the URL can't disambiguate, so set host = "gitlab" (or github/bitbucket/gitea) in .culprit.toml, or CULPRIT_HOST.
  • Languages: suspect/timeline are language-agnostic (pure git blame/log -L). Blast-radius + test-gap detect imports across JS/TS, Python, Go, Java/Kotlin, Ruby, C/C++, C#, PHP, Rust, Scala, Swift (quoted and bare/dotted import forms).

Usage

rca                      # current branch vs the configured base (or latest commit)
rca --last               # just the latest commit ("the change I just made")
rca --pr 16786           # a specific GitHub PR (uses the PR's own base)
rca --repo /path --base main
rca --mode api --fast    # standalone reasoning via the Claude API
rca --json               # structured result only
rca --html report.html --open   # self-contained visual report (timeline UI)
rca --pr 16889 --bisect "pytest tests/test_x.py::test_y"   # confirm the suspect via git bisect

culprit vs git bisect

Same goal - find the commit that introduced a bug - but opposite method:

git bisect culprit
Method Dynamic - checks out commits and runs a test at each Static - blames the fix's lines + git log -L
Needs a failing test? Required No
Runs your code? Yes (serial checkouts) No
Speed Minutes (~log2(N) runs) Instant
Answers "first commit where the test fails" suspect + how the line evolved + why + the introducing PR's intent + releases shipped + hotspot + fix completeness + test gap
Confidence Proof (if the test is reliable) Strong heuristic

culprit is not a reimplementation of bisect - it reasons statically from the patch and gives you the story, no test required. But when you do have a repro, --bisect "<cmd>" runs a real bisect (in a throwaway git worktree, so your checkout and HEAD are never touched) and stamps "✓ confirmed by git bisect" when the first failing commit matches the blamed suspect. The command must exit non-zero when the bug is present; --good <ref> / --bad <ref> override the search bounds (defaults: the suspect's parent and the base).

Visual HTML report

--html PATH writes a single self-contained HTML file (inline CSS/JS, data embedded, no CDN - opens offline, shareable, CI-attachable). For a bugfix it renders a line-evolution timeline: for each line the fix touched, every commit that ever changed those lines, from creation -> ... -> the commit that broke it (red) -> the fix (green), each step expandable to its diff.

rca --pr 16889 --html rca.html --open                 # narrative via --mode api if key set
rca --pr 16889 --html rca.html --narrative-file why.md # embed a pre-written narrative

The timeline needs no API key. The "Analysis" prose comes from --narrative-file (e.g. written by the Claude Code /rca skill) or from --mode api.

The report also includes: a TL;DR banner naming the prime suspect with a lifecycle strip (how long the bug lived and the releases that shipped it); the introducing PR's intent (title, linked issue, message body) on the suspect card; a fix-completeness callout (other untouched references to the changed symbols, whether a test was added, revert detection); deep links on every commit / PR / file (derived from origin); weight bars ranking the suspects; expand/collapse-all and a per-file filter for the timeline; and a one-click copy-as-markdown to paste into the PR.

Choosing the base branch

The base differs per repo (main, master, develop, a long-lived release branch, ...). Resolution order: --base <ref> -> CULPRIT_BASE env -> .culprit.toml (base = "...") -> the latest commit. The static HTML report is generated for one base (shown in the footer with a regenerate hint). For an interactive base picker, use serve mode:

rca serve --repo /path/to/repo     # opens http://127.0.0.1:8722

It launches a local web app (stdlib only - no extra deps) with a form: enter a PR/branch, pick the base from a dropdown (pre-filled from .culprit.toml, the repo's default branch, then all local/remote branches), choose classification + reasoning, and run a fresh analysis that renders the same visual report. The base picker repopulates when you point it at a different repo. Binds to localhost only.

Base branch

In local mode (no PR), culprit needs a base to diff against. Resolution order:

  1. --base <ref> on the CLI
  2. CULPRIT_BASE environment variable
  3. base = "..." in a .culprit.toml at the repo root
  4. otherwise the latest commit (HEAD~1)

So pin your repo's real base once and forget it:

# .culprit.toml
base = "origin/main"   # whatever your repo is actually cut from

--last always forces the latest-commit view regardless of config.

Tests

pip install -e ".[dev]" && pytest

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

culprit-0.2.0.tar.gz (692.7 kB view details)

Uploaded Source

Built Distribution

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

culprit-0.2.0-py3-none-any.whl (53.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: culprit-0.2.0.tar.gz
  • Upload date:
  • Size: 692.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for culprit-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f4a36f879f847e7961e35cc9ab0d41227325aaa71c7652cc8bf3850319b436d3
MD5 43190fdeaee82678e36de9983ac171d9
BLAKE2b-256 9b9d3c95d40576af9eee32e915e1d410a2b754d1788fde3bd6d3c2ca27fcd56f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on noordeen123/culprit

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

File details

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

File metadata

  • Download URL: culprit-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 53.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for culprit-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ecf4c79e29be711c0f4fabac561515cba6359012e7ada69c654b23460e07e69e
MD5 9e74641cc17ac3fc68ce4a07f574576a
BLAKE2b-256 647ba5bc9166794b60a9dbe097dfd6e9bee53f87123c5a65755ee22ba822937f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on noordeen123/culprit

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