What problem does it solve? When practicing test-driven development, developers often over-engineer implementations or add untested features after writing failing tests. This Skill enforces discipline in the green phase by guiding the implementation of only the minimal code needed to turn failing tests green. ## Core Features & Use Cases - Minimal Implementation Guidance: Applies Fake It, Obvious Implementation, and Triangulation strategies to pass tests with the simplest possible code. - Multi-Language Patterns: Provides green-phase examples for TypeScript, JavaScript/Express, Python/Django, and React components. - Technical Debt Tracking: Records shortcuts and assumptions made during implementation for the subsequent refactor phase. - Use Case: After writing failing tests for a new user service, use this Skill to implement a minimal in-memory version that passes all tests, deferring database integration and validation to the refactor phase. ## Quick Start Ask the AI to implement the minimal code needed to make your failing tests pass, following TDD green phase principles.