pdca
npx skills add https://github.com/popup-studio-ai/bkit-claude-code --skill pdca
Agent 安装分布
Skill 文档
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 (start implementation) | /pdca do user-auth |
analyze [feature] |
Run Gap analysis (Check phase) | /pdca analyze user-auth |
iterate [feature] |
Auto improvement iteration (Act phase) | /pdca iterate user-auth |
report [feature] |
Generate completion report | /pdca report user-auth |
archive [feature] |
Archive completed PDCA documents | /pdca archive user-auth |
cleanup [feature] |
Cleanup archived features from status | /pdca cleanup |
team [feature] |
Start PDCA Team Mode (requires Agent Teams) | /pdca team user-auth |
team status |
Show Team status | /pdca team status |
team cleanup |
Cleanup Team resources | /pdca team cleanup |
status |
Show current PDCA 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 - If exists, display content and suggest modifications
- Create Task:
[Plan] {feature} - Update .bkit-memory.json: phase = “plan”
Output Path: docs/01-plan/features/{feature}.plan.md
Tip: For features with ambiguous requirements or multiple implementation approaches, use
/plan-plus {feature}instead. Plan Plus adds brainstorming phases (intent discovery, alternatives exploration, YAGNI review) before document generation for higher-quality plans.
design (Design Phase)
- Verify Plan document exists (required – suggest running plan first if missing)
- Create
docs/02-design/features/{feature}.design.md - Use
design.template.mdstructure + reference Plan content - Create Task:
[Design] {feature}(blockedBy: Plan task) - Update .bkit-memory.json: phase = “design”
Output Path: docs/02-design/features/{feature}.design.md
do (Do Phase)
- Verify Design document exists (required)
- Provide implementation guide based on
do.template.md - Reference implementation order from Design document
- Create Task:
[Do] {feature}(blockedBy: Design task) - Update .bkit-memory.json: phase = “do”
Guide Provided:
- Implementation order checklist
- Key files/components list
- Dependency installation commands
analyze (Check Phase)
- Verify Do completion status (implementation code exists)
- Call gap-detector Agent
- Compare Design document vs implementation code
- Calculate Match Rate and generate Gap list
- Create Task:
[Check] {feature}(blockedBy: Do task) - Update .bkit-memory.json: phase = “check”, matchRate
Output Path: docs/03-analysis/{feature}.analysis.md
iterate (Act Phase)
- Check results (when matchRate < 90%)
- Call pdca-iterator Agent
- Auto-fix code based on Gap list
- Auto re-run Check after fixes
- Create Task:
[Act-N] {feature}(N = iteration count) - Stop when >= 90% reached or max iterations (5) hit
Iteration Rules:
- Max iterations: 5 (adjustable via bkit.config.json)
- Stop conditions: matchRate >= 90% or maxIterations reached
report (Completion Report)
- Verify Check >= 90% (warn if below)
- Call report-generator Agent
- Integrated report of Plan, Design, Implementation, Analysis
- Create Task:
[Report] {feature} - Update .bkit-memory.json: phase = “completed”
Output Path: docs/04-report/{feature}.report.md
team (Team Mode) – v1.5.1
Start PDCA Team Mode using Claude Code Agent Teams (requires CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1).
team [feature] – Start Team Mode
- Check if Agent Teams is available: call
isTeamModeAvailable()fromlib/team/coordinator.js - If not available, display: “Agent Teams is not enabled. Set
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1to enable.” - Detect project level via
detectLevel()– Starter projects cannot use Team Mode - Generate team strategy via
generateTeamStrategy(level):- Dynamic: 3 teammates (developer, frontend, qa) â CTO Lead orchestrates
- Enterprise: 5 teammates (architect, developer, qa, reviewer, security) â CTO Lead orchestrates
- CTO Lead (cto-lead agent, opus) automatically:
- Sets technical direction and selects orchestration pattern
- Distributes tasks to teammates based on PDCA phase
- Enforces quality gates (90% Match Rate threshold)
- Show strategy and confirm with AskUserQuestion before starting
- Assign PDCA tasks to teammates via
assignNextTeammateWork()
team status – Show Team Status
- Call
formatTeamStatus()fromlib/team/coordinator.js - Display: Team availability, enabled state, display mode, teammate count
- Show current PDCA feature progress per teammate if active
Output Example:
ð PDCA Team Status
âââââââââââââââââââââââââââââ
Agent Teams: Available â
Display Mode: in-process
Teammates: 4 / 4 (Enterprise)
âââââââââââââââââââââââââââââ
Feature: user-auth
architect: [Design] in progress
developer: [Do] waiting
qa: idle
reviewer: idle
team cleanup – Cleanup Team Resources
- Stop all active teammates
- Record
team_session_endedin PDCA history viaaddPdcaHistory() - Return to single-session PDCA mode
- Display: “Returning to single-session mode”
Required Environment: CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
Level Requirements:
| Level | Available | Teammates | CTO Lead |
|---|---|---|---|
| Starter | No | – | – |
| Dynamic | Yes | 3 | cto-lead (opus) |
| Enterprise | Yes | 5 | cto-lead (opus) |
archive (Archive Phase)
- Verify Report completion status (phase = “completed” or matchRate >= 90%)
- Verify PDCA documents exist (plan, design, analysis, report)
- Create
docs/archive/YYYY-MM/{feature}/folder - Move documents (delete from original location)
- Update Archive Index (
docs/archive/YYYY-MM/_INDEX.md) - Update .pdca-status.json: phase = “archived”, record archivedTo path
- Remove feature from status (or preserve summary with
--summaryoption)
Arguments:
| Argument | Description | Example |
|---|---|---|
archive {feature} |
Archive with complete cleanup (default) | /pdca archive user-auth |
archive {feature} --summary |
Archive with summary preservation (FR-04) | /pdca archive user-auth --summary |
Output Path: docs/archive/YYYY-MM/{feature}/
Documents to Archive:
docs/01-plan/features/{feature}.plan.mddocs/02-design/features/{feature}.design.mddocs/03-analysis/{feature}.analysis.mddocs/04-report/features/{feature}.report.md
FR-04: Summary Preservation Option (v1.4.8):
When using --summary (or --preserve-summary, -s), the feature data in .pdca-status.json
is converted to a lightweight summary instead of being deleted:
// Summary format (70% size reduction)
{
"my-feature": {
"phase": "archived",
"matchRate": 100,
"iterationCount": 2,
"startedAt": "2026-01-15T10:00:00Z",
"archivedAt": "2026-01-20T15:30:00Z",
"archivedTo": "docs/archive/2026-01/my-feature/"
}
}
Use --summary when you need:
- Historical statistics and metrics
- Project duration tracking
- PDCA efficiency analysis
Important Notes:
- Cannot archive before Report completion
- Documents are deleted from original location after move (irreversible)
- Feature name must match exactly
- Default behavior: complete deletion from status
- Use
--summaryto preserve metrics for future reference
cleanup (Cleanup Phase) – v1.4.8
Clean up archived features from .pdca-status.json to reduce file size.
- Read archived features from
.pdca-status.json - Display list with timestamps and archive paths
- Ask user for confirmation via AskUserQuestion (FR-06)
- Delete selected features from status using
cleanupArchivedFeatures() - Report cleanup results
Arguments:
| Argument | Description | Example |
|---|---|---|
cleanup |
Interactive cleanup (shows list) | /pdca cleanup |
cleanup all |
Delete all archived features | /pdca cleanup all |
cleanup {feature} |
Delete specific feature | /pdca cleanup old-feature |
Output Example:
ð§¹ PDCA Cleanup
âââââââââââââââââââââââââââââ
Archived features found: 3
1. feature-a (archived: 2026-01-15)
2. feature-b (archived: 2026-01-20)
3. feature-c (archived: 2026-01-25)
Select features to cleanup:
[ ] All archived features
[ ] Select specific features
[ ] Cancel
Related Functions (lib/pdca/status.js):
getArchivedFeatures()– Get list of archived featurescleanupArchivedFeatures(features?)– Cleanup specific or all archiveddeleteFeatureFromStatus(feature)– Delete single featureenforceFeatureLimit(max=50)– Auto cleanup when limit exceeded
Notes:
- Only archived/completed features can be deleted
- Active features are protected from deletion
- Archive documents remain in
docs/archive/(only status is cleaned)
status (Status Check)
- Read
.bkit-memory.json - Display current feature, PDCA phase, Task status
- Visualize progress
Output Example:
ð PDCA Status
âââââââââââââââââââââââââââââ
Feature: user-authentication
Phase: Check (Gap Analysis)
Match Rate: 85%
Iteration: 2/5
âââââââââââââââââââââââââââââ
[Plan] â
â [Design] â
â [Do] â
â [Check] ð â [Act] â³
next (Next Phase)
- Check current PDCA phase
- Suggest next phase guide and commands
- Confirm with user via AskUserQuestion
Phase Guide:
| Current | Next | Suggestion |
|---|---|---|
| None | plan | /pdca plan [feature] |
| plan | design | /pdca design [feature] |
| design | do | Implementation start guide |
| do | check | /pdca analyze [feature] |
| check (<90%) | act | /pdca iterate [feature] |
| check (>=90%) | report | /pdca report [feature] |
| report | archive | /pdca archive [feature] |
Template References
Templates loaded from imports are used when executing each action:
| Action | Template | Purpose |
|---|---|---|
| plan | plan.template.md |
Plan document structure |
| design | design.template.md |
Design document structure |
| do | do.template.md |
Implementation guide structure |
| analyze | analysis.template.md |
Analysis report structure |
| report | report.template.md |
Completion report structure |
Task Integration
Each PDCA phase automatically integrates with Task System:
Task Creation Pattern:
ââââââââââââââââââââââââââââââââââââââââââ
â [Plan] {feature} â
â â (blockedBy) â
â [Design] {feature} â
â â (blockedBy) â
â [Do] {feature} â
â â (blockedBy) â
â [Check] {feature} â
â â (blockedBy, Check < 90%) â
â [Act-1] {feature} â
â â (on iteration) â
â [Act-N] {feature} â
â â (Check >= 90%) â
â [Report] {feature} â
â â (after Report completion) â
â [Archive] {feature} â
ââââââââââââââââââââââââââââââââââââââââââ
Agent Integration
| Action | Agent | Role |
|---|---|---|
| analyze | gap-detector | Compare Design vs Implementation |
| iterate | pdca-iterator | Auto code fix and re-verification |
| report | report-generator | Generate completion report |
Usage Examples
# Start new feature
/pdca plan user-authentication
# Create design document
/pdca design user-authentication
# Implementation guide
/pdca do user-authentication
# Gap analysis after implementation
/pdca analyze user-authentication
# Auto improvement (if needed)
/pdca iterate user-authentication
# Completion report
/pdca report user-authentication
# Check current status
/pdca status
# Guide to next phase
/pdca next
Legacy Commands Mapping
| Legacy Command | PDCA Skill |
|---|---|
/pdca-plan |
/pdca plan |
/pdca-design |
/pdca design |
/pdca-analyze |
/pdca analyze |
/pdca-iterate |
/pdca iterate |
/pdca-report |
/pdca report |
/pdca-status |
/pdca status |
/pdca-next |
/pdca next |
/archive |
/pdca archive |
Output Style Integration (v1.5.1)
PDCA workflows benefit from the bkit-pdca-guide output style:
/output-style bkit-pdca-guide
This provides PDCA-specific response formatting:
- Phase status badges:
[Plan] -> [Design] -> [Do] -> [Check] -> [Act] - Gap analysis suggestions after code changes
- Next-phase guidance with checklists
- Feature usage report integration
When running PDCA commands, suggest this style if not already active.
Agent Teams Integration (v1.5.1)
For Dynamic/Enterprise projects, PDCA phases can run in parallel using Agent Teams:
/pdca team {feature} Start parallel PDCA
/pdca team status Monitor teammate progress
/pdca team cleanup End team session
Suggest Agent Teams when:
- Feature is classified as Major Feature (>= 1000 chars)
- Match Rate < 70% (parallel iteration can speed up fixes)
- Project level is Dynamic or Enterprise
CTO-Led Team Orchestration Patterns:
| Level | Plan | Design | Do | Check | Act |
|---|---|---|---|---|---|
| Dynamic | leader | leader | swarm | council | leader |
| Enterprise | leader | council | swarm | council | watchdog |
Auto Triggers
Auto-suggest related action when detecting these keywords:
| Keyword | Suggested Action |
|---|---|
| “plan”, “planning”, “roadmap” | plan |
| “design”, “architecture”, “spec” | design |
| “implement”, “develop”, “build” | do |
| “verify”, “analyze”, “check” | analyze |
| “improve”, “iterate”, “fix” | iterate |
| “complete”, “report”, “summary” | report |
| “archive”, “store” | archive |
| “cleanup”, “clean”, “remove old” | cleanup |