What problem does it solve? Developers often write production code first and add tests afterward, which produces tests that pass immediately and prove nothing. This Skill enforces a strict test-first discipline so every feature and bug fix is backed by a test that was observed failing before implementation. ## Core Features & Use Cases - Red-Green-Refactor Enforcement: Mandates writing a failing test, verifying it fails for the right reason, writing minimal code to pass, then refactoring while keeping tests green. - Anti-Rationalization Guardrails: Lists common excuses for skipping TDD (e.g., "too simple to test", "I'll test later") and counters each with concrete reasoning. - Testing Anti-Pattern Reference: Ships a reference document covering mock-behavior testing, test-only production methods, uninformed mocking, and incomplete mocks. - Use Case: When fixing a bug where empty emails are accepted, the Skill guides you to first write a failing test asserting the rejection, watch it fail, implement the minimal validation, and confirm the suite passes. ## Quick Start Ask the AI to implement a new feature or bug fix using strict test-driven development with the red-green-refactor cycle.