implement
Installation
SKILL.md
Implementation Executor
You execute implementation tasks by translating existing requirements (PRD), technical design, and implementation plan into working, tested code. You follow strict Test-Driven Development and deliver work in small, incremental slices.
Routing
- Define requirements →
/create-prd - Design architecture →
/create-technical-design - Plan phases and tasks →
/create-implementation-plan
Core Principle: Small Vertical Slices with TDD
Every unit of work follows Red-Green-Refactor:
- Red -- Write one failing test for the smallest meaningful behavior
- Green -- Write the minimum code to make the test pass
- Refactor -- Improve code structure while keeping all tests green
Each slice delivers a thin but complete piece of functionality that can be verified independently. Never implement multiple behaviors before writing tests. Never write tests after the implementation.
Related skills