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,82 +1,82 @@
|
|
|
1
1
|
# /implement
|
|
2
2
|
|
|
3
|
-
06-implementation
|
|
3
|
+
Start the 06-implementation stage directly.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Usage
|
|
6
6
|
```
|
|
7
7
|
/implement [task-id]
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Stage Information
|
|
11
11
|
|
|
12
|
-
|
|
|
13
|
-
|
|
14
|
-
|
|
|
15
|
-
| AI
|
|
16
|
-
|
|
|
17
|
-
|
|
|
18
|
-
|
|
|
12
|
+
| Item | Value |
|
|
13
|
+
|------|-------|
|
|
14
|
+
| Stage | 06-implementation |
|
|
15
|
+
| AI Model | ClaudeCode |
|
|
16
|
+
| Execution Mode | Plan Mode + Sandbox |
|
|
17
|
+
| Checkpoint | **Required** |
|
|
18
|
+
| Timeout | 240 minutes (longest) |
|
|
19
19
|
|
|
20
|
-
##
|
|
20
|
+
## Actions
|
|
21
21
|
|
|
22
|
-
1.
|
|
23
|
-
- 05-task-management
|
|
24
|
-
- tasks.json
|
|
22
|
+
1. **Prerequisite Check**
|
|
23
|
+
- 05-task-management completion status
|
|
24
|
+
- tasks.json exists
|
|
25
25
|
|
|
26
|
-
2.
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
26
|
+
2. **Execute Implementation**
|
|
27
|
+
- Implementation by task
|
|
28
|
+
- Unit test writing
|
|
29
|
+
- Code quality verification
|
|
30
30
|
|
|
31
|
-
3.
|
|
32
|
-
- src/ -
|
|
33
|
-
- tests/ -
|
|
31
|
+
3. **Output Generation**
|
|
32
|
+
- src/ - Source code
|
|
33
|
+
- tests/ - Unit tests
|
|
34
34
|
- implementation-notes.md
|
|
35
35
|
|
|
36
|
-
##
|
|
36
|
+
## Execution
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
scripts/run-stage.sh 06-implementation "$ARGUMENTS"
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
##
|
|
42
|
+
## Input Files
|
|
43
43
|
|
|
44
44
|
- `stages/05-task-management/outputs/tasks.json`
|
|
45
45
|
- `stages/05-task-management/outputs/sprints.md`
|
|
46
46
|
- `stages/04-ui-ux/outputs/wireframes/`
|
|
47
47
|
|
|
48
|
-
##
|
|
48
|
+
## Output Files
|
|
49
49
|
|
|
50
50
|
- `stages/06-implementation/outputs/src/`
|
|
51
51
|
- `stages/06-implementation/outputs/tests/`
|
|
52
52
|
- `stages/06-implementation/outputs/implementation-notes.md`
|
|
53
53
|
|
|
54
|
-
##
|
|
54
|
+
## Checkpoint Required!
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
This stage **requires checkpoints**:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
#
|
|
60
|
-
/checkpoint "
|
|
59
|
+
# Execute at major milestones
|
|
60
|
+
/checkpoint "Sprint 1 completed"
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
##
|
|
63
|
+
## Completion Criteria
|
|
64
64
|
|
|
65
|
-
- [ ]
|
|
66
|
-
- [ ]
|
|
67
|
-
- [ ]
|
|
68
|
-
- [ ]
|
|
65
|
+
- [ ] All tasks implemented
|
|
66
|
+
- [ ] Unit tests passed
|
|
67
|
+
- [ ] Lint/type check passed
|
|
68
|
+
- [ ] Checkpoint created
|
|
69
69
|
|
|
70
|
-
##
|
|
70
|
+
## Related Commands
|
|
71
71
|
|
|
72
|
-
- `/run-stage 06` -
|
|
73
|
-
- `/next` -
|
|
74
|
-
- `/tasks` -
|
|
75
|
-
- `/checkpoint` -
|
|
76
|
-
- `/restore` -
|
|
72
|
+
- `/run-stage 06` - Start after prerequisite check
|
|
73
|
+
- `/next` - Next stage (07-refactoring)
|
|
74
|
+
- `/tasks` - Previous stage
|
|
75
|
+
- `/checkpoint` - Create checkpoint
|
|
76
|
+
- `/restore` - Restore checkpoint
|
|
77
77
|
|
|
78
78
|
## Tips
|
|
79
79
|
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
- implementation-notes.md
|
|
80
|
+
- Create checkpoints by sprint
|
|
81
|
+
- Implement with tests
|
|
82
|
+
- Record decisions in implementation-notes.md
|
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
# /init-project
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Initialize a new project with the claude-symphony workflow.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Usage
|
|
6
6
|
```
|
|
7
7
|
/init-project [project-name]
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Actions
|
|
11
11
|
|
|
12
|
-
1.
|
|
13
|
-
- `projects/[project-name]/`
|
|
14
|
-
-
|
|
12
|
+
1. **Create Project Directory**
|
|
13
|
+
- Create `projects/[project-name]/`
|
|
14
|
+
- Create stage-specific working directories
|
|
15
15
|
|
|
16
|
-
2.
|
|
17
|
-
- `state/progress.json`
|
|
18
|
-
-
|
|
16
|
+
2. **Initialize State Files**
|
|
17
|
+
- Update `state/progress.json` with project info
|
|
18
|
+
- Record timestamp
|
|
19
19
|
|
|
20
|
-
3.
|
|
21
|
-
- `stages/01-brainstorm/inputs/project_brief.md`
|
|
20
|
+
3. **Prepare Input Files**
|
|
21
|
+
- Create `stages/01-brainstorm/inputs/project_brief.md` template
|
|
22
22
|
|
|
23
|
-
4.
|
|
24
|
-
- 01-brainstorm
|
|
23
|
+
4. **First Stage Guidance**
|
|
24
|
+
- Guide to 01-brainstorm stage CLAUDE.md
|
|
25
25
|
|
|
26
|
-
##
|
|
26
|
+
## Execution Script
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
29
|
scripts/init-project.sh "$ARGUMENTS"
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
##
|
|
32
|
+
## Example
|
|
33
33
|
|
|
34
34
|
```
|
|
35
35
|
/init-project my-saas-app
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
✓
|
|
39
|
-
✓
|
|
40
|
-
✓
|
|
37
|
+
Output:
|
|
38
|
+
✓ Project 'my-saas-app' initialization complete
|
|
39
|
+
✓ Working directory: projects/my-saas-app/
|
|
40
|
+
✓ State files updated
|
|
41
41
|
|
|
42
|
-
|
|
43
|
-
1. stages/01-brainstorm/inputs/project_brief.md
|
|
44
|
-
2. /run-stage 01-brainstorm
|
|
42
|
+
Next steps:
|
|
43
|
+
1. Write stages/01-brainstorm/inputs/project_brief.md
|
|
44
|
+
2. Run /run-stage 01-brainstorm
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
##
|
|
48
|
-
-
|
|
49
|
-
-
|
|
47
|
+
## Cautions
|
|
48
|
+
- Project name allows only lowercase letters, numbers, and hyphens
|
|
49
|
+
- Cannot overwrite existing projects
|
|
@@ -1,125 +1,125 @@
|
|
|
1
1
|
# /next
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Complete the current stage and transition to the next stage.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Usage
|
|
6
6
|
```
|
|
7
7
|
/next
|
|
8
|
-
/next --force #
|
|
9
|
-
/next --preview #
|
|
8
|
+
/next --force # Skip condition verification
|
|
9
|
+
/next --preview # Preview transition
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
-
##
|
|
12
|
+
## Actions
|
|
13
13
|
|
|
14
|
-
1.
|
|
15
|
-
- outputs
|
|
16
|
-
-
|
|
17
|
-
- config.yaml
|
|
14
|
+
1. **Verify Current Stage Completion Criteria**
|
|
15
|
+
- Check outputs files exist
|
|
16
|
+
- Check required checkpoints (if applicable)
|
|
17
|
+
- Verify completion_criteria in config.yaml
|
|
18
18
|
|
|
19
|
-
2. **HANDOFF.md
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
19
|
+
2. **Auto-Generate HANDOFF.md**
|
|
20
|
+
- Completed work summary
|
|
21
|
+
- Key decisions
|
|
22
|
+
- Next step guidance
|
|
23
23
|
|
|
24
|
-
3.
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
- progress.json
|
|
24
|
+
3. **Update State**
|
|
25
|
+
- Current stage: `completed`
|
|
26
|
+
- Next stage: `in_progress`
|
|
27
|
+
- Update progress.json
|
|
28
28
|
|
|
29
|
-
4.
|
|
30
|
-
-
|
|
31
|
-
-
|
|
29
|
+
4. **Start Next Stage**
|
|
30
|
+
- Load next stage CLAUDE.md
|
|
31
|
+
- Check input files
|
|
32
32
|
|
|
33
|
-
##
|
|
33
|
+
## Execution Script
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
scripts/next-stage.sh "$ARGUMENTS"
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
-
##
|
|
39
|
+
## Output Examples
|
|
40
40
|
|
|
41
|
-
###
|
|
41
|
+
### Successful Transition
|
|
42
42
|
```
|
|
43
43
|
/next
|
|
44
44
|
|
|
45
45
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
46
|
-
🔄
|
|
46
|
+
🔄 Stage Transition
|
|
47
47
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
48
|
-
|
|
48
|
+
Current: 04-ui-ux → Next: 05-task-management
|
|
49
49
|
|
|
50
|
-
[
|
|
51
|
-
✓ wireframes/
|
|
52
|
-
✓ component-spec.md
|
|
53
|
-
✓ design-system.md
|
|
50
|
+
[Completion Criteria Verification]
|
|
51
|
+
✓ wireframes/ directory exists
|
|
52
|
+
✓ component-spec.md generated
|
|
53
|
+
✓ design-system.md generated
|
|
54
54
|
|
|
55
|
-
[HANDOFF.md
|
|
56
|
-
✓ stages/04-ui-ux/HANDOFF.md
|
|
55
|
+
[HANDOFF.md Generation]
|
|
56
|
+
✓ stages/04-ui-ux/HANDOFF.md created
|
|
57
57
|
|
|
58
|
-
[
|
|
58
|
+
[State Update]
|
|
59
59
|
✓ 04-ui-ux: completed
|
|
60
60
|
✓ 05-task-management: in_progress
|
|
61
|
-
✓ progress.json
|
|
61
|
+
✓ progress.json updated
|
|
62
62
|
|
|
63
63
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
64
|
-
✅ 05-task-management
|
|
64
|
+
✅ 05-task-management stage started!
|
|
65
65
|
|
|
66
|
-
|
|
67
|
-
1. stages/05-task-management/CLAUDE.md
|
|
68
|
-
2.
|
|
69
|
-
3.
|
|
66
|
+
Next tasks:
|
|
67
|
+
1. Reference stages/05-task-management/CLAUDE.md
|
|
68
|
+
2. Start task breakdown based on PRD.md
|
|
69
|
+
3. Can start directly with /tasks command
|
|
70
70
|
|
|
71
71
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
###
|
|
74
|
+
### Criteria Not Met
|
|
75
75
|
```
|
|
76
76
|
/next
|
|
77
77
|
|
|
78
78
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
79
|
-
⚠️
|
|
79
|
+
⚠️ Stage Transition Not Possible
|
|
80
80
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
81
|
-
|
|
81
|
+
Current: 06-implementation
|
|
82
82
|
|
|
83
|
-
[
|
|
84
|
-
✓ src/
|
|
85
|
-
✓
|
|
86
|
-
✗
|
|
87
|
-
✗ tests/
|
|
83
|
+
[Completion Criteria Verification]
|
|
84
|
+
✓ src/ directory exists
|
|
85
|
+
✓ Implementation files generated
|
|
86
|
+
✗ Checkpoint required (not created)
|
|
87
|
+
✗ tests/ pass confirmation needed
|
|
88
88
|
|
|
89
|
-
|
|
90
|
-
1. /checkpoint
|
|
91
|
-
2.
|
|
92
|
-
3. /next --force
|
|
89
|
+
Next steps:
|
|
90
|
+
1. Run /checkpoint
|
|
91
|
+
2. Run tests and verify results
|
|
92
|
+
3. Force transition with /next --force (not recommended)
|
|
93
93
|
|
|
94
94
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
##
|
|
97
|
+
## Options
|
|
98
98
|
|
|
99
|
-
|
|
|
100
|
-
|
|
101
|
-
| `--force` |
|
|
102
|
-
| `--preview` |
|
|
103
|
-
| `--no-handoff` | HANDOFF.md
|
|
99
|
+
| Option | Description |
|
|
100
|
+
|--------|-------------|
|
|
101
|
+
| `--force` | Skip completion criteria verification (not recommended) |
|
|
102
|
+
| `--preview` | Preview only (no actual transition) |
|
|
103
|
+
| `--no-handoff` | Skip HANDOFF.md generation |
|
|
104
104
|
|
|
105
|
-
##
|
|
105
|
+
## Completion Criteria (By Stage)
|
|
106
106
|
|
|
107
|
-
|
|
|
108
|
-
|
|
107
|
+
| Stage | Required Outputs | Checkpoint |
|
|
108
|
+
|-------|------------------|------------|
|
|
109
109
|
| 01-brainstorm | ideas.md, decisions.md | - |
|
|
110
110
|
| 02-research | research.md, tech-stack.md | - |
|
|
111
111
|
| 03-planning | PRD.md, architecture.md | - |
|
|
112
112
|
| 04-ui-ux | wireframes/, components.md | - |
|
|
113
113
|
| 05-task-mgmt | tasks.json, sprints.md | - |
|
|
114
|
-
| 06-implementation | src/, tests/ | ✅
|
|
115
|
-
| 07-refactoring | (
|
|
114
|
+
| 06-implementation | src/, tests/ | ✅ Required |
|
|
115
|
+
| 07-refactoring | (modified src/) | ✅ Required |
|
|
116
116
|
| 08-qa | qa-report.md | - |
|
|
117
117
|
| 09-testing | test-results.md | - |
|
|
118
|
-
| 10-deployment | CI/CD
|
|
118
|
+
| 10-deployment | CI/CD complete | - |
|
|
119
119
|
|
|
120
|
-
##
|
|
120
|
+
## Related Commands
|
|
121
121
|
|
|
122
|
-
- `/status` -
|
|
123
|
-
- `/handoff` - HANDOFF.md
|
|
124
|
-
- `/checkpoint` -
|
|
125
|
-
- `/run-stage [id]` -
|
|
122
|
+
- `/status` - Check current status
|
|
123
|
+
- `/handoff` - Generate HANDOFF.md only
|
|
124
|
+
- `/checkpoint` - Create checkpoint
|
|
125
|
+
- `/run-stage [id]` - Move to specific stage
|
|
@@ -1,69 +1,69 @@
|
|
|
1
1
|
# /planning
|
|
2
2
|
|
|
3
|
-
03-planning
|
|
3
|
+
Start the 03-planning stage directly.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Usage
|
|
6
6
|
```
|
|
7
7
|
/planning
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Stage Information
|
|
11
11
|
|
|
12
|
-
|
|
|
13
|
-
|
|
14
|
-
|
|
|
15
|
-
| AI
|
|
16
|
-
|
|
|
17
|
-
|
|
|
12
|
+
| Item | Value |
|
|
13
|
+
|------|-------|
|
|
14
|
+
| Stage | 03-planning |
|
|
15
|
+
| AI Model | Gemini |
|
|
16
|
+
| Execution Mode | Plan Mode |
|
|
17
|
+
| Checkpoint | Optional |
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## Actions
|
|
20
20
|
|
|
21
|
-
1.
|
|
22
|
-
- 02-research
|
|
23
|
-
- research.md, tech-stack.md
|
|
21
|
+
1. **Prerequisite Check**
|
|
22
|
+
- 02-research completion status
|
|
23
|
+
- research.md, tech-stack.md exist
|
|
24
24
|
|
|
25
|
-
2.
|
|
26
|
-
- PRD (Product Requirements Document)
|
|
27
|
-
-
|
|
28
|
-
-
|
|
25
|
+
2. **Execute Planning**
|
|
26
|
+
- PRD (Product Requirements Document) writing
|
|
27
|
+
- Architecture design
|
|
28
|
+
- Technical specification
|
|
29
29
|
|
|
30
|
-
3.
|
|
31
|
-
- PRD.md -
|
|
32
|
-
- architecture.md -
|
|
30
|
+
3. **Output Generation**
|
|
31
|
+
- PRD.md - Product Requirements Document
|
|
32
|
+
- architecture.md - Architecture design
|
|
33
33
|
|
|
34
|
-
##
|
|
34
|
+
## Execution
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
37
|
scripts/run-stage.sh 03-planning "$ARGUMENTS"
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
##
|
|
40
|
+
## Input Files
|
|
41
41
|
|
|
42
42
|
- `stages/02-research/outputs/research.md`
|
|
43
43
|
- `stages/02-research/outputs/tech-stack.md`
|
|
44
44
|
|
|
45
|
-
##
|
|
45
|
+
## Output Files
|
|
46
46
|
|
|
47
47
|
- `stages/03-planning/outputs/PRD.md`
|
|
48
48
|
- `stages/03-planning/outputs/architecture.md`
|
|
49
49
|
|
|
50
|
-
##
|
|
50
|
+
## Related Commands
|
|
51
51
|
|
|
52
|
-
- `/run-stage 03` -
|
|
53
|
-
- `/next` -
|
|
54
|
-
- `/research` -
|
|
55
|
-
- `/gemini` - Gemini CLI
|
|
52
|
+
- `/run-stage 03` - Start after prerequisite check
|
|
53
|
+
- `/next` - Next stage (04-ui-ux)
|
|
54
|
+
- `/research` - Previous stage
|
|
55
|
+
- `/gemini` - Direct Gemini CLI call
|
|
56
56
|
|
|
57
|
-
## PRD
|
|
57
|
+
## PRD Structure
|
|
58
58
|
|
|
59
59
|
```markdown
|
|
60
|
-
# PRD: [
|
|
61
|
-
|
|
62
|
-
##
|
|
63
|
-
##
|
|
64
|
-
##
|
|
65
|
-
##
|
|
66
|
-
##
|
|
67
|
-
##
|
|
68
|
-
##
|
|
60
|
+
# PRD: [Project Name]
|
|
61
|
+
|
|
62
|
+
## Overview
|
|
63
|
+
## Goals
|
|
64
|
+
## Functional Requirements
|
|
65
|
+
## Non-Functional Requirements
|
|
66
|
+
## Tech Stack
|
|
67
|
+
## Timeline
|
|
68
|
+
## Risk Factors
|
|
69
69
|
```
|
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
# /qa
|
|
2
2
|
|
|
3
|
-
08-qa
|
|
3
|
+
Start the 08-qa stage directly.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Usage
|
|
6
6
|
```
|
|
7
7
|
/qa [focus-area]
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## Stage Information
|
|
11
11
|
|
|
12
|
-
|
|
|
13
|
-
|
|
14
|
-
|
|
|
15
|
-
| AI
|
|
16
|
-
|
|
|
17
|
-
|
|
|
12
|
+
| Item | Value |
|
|
13
|
+
|------|-------|
|
|
14
|
+
| Stage | 08-qa |
|
|
15
|
+
| AI Model | ClaudeCode |
|
|
16
|
+
| Execution Mode | Plan Mode + Sandbox |
|
|
17
|
+
| Checkpoint | Optional |
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## Actions
|
|
20
20
|
|
|
21
|
-
1.
|
|
22
|
-
- 07-refactoring
|
|
23
|
-
- src/, tests/
|
|
21
|
+
1. **Prerequisite Check**
|
|
22
|
+
- 07-refactoring completion status
|
|
23
|
+
- src/, tests/ exist
|
|
24
24
|
|
|
25
|
-
2. **QA
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
25
|
+
2. **Execute QA**
|
|
26
|
+
- Code quality inspection
|
|
27
|
+
- Security vulnerability scan
|
|
28
|
+
- Performance analysis
|
|
29
29
|
|
|
30
|
-
3.
|
|
31
|
-
- qa-report.md - QA
|
|
32
|
-
- issues.json -
|
|
30
|
+
3. **Output Generation**
|
|
31
|
+
- qa-report.md - QA report
|
|
32
|
+
- issues.json - Discovered issues
|
|
33
33
|
|
|
34
|
-
##
|
|
34
|
+
## Execution
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
37
|
scripts/run-stage.sh 08-qa "$ARGUMENTS"
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
##
|
|
40
|
+
## Input Files
|
|
41
41
|
|
|
42
42
|
- `stages/06-implementation/outputs/src/`
|
|
43
43
|
- `stages/07-refactoring/outputs/refactoring-report.md`
|
|
44
44
|
|
|
45
|
-
##
|
|
45
|
+
## Output Files
|
|
46
46
|
|
|
47
47
|
- `stages/08-qa/outputs/qa-report.md`
|
|
48
48
|
- `stages/08-qa/outputs/issues.json`
|
|
49
49
|
- `stages/08-qa/outputs/security-audit.md`
|
|
50
50
|
|
|
51
|
-
## QA
|
|
51
|
+
## QA Checklist
|
|
52
52
|
|
|
53
|
-
###
|
|
54
|
-
- [ ]
|
|
55
|
-
- [ ]
|
|
56
|
-
- [ ]
|
|
57
|
-
- [ ]
|
|
53
|
+
### Code Quality
|
|
54
|
+
- [ ] Lint rules passed
|
|
55
|
+
- [ ] Type check passed
|
|
56
|
+
- [ ] Code complexity inspection
|
|
57
|
+
- [ ] Test coverage verification
|
|
58
58
|
|
|
59
|
-
###
|
|
60
|
-
- [ ]
|
|
61
|
-
- [ ]
|
|
62
|
-
- [ ] OWASP Top 10
|
|
59
|
+
### Security
|
|
60
|
+
- [ ] Dependency vulnerability scan
|
|
61
|
+
- [ ] Hardcoded secrets inspection
|
|
62
|
+
- [ ] OWASP Top 10 review
|
|
63
63
|
|
|
64
|
-
###
|
|
65
|
-
- [ ]
|
|
66
|
-
- [ ]
|
|
67
|
-
- [ ]
|
|
64
|
+
### Performance
|
|
65
|
+
- [ ] Bundle size analysis
|
|
66
|
+
- [ ] Rendering performance
|
|
67
|
+
- [ ] Memory usage
|
|
68
68
|
|
|
69
|
-
##
|
|
69
|
+
## Related Commands
|
|
70
70
|
|
|
71
|
-
- `/run-stage 08` -
|
|
72
|
-
- `/next` -
|
|
73
|
-
- `/refactor` -
|
|
74
|
-
- `/test` -
|
|
71
|
+
- `/run-stage 08` - Start after prerequisite check
|
|
72
|
+
- `/next` - Next stage (09-testing)
|
|
73
|
+
- `/refactor` - Previous stage
|
|
74
|
+
- `/test` - Start testing directly
|
|
75
75
|
|
|
76
|
-
## QA
|
|
76
|
+
## QA Tools
|
|
77
77
|
|
|
78
|
-
- ESLint/Prettier -
|
|
79
|
-
- TypeScript -
|
|
80
|
-
- npm audit -
|
|
81
|
-
- Coverage -
|
|
78
|
+
- ESLint/Prettier - Code style
|
|
79
|
+
- TypeScript - Type checking
|
|
80
|
+
- npm audit - Security scan
|
|
81
|
+
- Coverage - Test coverage
|