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:

  1. Red -- Write one failing test for the smallest meaningful behavior
  2. Green -- Write the minimum code to make the test pass
  3. 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
Installs
14
GitHub Stars
6
First Seen
Apr 6, 2026