AgentSkillsCN

pdca

支持整个 PDCA 循环的统一技能。 以自动化的阶段推进方式,助力“计划→设计→执行→检查→行动”的工作流。 当用户提及 PDCA 循环、计划制定、设计文档、 差距分析、迭代过程,或完成报告时,请主动使用此技能。 触发条件:pdca、计划、设计、分析、检查、报告、状态、下一步、迭代、 계획、설계、분석、검증、보고서、반복、개선、 計画、設計、分析、検証、報告、反復、改善、 计划、设计、分析、验证、报告、迭代、改进、 planificar、diseño、analizar、verificar、informe、 planifier、conception、analyser、vérifier、rapport、 planen、Entwurf、analysieren、überprüfen、Bericht、 pianificare、progettazione、analizzare、verificare、rapporto、 请勿用于:简单的单行修复或非开发类任务

SKILL.md
--- frontmatter
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

PDCA Skill

Unified Skill for managing PDCA cycle. Supports the entire Plan → Design → Do → Check → Act flow.

Arguments

ArgumentDescriptionExample
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
statusShow current status/pdca status
nextGuide to next phase/pdca next

Action Details

plan (Plan Phase)

  1. Check if docs/01-plan/features/{feature}.plan.md exists
  2. If not, create based on plan.template.md
  3. Create Task: [Plan] {feature}

design (Design Phase)

  1. Verify Plan document exists
  2. Create docs/02-design/features/{feature}.design.md
  3. Create Task: [Design] {feature} (blockedBy: Plan)

do (Do Phase)

  1. Verify Design document exists
  2. Provide implementation guide
  3. Create Task: [Do] {feature} (blockedBy: Design)

analyze (Check Phase)

  1. Call gap-detector agent
  2. Compare Design vs implementation
  3. Calculate Match Rate
  4. Create Task: [Check] {feature}

iterate (Act Phase)

  1. Check results (when matchRate < 90%)
  2. Call pdca-iterator agent
  3. Auto-fix and re-verify
  4. Max 5 iterations

report (Completion Report)

  1. Verify Check >= 90%
  2. Call report-generator agent
  3. 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