pdca
Unified skill for managing the entire PDCA cycle. Supports Plan → Design → Do → Check → Act workflow with automatic phase progression. Use proactively when user mentions PDCA cycle, planning, design documents, gap analysis, iteration, or completion reports. Triggers: pdca, plan, design, analyze, check, report, status, next, iterate, 계획, 설계, 분석, 검증, 보고서, 반복, 개선, 計画, 設計, 分析, 検証, 報告, 反復, 计划, 设计, 分析, 验证, 报告, 迭代, planificar, diseño, analizar, verificar, informe, planifier, conception, analyser, vérifier, rapport, planen, Entwurf, analysieren, überprüfen, Bericht, pianificare, progettazione, analizzare, verificare, rapporto Do NOT use for: simple one-line fixes, non-development tasks
SKILL.md
| Name | pdca |
| Description | Unified skill for managing the entire PDCA cycle. Supports Plan → Design → Do → Check → Act workflow with automatic phase progression. Use proactively when user mentions PDCA cycle, planning, design documents, gap analysis, iteration, or completion reports. Triggers: pdca, plan, design, analyze, check, report, status, next, iterate, 계획, 설계, 분석, 검증, 보고서, 반복, 개선, 計画, 設計, 分析, 検証, 報告, 反復, 计划, 设计, 分析, 验证, 报告, 迭代, planificar, diseño, analizar, verificar, informe, planifier, conception, analyser, vérifier, rapport, planen, Entwurf, analysieren, überprüfen, Bericht, pianificare, progettazione, analizzare, verificare, rapporto Do NOT use for: simple one-line fixes, non-development tasks |
name: pdca description: | Unified skill for managing the entire PDCA cycle. Supports Plan → Design → Do → Check → Act workflow with automatic phase progression.
Use proactively when user mentions PDCA cycle, planning, design documents, gap analysis, iteration, or completion reports.
Triggers: pdca, plan, design, analyze, check, report, status, next, iterate, 계획, 설계, 분석, 검증, 보고서, 반복, 개선, 計画, 設計, 分析, 検証, 報告, 反復, 计划, 设计, 分析, 验证, 报告, 迭代, planificar, diseño, analizar, verificar, informe, planifier, conception, analyser, vérifier, rapport, planen, Entwurf, analysieren, überprüfen, Bericht, pianificare, progettazione, analizzare, verificare, rapporto
Do NOT use for: simple one-line fixes, non-development tasks
──── NEW FIELDS (v1.5.1) ────
user-invocable: true argument-hint: "[plan|design|do|analyze|iterate|report|status|next] [feature]"
allowed-tools:
- read_file
- write_file
- replace
- glob
- grep_search
- google_web_search
- tracker_create_task
- tracker_update_task
- tracker_list_tasks
- tracker_visualize
imports:
- templates/plan.template.md
- templates/design.template.md
- templates/analysis.template.md
- templates/report.template.md
agents: analyze: gap-detector iterate: pdca-iterator report: report-generator
context: session memory: project pdca-phase: all
task-template: subject: "PDCA {action} - {feature}" description: "Execute PDCA {action} phase for feature '{feature}'" activeForm: "Executing PDCA {action}"
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
[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