What problem does it solve? Hard bugs and flaky failures resist casual code reading and single-hypothesis guessing. This Skill enforces a disciplined diagnosis loop that builds a tight, deterministic reproduction signal before any hypothesis is tested, preventing wasted effort on wrong fixes. ## Core Features & Use Cases - Feedback Loop Construction: Builds a red-capable, deterministic, fast reproduction command using failing tests, curl scripts, headless browsers, trace replay, fuzz loops, or bisection harnesses. - Structured Hypothesis Testing: Generates 3-5 ranked falsifiable hypotheses, then instruments code with tagged debug logs or profilers, changing one variable at a time. - Regression Lockdown: Writes a failing regression test at a correct seam before the fix, verifies the original repro, and runs cleanup plus a post-mortem. - Use Case: A user reports an intermittent export failure. The skill drives creation of a loop that reproduces it at high rate, minimises the scenario, isolates the cause via targeted instrumentation, and lands a fix guarded by a regression test. ## Quick Start Ask the agent to diagnose the bug where the export button throws an error, and have it build a reproduction loop before proposing any fix.