What problem does it solve? Writing tests after implementation often produces brittle, implementation-coupled tests that break on every refactor. This Skill enforces a disciplined test-first workflow so tests verify real behavior through public interfaces and survive code changes. ## Core Features & Use Cases - Red-Green Loop Rules: Enforces writing a failing test first, then only enough code to pass it, one vertical slice at a time. - Seam Identification: Helps you agree on public interface boundaries before writing any test, focusing effort on critical paths. - Anti-Pattern Detection: Flags implementation-coupled, tautological, and horizontally-sliced tests with concrete good/bad examples. - Mocking Guidance: Explains when to mock (system boundaries only) and how to design mockable interfaces via dependency injection. - Use Case: When adding a checkout feature, use this Skill to write a failing integration test like "user can checkout with valid cart" first, then implement just enough code to make it pass. ## Quick Start Use the tdd skill to build the new payment feature test-first, starting by agreeing on the seams we should test.