What problem does it solve? Hard bugs and performance regressions resist casual code reading; without a reproducible signal, debugging devolves into guessing. This Skill enforces a disciplined six-phase diagnosis loop that builds a tight pass/fail feedback signal before any hypothesis is tested. ## Core Features & Use Cases - Feedback Loop Construction: Builds a red-capable, deterministic, fast reproduction command using failing tests, curl scripts, headless browser automation, 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 regression test at the correct seam before the fix, verifies the original repro, and cleans up all debug instrumentation. - Use Case: A user reports that an export endpoint intermittently throws a 500 error. The Skill guides building a curl-based loop that reproduces the failure, minimizing the input, ranking hypotheses, instrumenting the suspected code path, and landing a fix with a regression test. ## Quick Start Diagnose this bug: the export button throws an intermittent 500 error, and walk me through building a reproduction loop.