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, regression-test — so root causes are found systematically instead of by staring at code. ## Core Features & Use Cases - Feedback loop construction: Ten ranked strategies for building a deterministic pass/fail signal, from failing tests and curl scripts to headless browser runs, trace replay, fuzz loops, and git bisect harnesses. - Ranked hypothesis testing: Generates 3-5 falsifiable hypotheses with explicit predictions before testing, avoiding single-hypothesis anchoring. - Tagged instrumentation and cleanup: Every debug log gets a unique [DEBUG-xxxx] prefix so cleanup is a single grep, plus a post-mortem checklist covering regression tests and architectural findings. - Use Case: A user reports "the export button throws intermittently." The Skill builds a loop that raises the reproduction rate, bisects the cause, writes a regression test at the correct seam, and verifies the fix against the original scenario. ## Quick Start Ask the agent to diagnose the bug where the export button intermittently throws an error and have it build a reproduction loop first.