원클릭으로
xp
Extreme Programming workflow orchestrator. Use when implementing features. Coordinates planning, TDD, refactoring, and commits.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Extreme Programming workflow orchestrator. Use when implementing features. Coordinates planning, TDD, refactoring, and commits.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Implement features using strict test-driven development. Use for the DEVELOP phase of XP workflow.
Break down features into tasks through collaborative discussion. Use for the PLAN phase of XP workflow.
Improve code design without changing behaviour. Use for the REFACTOR phase of XP workflow. All tests must pass before and after.
SOC 직업 분류 기준
| name | XP |
| description | Extreme Programming workflow orchestrator. Use when implementing features. Coordinates planning, TDD, refactoring, and commits. |
This skill orchestrates the full XP workflow for feature implementation. It coordinates sub-skills and ensures proper sequencing of phases.
┌─────────────────────────────────────────────────────────────┐
│ 📋 PLAN → Discuss and break down the feature │
│ 🔴 DEVELOP → TDD cycle (red-green) │
│ 🔵 REFACTOR → Improve design (tests stay green) │
│ 💾 COMMIT → Save working state │
│ 🔁 ITERATE → Next task or feature complete │
└─────────────────────────────────────────────────────────────┘
Goal: Understand and decompose the feature before writing any code.
Invoke: Switch to planning skill
Goal: Implement the task using strict TDD.
Invoke: Switch to development skill
Goal: Improve code design while keeping tests green.
refactor skillGoal: Save working state with clear, simple, commit message.
Invoke: Switch to commit-helper skill
Goal: Continue until feature complete.
When switching phases, announce clearly:
📋 PLAN → Starting feature discussion
🔴 DEVELOP → Writing failing test for [task]
🟢 DEVELOP → Making test pass
🔵 REFACTOR → Improving [aspect]
💾 COMMIT → Saving [task] implementation
🔁 ITERATE → Moving to next task
✅ COMPLETE → Feature done
| Phase | Skill |
|---|---|
| PLAN | planning |
| DEVELOP | development |
| REFACTOR | refactor |
| COMMIT | commit-helper |