ワンクリックで
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 ページを確認してインストールできます。
SOC 職業分類に基づく
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.
| 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 |