What problem does it solve? Code that looks right but fails at runtime wastes hours of debugging. This Skill enforces a compile-clean discipline: every snippet is mentally traced, verified against real library APIs, and debugged through systematic root-cause analysis instead of guess-and-check patching. ## Core Features & Use Cases - Verified Code Generation: Produces complete, runnable code with imports, type hints, and edge cases handled, flagging anything unverifiable with explicit # verify: markers. - Systematic Debugging: Applies a reproduce-isolate-hypothesize-disprove loop for intermittent bugs, heisenbugs, flaky tests, and build failures, fixing root causes rather than symptoms. - Structured Code Review: Delivers verdicts with severity-ranked findings (critical, warning, nit) plus honest assessment of what is solid. - Use Case: A test passes alone but fails in the full suite. The Skill guides you to lock test ordering, isolate the failing pair, identify shared-state mutation as the cause, and fix the fixture at the root. ## Quick Start Ask the assistant to debug why your test suite fails intermittently and trace the failure to its root cause.