PDCA Skill
Unified Skill for managing PDCA cycle. Supports the entire Plan → Design → Do → Check → Act flow.
Arguments
| Argument | Description | Example |
|---|---|---|
plan [feature] | Create Plan document | /pdca plan user-auth |
design [feature] | Create Design document | /pdca design user-auth |
do [feature] | Do phase guide | /pdca do user-auth |
analyze [feature] | Run Gap analysis (Check) | /pdca analyze user-auth |
iterate [feature] | Auto improvement (Act) | /pdca iterate user-auth |
report [feature] | Generate completion report | /pdca report user-auth |
archive [feature] | Archive PDCA documents | /pdca archive user-auth |
status | Show current status | /pdca status |
next | Guide to next phase | /pdca next |
Action Details
plan (Plan Phase)
- •Check if
docs/01-plan/features/{feature}.plan.mdexists - •If not, create based on plan.template.md
- •Create Task:
[Plan] {feature}
design (Design Phase)
- •Verify Plan document exists
- •Create
docs/02-design/features/{feature}.design.md - •Create Task:
[Design] {feature}(blockedBy: Plan)
do (Do Phase)
- •Verify Design document exists
- •Provide implementation guide
- •Create Task:
[Do] {feature}(blockedBy: Design)
analyze (Check Phase)
- •Call gap-detector agent
- •Compare Design vs implementation
- •Calculate Match Rate
- •Create Task:
[Check] {feature}
iterate (Act Phase)
- •Check results (when matchRate < 90%)
- •Call pdca-iterator agent
- •Auto-fix and re-verify
- •Max 5 iterations
report (Completion Report)
- •Verify Check >= 90%
- •Call report-generator agent
- •Create completion report
PDCA Flow
code
[Plan] ✅ → [Design] ✅ → [Do] ✅ → [Check] 🔄 → [Act] ⏳ → [Report] 📋
↑_________|
(if < 90%)
References
- •
${extensionPath}/templates/plan.template.md - •
${extensionPath}/templates/design.template.md - •
${extensionPath}/templates/analysis.template.md - •
${extensionPath}/templates/report.template.md