claude-symphony 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -12
- package/assets/claude_symphony.webp +0 -0
- package/assets/claude_symphony_ascii.txt +8 -0
- package/bin/create.js +80 -69
- package/package.json +3 -2
- package/template/.claude/commands/benchmark.md +32 -32
- package/template/.claude/commands/brainstorm.md +33 -33
- package/template/.claude/commands/checkpoint.md +42 -42
- package/template/.claude/commands/codex.md +52 -52
- package/template/.claude/commands/collaborate.md +47 -47
- package/template/.claude/commands/context.md +77 -77
- package/template/.claude/commands/deploy.md +50 -50
- package/template/.claude/commands/fork.md +46 -46
- package/template/.claude/commands/gemini.md +43 -43
- package/template/.claude/commands/handoff.md +42 -42
- package/template/.claude/commands/implement.md +42 -42
- package/template/.claude/commands/init-project.md +25 -25
- package/template/.claude/commands/next.md +67 -67
- package/template/.claude/commands/planning.md +38 -38
- package/template/.claude/commands/qa.md +47 -47
- package/template/.claude/commands/refactor.md +50 -50
- package/template/.claude/commands/research.md +31 -31
- package/template/.claude/commands/restore.md +53 -53
- package/template/.claude/commands/run-stage.md +45 -45
- package/template/.claude/commands/stages.md +49 -49
- package/template/.claude/commands/status.md +41 -41
- package/template/.claude/commands/tasks.md +33 -33
- package/template/.claude/commands/test.md +45 -45
- package/template/.claude/commands/ui-ux.md +31 -31
- package/template/.claude/commands/validate.md +81 -81
- package/template/.claude/hooks/ai-selector.sh +39 -39
- package/template/.claude/hooks/auto-checkpoint.sh +30 -30
- package/template/.claude/hooks/output-validator.sh +45 -45
- package/template/.claude/hooks/post-stage.sh +28 -28
- package/template/.claude/hooks/pre-stage.sh +47 -47
- package/template/.claude/hooks/session-start.sh +27 -27
- package/template/.claude/hooks/statusline.sh +24 -24
- package/template/.claude/hooks/stop.sh +26 -26
- package/template/.claude/settings.json +32 -32
- package/template/.claude/skills/ai-collaboration/README.md +31 -31
- package/template/.claude/skills/ai-collaboration/debate.md +66 -66
- package/template/.claude/skills/ai-collaboration/parallel.md +34 -34
- package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +59 -63
- package/template/.claude/skills/auto-checkpoint/README.md +46 -46
- package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +68 -72
- package/template/.claude/skills/auto-checkpoint/rollback.md +95 -95
- package/template/.claude/skills/auto-checkpoint/trigger.md +37 -37
- package/template/.claude/skills/context-compression/README.md +69 -69
- package/template/.claude/skills/context-compression/analyze.md +74 -74
- package/template/.claude/skills/context-compression/compress.md +103 -103
- package/template/.claude/skills/context-compression/prompts/compression.md +78 -78
- package/template/.claude/skills/output-validator/README.md +33 -33
- package/template/.claude/skills/output-validator/prompts/CLAUDE.md +74 -78
- package/template/.claude/skills/output-validator/validate.md +76 -76
- package/template/.claude/skills/smart-handoff/README.md +35 -35
- package/template/.claude/skills/smart-handoff/extract.md +42 -42
- package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +52 -54
- package/template/.claude/skills/smart-handoff/summarize.md +55 -55
- package/template/.claude/skills/stage-transition/README.md +50 -50
- package/template/.claude/skills/stage-transition/handoff-gen.md +89 -89
- package/template/.claude/skills/stage-transition/prompts/transition.md +74 -74
- package/template/.claude/skills/stage-transition/validate.md +41 -41
- package/template/CLAUDE.md +334 -335
- package/template/config/ai_benchmarking.yaml +22 -22
- package/template/config/ai_collaboration.yaml +18 -18
- package/template/config/ai_logging.yaml +50 -50
- package/template/config/auto_checkpoint.yaml +32 -32
- package/template/config/context.yaml +20 -20
- package/template/config/git.yaml +51 -51
- package/template/config/handoff_intelligence.yaml +23 -23
- package/template/config/mcp_fallbacks.yaml +71 -71
- package/template/config/memory_integration.yaml +23 -23
- package/template/config/model_enforcement.yaml +53 -53
- package/template/config/models.yaml +24 -24
- package/template/config/output_validation.yaml +44 -44
- package/template/config/pipeline.yaml +25 -25
- package/template/config/pipeline_forking.yaml +40 -40
- package/template/config/qa_logging.yaml +67 -67
- package/template/config/smart_rollback.yaml +48 -48
- package/template/config/stage_personas.yaml +154 -154
- package/template/config/workflow.yaml +16 -16
- package/template/scripts/ai-benchmark.sh +41 -41
- package/template/scripts/codex-wrapper.sh +32 -32
- package/template/scripts/context-manager.sh +136 -136
- package/template/scripts/create-checkpoint.sh +34 -34
- package/template/scripts/gemini-wrapper.sh +31 -31
- package/template/scripts/init-project.sh +40 -40
- package/template/scripts/list-stages.sh +30 -30
- package/template/scripts/next-stage.sh +67 -67
- package/template/scripts/output-validate.sh +2 -2
- package/template/scripts/pipeline-fork.sh +68 -68
- package/template/scripts/pre-run-check.sh +84 -84
- package/template/scripts/restore-checkpoint.sh +50 -50
- package/template/scripts/run-stage.sh +44 -44
- package/template/scripts/show-status.sh +30 -30
- package/template/scripts/smart-handoff.sh +70 -70
- package/template/stages/01-brainstorm/CLAUDE.md +70 -74
- package/template/stages/01-brainstorm/README.md +54 -54
- package/template/stages/01-brainstorm/config.yaml +18 -18
- package/template/stages/01-brainstorm/prompts/collaboration.md +24 -24
- package/template/stages/01-brainstorm/prompts/ideation.md +41 -41
- package/template/stages/01-brainstorm/prompts/persona.md +50 -50
- package/template/stages/01-brainstorm/prompts/requirements.md +55 -55
- package/template/stages/01-brainstorm/prompts/validation.md +28 -28
- package/template/stages/01-brainstorm/templates/ideas.md +47 -47
- package/template/stages/01-brainstorm/templates/requirements_analysis.md +61 -61
- package/template/stages/02-research/CLAUDE.md +72 -76
- package/template/stages/02-research/config.yaml +12 -12
- package/template/stages/02-research/prompts/collaboration.md +29 -29
- package/template/stages/02-research/prompts/feasibility.md +38 -38
- package/template/stages/02-research/prompts/market_analysis.md +29 -29
- package/template/stages/02-research/prompts/tech_stack.md +34 -34
- package/template/stages/02-research/prompts/validation.md +29 -29
- package/template/stages/03-planning/CLAUDE.md +88 -92
- package/template/stages/03-planning/config.yaml +10 -10
- package/template/stages/03-planning/prompts/architecture.md +43 -43
- package/template/stages/03-planning/prompts/collaboration.md +34 -34
- package/template/stages/03-planning/prompts/validation.md +34 -34
- package/template/stages/04-ui-ux/CLAUDE.md +68 -72
- package/template/stages/04-ui-ux/config.yaml +5 -5
- package/template/stages/04-ui-ux/prompts/collaboration.md +35 -35
- package/template/stages/04-ui-ux/prompts/validation.md +30 -30
- package/template/stages/05-task-management/CLAUDE.md +81 -85
- package/template/stages/05-task-management/config.yaml +17 -17
- package/template/stages/05-task-management/prompts/collaboration.md +30 -30
- package/template/stages/05-task-management/prompts/validation.md +33 -33
- package/template/stages/05-task-management/templates/notion_integration.md +70 -70
- package/template/stages/05-task-management/templates/parallel_groups.yaml +64 -64
- package/template/stages/05-task-management/templates/task_schema.yaml +33 -33
- package/template/stages/06-implementation/CLAUDE.md +117 -121
- package/template/stages/06-implementation/config.yaml +10 -10
- package/template/stages/06-implementation/prompts/collaboration.md +29 -29
- package/template/stages/06-implementation/prompts/validation.md +36 -36
- package/template/stages/07-refactoring/CLAUDE.md +120 -124
- package/template/stages/07-refactoring/config.yaml +11 -11
- package/template/stages/07-refactoring/prompts/collaboration.md +36 -36
- package/template/stages/07-refactoring/prompts/validation.md +40 -40
- package/template/stages/08-qa/CLAUDE.md +80 -84
- package/template/stages/08-qa/config.yaml +7 -7
- package/template/stages/08-qa/prompts/collaboration.md +34 -34
- package/template/stages/08-qa/prompts/validation.md +41 -41
- package/template/stages/09-testing/CLAUDE.md +86 -90
- package/template/stages/09-testing/config.yaml +10 -10
- package/template/stages/09-testing/prompts/collaboration.md +38 -38
- package/template/stages/09-testing/prompts/validation.md +41 -41
- package/template/stages/10-deployment/CLAUDE.md +86 -90
- package/template/stages/10-deployment/config.yaml +11 -11
- package/template/stages/10-deployment/prompts/collaboration.md +37 -37
- package/template/stages/10-deployment/prompts/validation.md +54 -54
- package/template/stages/10-deployment/templates/github-actions-cd.yaml +1 -1
|
@@ -1,145 +1,145 @@
|
|
|
1
1
|
# Stage Transition Prompt
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Prompt templates used during stage transitions.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Completion Detection Prompt
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
When user expresses completion:
|
|
8
8
|
|
|
9
9
|
```
|
|
10
|
-
|
|
10
|
+
Stage completion detected.
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
Current stage: {{CURRENT_STAGE}}
|
|
13
|
+
Status: {{STATUS}}
|
|
14
14
|
|
|
15
|
-
[
|
|
15
|
+
[Completion Criteria Validation]
|
|
16
16
|
{{VALIDATION_RESULTS}}
|
|
17
17
|
|
|
18
18
|
{{#if ALL_PASSED}}
|
|
19
|
-
✅
|
|
19
|
+
✅ All criteria are met.
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
1. HANDOFF.md
|
|
23
|
-
2.
|
|
21
|
+
Next steps:
|
|
22
|
+
1. Would you like to generate HANDOFF.md? [Y/n]
|
|
23
|
+
2. Or transition directly with /next
|
|
24
24
|
|
|
25
25
|
{{else}}
|
|
26
|
-
⚠️
|
|
26
|
+
⚠️ Some criteria are not met.
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
Required actions:
|
|
29
29
|
{{REQUIRED_ACTIONS}}
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
Force transition: /next --force (not recommended)
|
|
32
32
|
{{/if}}
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
##
|
|
35
|
+
## Transition Guidance Prompt
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
When transitioning to next stage:
|
|
38
38
|
|
|
39
39
|
```
|
|
40
40
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
41
|
-
🔄
|
|
41
|
+
🔄 Stage Transition Complete
|
|
42
42
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
43
43
|
|
|
44
44
|
{{PREV_STAGE}} ✅ → {{NEXT_STAGE}} 🔄
|
|
45
45
|
|
|
46
|
-
[{{NEXT_STAGE}}
|
|
47
|
-
• AI
|
|
48
|
-
•
|
|
49
|
-
•
|
|
46
|
+
[{{NEXT_STAGE}} Stage Information]
|
|
47
|
+
• AI Model: {{AI_MODEL}}
|
|
48
|
+
• Execution Mode: {{MODE}}
|
|
49
|
+
• Estimated Time: {{ESTIMATED_TIME}}
|
|
50
50
|
|
|
51
|
-
[
|
|
51
|
+
[Input Files]
|
|
52
52
|
{{INPUT_FILES}}
|
|
53
53
|
|
|
54
|
-
[
|
|
54
|
+
[Main Tasks]
|
|
55
55
|
{{MAIN_TASKS}}
|
|
56
56
|
|
|
57
57
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
58
|
-
|
|
58
|
+
Start command: /{{SHORTCUT}} or /run-stage {{STAGE_NUM}}
|
|
59
59
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
-
##
|
|
62
|
+
## Stage-Specific Transition Messages
|
|
63
63
|
|
|
64
64
|
### 01 → 02 (brainstorm → research)
|
|
65
65
|
|
|
66
66
|
```
|
|
67
|
-
🧠
|
|
67
|
+
🧠 Brainstorming complete!
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
Ideas have been organized. Now entering research phase.
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
• ideas.md
|
|
73
|
-
•
|
|
74
|
-
•
|
|
71
|
+
Next tasks:
|
|
72
|
+
• Technical research based on ideas.md
|
|
73
|
+
• Competitor analysis
|
|
74
|
+
• Gather latest info with MCP tools
|
|
75
75
|
|
|
76
|
-
|
|
76
|
+
Start: /research
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
### 05 → 06 (task-management → implementation)
|
|
80
80
|
|
|
81
81
|
```
|
|
82
|
-
📋
|
|
82
|
+
📋 Task breakdown complete!
|
|
83
83
|
|
|
84
|
-
{{TASK_COUNT}}
|
|
84
|
+
{{TASK_COUNT}} tasks planned across {{SPRINT_COUNT}} sprints.
|
|
85
85
|
|
|
86
|
-
⚠️
|
|
87
|
-
|
|
86
|
+
⚠️ Important: 06-implementation is a checkpoint-required stage.
|
|
87
|
+
Run /checkpoint at major milestones.
|
|
88
88
|
|
|
89
|
-
|
|
90
|
-
•
|
|
91
|
-
•
|
|
92
|
-
•
|
|
89
|
+
Next tasks:
|
|
90
|
+
• Implement starting from Sprint 1 tasks
|
|
91
|
+
• Write unit tests alongside
|
|
92
|
+
• Checkpoint at each milestone
|
|
93
93
|
|
|
94
|
-
|
|
94
|
+
Start: /implement
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
### 09 → 10 (testing → deployment)
|
|
98
98
|
|
|
99
99
|
```
|
|
100
|
-
✅
|
|
100
|
+
✅ Testing complete!
|
|
101
101
|
|
|
102
|
-
|
|
103
|
-
•
|
|
104
|
-
• E2E
|
|
105
|
-
•
|
|
102
|
+
Test results:
|
|
103
|
+
• Unit tests: {{UNIT_PASS}}/{{UNIT_TOTAL}} passed
|
|
104
|
+
• E2E tests: {{E2E_PASS}}/{{E2E_TOTAL}} passed
|
|
105
|
+
• Coverage: {{COVERAGE}}%
|
|
106
106
|
|
|
107
|
-
🚀
|
|
107
|
+
🚀 Final stage!
|
|
108
108
|
|
|
109
|
-
|
|
110
|
-
• CI/CD
|
|
111
|
-
•
|
|
112
|
-
•
|
|
109
|
+
Next tasks:
|
|
110
|
+
• CI/CD pipeline setup
|
|
111
|
+
• Environment-specific deployment config
|
|
112
|
+
• Monitoring setup
|
|
113
113
|
|
|
114
|
-
|
|
114
|
+
Start: /deploy
|
|
115
115
|
```
|
|
116
116
|
|
|
117
|
-
##
|
|
117
|
+
## Completion Celebration Prompt
|
|
118
118
|
|
|
119
119
|
```
|
|
120
|
-
🎉
|
|
120
|
+
🎉 Pipeline Complete!
|
|
121
121
|
|
|
122
122
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
123
|
+
Project: {{PROJECT_NAME}}
|
|
124
|
+
Total Duration: {{DURATION}}
|
|
125
|
+
Checkpoints: {{CHECKPOINT_COUNT}}
|
|
126
126
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
127
127
|
|
|
128
|
-
[
|
|
129
|
-
01 ✅ brainstorm -
|
|
130
|
-
02 ✅ research -
|
|
131
|
-
03 ✅ planning - PRD
|
|
132
|
-
04 ✅ ui-ux -
|
|
133
|
-
05 ✅ task-mgmt -
|
|
134
|
-
06 ✅ implementation -
|
|
135
|
-
07 ✅ refactoring -
|
|
136
|
-
08 ✅ qa -
|
|
137
|
-
09 ✅ testing -
|
|
138
|
-
10 ✅ deployment -
|
|
139
|
-
|
|
140
|
-
[
|
|
141
|
-
• state/handoffs/ -
|
|
142
|
-
• state/checkpoints/ -
|
|
143
|
-
|
|
144
|
-
|
|
128
|
+
[Stage Summary]
|
|
129
|
+
01 ✅ brainstorm - Idea development
|
|
130
|
+
02 ✅ research - Technical research
|
|
131
|
+
03 ✅ planning - PRD creation
|
|
132
|
+
04 ✅ ui-ux - Design
|
|
133
|
+
05 ✅ task-mgmt - Task breakdown
|
|
134
|
+
06 ✅ implementation - Implementation
|
|
135
|
+
07 ✅ refactoring - Refactoring
|
|
136
|
+
08 ✅ qa - Quality verification
|
|
137
|
+
09 ✅ testing - Testing
|
|
138
|
+
10 ✅ deployment - Deployment
|
|
139
|
+
|
|
140
|
+
[Documents]
|
|
141
|
+
• state/handoffs/ - All handoff documents
|
|
142
|
+
• state/checkpoints/ - Checkpoints
|
|
143
|
+
|
|
144
|
+
Great work! 🎊
|
|
145
145
|
```
|
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
# Stage Validation Logic
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Validates completion criteria for current stage.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Validation Process
|
|
6
6
|
|
|
7
|
-
### 1.
|
|
7
|
+
### 1. Identify Current Stage
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
# progress.json
|
|
10
|
+
# Check current stage from progress.json
|
|
11
11
|
CURRENT_STAGE=$(jq -r '.current_stage' state/progress.json)
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
### 2.
|
|
14
|
+
### 2. Load Completion Criteria
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
Required outputs per stage:
|
|
17
17
|
|
|
18
|
-
|
|
|
19
|
-
|
|
18
|
+
| Stage | Required Files | Checkpoint |
|
|
19
|
+
|-------|---------------|------------|
|
|
20
20
|
| 01-brainstorm | ideas.md, decisions.md | - |
|
|
21
21
|
| 02-research | research.md, tech-stack.md | - |
|
|
22
22
|
| 03-planning | PRD.md, architecture.md | - |
|
|
23
23
|
| 04-ui-ux | wireframes/, component-spec.md | - |
|
|
24
24
|
| 05-task-management | tasks.json, sprints.md | - |
|
|
25
|
-
| 06-implementation | src/, tests/ | ✅
|
|
26
|
-
| 07-refactoring | src/ (
|
|
25
|
+
| 06-implementation | src/, tests/ | ✅ Required |
|
|
26
|
+
| 07-refactoring | src/ (modified) | ✅ Required |
|
|
27
27
|
| 08-qa | qa-report.md | - |
|
|
28
28
|
| 09-testing | test-results.md | - |
|
|
29
|
-
| 10-deployment | CI/CD
|
|
29
|
+
| 10-deployment | CI/CD files | - |
|
|
30
30
|
|
|
31
|
-
### 3.
|
|
31
|
+
### 3. File Existence Check
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
34
|
STAGE_DIR="stages/$CURRENT_STAGE/outputs"
|
|
35
35
|
|
|
36
|
-
#
|
|
36
|
+
# Check required files
|
|
37
37
|
check_required_files() {
|
|
38
38
|
local files=("$@")
|
|
39
39
|
local missing=()
|
|
@@ -48,61 +48,61 @@ check_required_files() {
|
|
|
48
48
|
}
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
### 4.
|
|
51
|
+
### 4. Checkpoint Check (When Applicable)
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
# 06, 07
|
|
54
|
+
# Stages 06, 07 require checkpoint
|
|
55
55
|
if [[ "$CURRENT_STAGE" == "06-"* ]] || [[ "$CURRENT_STAGE" == "07-"* ]]; then
|
|
56
56
|
STAGE_NUM=$(echo "$CURRENT_STAGE" | cut -d'-' -f1)
|
|
57
57
|
CP_EXISTS=$(ls -d state/checkpoints/CP-$STAGE_NUM-* 2>/dev/null | head -1)
|
|
58
58
|
|
|
59
59
|
if [ -z "$CP_EXISTS" ]; then
|
|
60
|
-
echo "⚠️
|
|
60
|
+
echo "⚠️ Checkpoint required: Run /checkpoint"
|
|
61
61
|
fi
|
|
62
62
|
fi
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
##
|
|
65
|
+
## Validation Result Format
|
|
66
66
|
|
|
67
|
-
###
|
|
67
|
+
### Success
|
|
68
68
|
|
|
69
69
|
```
|
|
70
|
-
✅
|
|
70
|
+
✅ Stage completion criteria met
|
|
71
71
|
|
|
72
72
|
[04-ui-ux]
|
|
73
|
-
✓ wireframes/
|
|
74
|
-
✓ component-spec.md
|
|
75
|
-
✓ design-system.md
|
|
73
|
+
✓ wireframes/ exists (3 files)
|
|
74
|
+
✓ component-spec.md generated
|
|
75
|
+
✓ design-system.md generated
|
|
76
76
|
|
|
77
|
-
|
|
77
|
+
Next step: /next or /tasks
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
###
|
|
80
|
+
### Failure
|
|
81
81
|
|
|
82
82
|
```
|
|
83
|
-
⚠️
|
|
83
|
+
⚠️ Stage completion criteria not met
|
|
84
84
|
|
|
85
85
|
[06-implementation]
|
|
86
|
-
✓ src/
|
|
87
|
-
✓ tests/
|
|
88
|
-
✗
|
|
86
|
+
✓ src/ exists
|
|
87
|
+
✓ tests/ exists
|
|
88
|
+
✗ No checkpoint
|
|
89
89
|
|
|
90
|
-
|
|
91
|
-
1. /checkpoint "
|
|
92
|
-
2. /next
|
|
90
|
+
Required actions:
|
|
91
|
+
1. Run /checkpoint "implementation complete"
|
|
92
|
+
2. Transition with /next
|
|
93
93
|
```
|
|
94
94
|
|
|
95
|
-
##
|
|
95
|
+
## Auto Actions
|
|
96
96
|
|
|
97
|
-
|
|
97
|
+
Auto-suggestions based on validation results:
|
|
98
98
|
|
|
99
|
-
1.
|
|
100
|
-
→ HANDOFF.md
|
|
101
|
-
→ `/next`
|
|
99
|
+
1. **All criteria met**
|
|
100
|
+
→ Suggest HANDOFF.md generation
|
|
101
|
+
→ Guide `/next` command
|
|
102
102
|
|
|
103
|
-
2.
|
|
104
|
-
→
|
|
105
|
-
→
|
|
103
|
+
2. **Some criteria not met**
|
|
104
|
+
→ Guide missing items
|
|
105
|
+
→ Suggest resolution methods
|
|
106
106
|
|
|
107
|
-
3.
|
|
108
|
-
→ `/checkpoint`
|
|
107
|
+
3. **Checkpoint needed**
|
|
108
|
+
→ Guide `/checkpoint` command
|