What problem does it solve? Code changes made without tests are unverified, and bug fixes without reproduction tests can silently regress. This Skill enforces a disciplined workflow where every behavior change is proven by a failing-then-passing test before it is considered done. ## Core Features & Use Cases - Red-Green-Refactor Cycle: Write a failing test first, implement the minimal code to pass it, then refactor with tests as a safety net. - Prove-It Pattern for Bug Fixes: Reproduce any reported bug with a failing test before attempting a fix, guaranteeing the fix actually works. - Stack Discovery: Detects the repository's own test framework and commands (npm, Gradle, pytest, Cargo, Go) instead of assuming defaults. - Use Case: A bug report says completing a task doesn't set its timestamp. The Skill guides you to write a failing reproduction test, implement the fix, confirm the test passes, and run the full suite to catch regressions. ## Quick Start Ask the agent to implement a new feature or fix a bug using test-driven development with a failing test written first.