What problem does it solve?
Helps you systematically diagnose hard bugs and performance regressions when ad-hoc guessing wastes time and fixes don’t stick.
Core Features & Use Cases
- Feedback-loop first: builds a fast, deterministic pass/fail signal so bisection, hypothesis-testing, and instrumentation can converge.
- Reproduce with confirmation: verifies the failure matches the user-reported symptom and is repeatable enough to debug.
- Rank falsifiable hypotheses: produces 3–5 testable guesses with explicit predictions before changing anything.
- Targeted instrumentation: probes one variable at a time, tags debug logs, and focuses on boundaries that distinguish hypotheses.
- Fix with regression coverage: turns the minimized repro into a failing test at the correct seam (or documents when no seam exists).
Quick Start
Ask an agent to diagnose the issue by constructing a fast repro feedback loop, reproducing the failure, ranking falsifiable hypotheses, instrumenting to test them, and finishing with a regression test or an explicit note that no correct test seam exists.