Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Four-phase root cause investigation for bugs and unexpected behavior
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-09 | ✗→✓ | ▲ Improved | 13% | 0% |
| case-15 | ✗→✓ | ▲ Improved | 14% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 22% | 0% |
| case-21 | ✗→✓ | ▲ Improved | 39% | 0% |
| case-22 | ✗→✓ | ▲ Improved | 110% | 0% |
A structured four-phase process for diagnosing software bugs: Reproduce → Isolate → Hypothesize → Verify. Prevents guessing and ensures you find the root cause, not just a workaround.
A bug you can reproduce consistently is halfway solved.
1. Get the exact error message, stack trace, and environment
2. Identify exact steps to trigger the bug
3. Confirm the bug happens in a clean environment (not just local state)
4. Record: OS, runtime version, dependencies, config values
5. Try: does it fail on every run, or only sometimes?If intermittent: add timing, logging, or retry logic to isolate the trigger.
Narrow the failure to the smallest possible unit.
1. Add logging before/after suspected areas to find where state diverges
2. Binary search through code: comment out half, does it still fail?
3. Check: when did this last work? (git log, git bisect)
4. Check: what changed recently? (git diff main, dependency updates)
5. Reproduce in a minimal test case — strip away all unrelated codepowershell# git bisect to find the breaking commit git bisect start git bisect bad # current commit is broken git bisect good v2.0.0 # last known good tag # git will checkout commits — test each, then: git bisect good # or git bisect bad # Repeat until git identifies the culprit commit git bisect reset
Form 2-3 specific, testable hypotheses about the root cause.
Bad hypothesis: "Something is wrong with the database"
Good hypothesis: "The connection pool is exhausted under concurrent load
because maxConnections defaults to 5 in test config"
For each hypothesis:
- What evidence supports it?
- What evidence would refute it?
- What one-line change would test it?Rank by probability and test from most to least likely.
Prove the fix, not just that the error goes away.
1. Apply the smallest change that addresses the root cause
2. Run the original reproduction steps — confirm bug is gone
3. Run the full test suite — confirm no regressions
4. Check edge cases: empty input, null values, concurrent access
5. Write a regression test that would have caught this bugpython# Regression test template def test_issue_42_connection_pool_exhaustion(): """ Regression test: ensure concurrent requests don't exhaust the connection pool. Root cause: maxConnections was not configurable; defaulted to 5 in test. Fixed in commit abc123. """ results = run_concurrent_requests(count=20) assert all(r.status_code == 200 for r in results), "Some requests failed under concurrency"
Error: KeyError / undefined → check input shapes; add null guard
Error: Off-by-one → examine loop bounds and index math
Error: Works locally, fails in CI → check env vars, file paths, timing
Error: Works first run, fails after → check state mutation, cache, side effects
Error: Inconsistent / race condition → check shared mutable state, locks
Error: Memory leak → profile allocations; check event listener cleanup"My API returns 500 randomly but I can't reproduce it" → Start at Phase 1 — add structured logging with request IDs. Once patterns emerge, apply Phase 2 binary search.
"Tests pass locally but fail in GitHub Actions" → Phase 2: diff the environments (OS, Node version, env vars). Often caused by missing env vars or OS path differences.
"I fixed the bug but it came back after a week" → Phase 4: add a regression test and check if the root cause fix addressed the underlying issue or just a symptom.
Other measured skills in the registry, with their headline benchmark lift.