What problem does it solve?
This Skill helps you systematically diagnose hard bugs and performance regressions by building a fast feedback loop that turns symptoms into actionable evidence.
Core Features & Use Cases
- Build a measurable feedback loop using failing tests, HTTP/CLI repros, headless browser scripts, trace replay, or minimal harnesses so debugging is grounded in a deterministic signal.
- Reproduce with correctness checks to ensure you’re observing the exact user-reported failure, and that it’s consistently repeatable (or repeatable at a high-enough rate for flaky issues).
- Generate falsifiable hypotheses, then instrument precisely by changing one variable at a time, tagging logs for cleanup, and using profiling/bisection for perf regressions.
- Fix with regression confidence by writing the regression test (when a correct seam exists) before implementing the fix, then re-running the original loop to verify the full scenario.
Quick Start
Ask an AI to diagnose your issue by first constructing a tight repro loop, then running a reproduce → hypothesis → targeted instrumentation → fix → regression-test workflow until the original scenario no longer fails.