一键导入
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 |