What problem does it solve? Hard bugs and performance regressions stall when developers guess at causes without a reliable reproduction. This Skill enforces a disciplined loop — build a feedback signal, reproduce, hypothesise, instrument, fix, and regression-test — so root causes are found systematically instead of by luck. ## Core Features & Use Cases - Feedback loop construction: Ten ranked strategies for building an agent-runnable pass/fail signal, from failing tests and curl scripts to headless browser runs, trace replay, fuzz loops, and git bisect harnesses. - Falsifiable hypothesis ranking: Generates 3-5 ranked hypotheses with explicit predictions before any testing, avoiding single-hypothesis anchoring. - Tagged instrumentation and cleanup: Every debug log gets a unique [DEBUG-...] prefix so cleanup is a single grep, and a post-mortem checklist captures the confirmed root cause. - Use Case: A user reports that an export button intermittently throws in production. The Skill guides building a high-rate reproduction loop, ranking hypotheses, instrumenting the failing boundary, writing a regression test at the correct seam, and verifying the fix against the original scenario. ## Quick Start Ask the agent to diagnose the bug where the export button intermittently throws an error in production.