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,57 +1,57 @@
|
|
|
1
|
-
# AI
|
|
1
|
+
# AI Collaboration Prompt - Planning
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Collaboration Mode: Debate
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This stage uses **debate mode** to determine the optimal architecture and technology stack.
|
|
6
6
|
|
|
7
|
-
###
|
|
8
|
-
- **Gemini**:
|
|
9
|
-
- **Claude**:
|
|
7
|
+
### Participating Models
|
|
8
|
+
- **Gemini**: Architecture design, diagram generation
|
|
9
|
+
- **Claude**: Technical validation, feasibility assessment
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Collaboration Prompt
|
|
12
12
|
|
|
13
13
|
```
|
|
14
|
-
/collaborate --mode debate --topic "
|
|
14
|
+
/collaborate --mode debate --topic "system architecture decision" --rounds 3
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
###
|
|
17
|
+
### Debate Topics
|
|
18
18
|
|
|
19
|
-
1.
|
|
20
|
-
2.
|
|
21
|
-
3.
|
|
19
|
+
1. **Architecture Pattern**: Monolith vs Microservices vs Modular Monolith
|
|
20
|
+
2. **Technology Stack**: Framework and library selection
|
|
21
|
+
3. **Database**: SQL vs NoSQL vs Hybrid
|
|
22
22
|
|
|
23
|
-
###
|
|
23
|
+
### Debate Format
|
|
24
24
|
|
|
25
|
-
|
|
|
26
|
-
|
|
27
|
-
| 1 |
|
|
28
|
-
| 2 |
|
|
29
|
-
| 3 |
|
|
25
|
+
| Round | Gemini | Claude |
|
|
26
|
+
|-------|--------|--------|
|
|
27
|
+
| 1 | Proposal | Counterargument/Alternative |
|
|
28
|
+
| 2 | Refinement | Validation/Evaluation |
|
|
29
|
+
| 3 | Final proposal | Consensus/Confirmation |
|
|
30
30
|
|
|
31
|
-
###
|
|
31
|
+
### Pipeline Fork Trigger
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
If 2 or more architecture alternatives are valid:
|
|
34
34
|
```
|
|
35
|
-
/fork create --reason "
|
|
36
|
-
/fork create --reason "
|
|
35
|
+
/fork create --reason "architecture alternative exploration" --direction "monolith"
|
|
36
|
+
/fork create --reason "architecture alternative exploration" --direction "microservices"
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
-
###
|
|
39
|
+
### Output Format
|
|
40
40
|
|
|
41
41
|
```markdown
|
|
42
|
-
## AI
|
|
42
|
+
## AI Debate Results
|
|
43
43
|
|
|
44
|
-
###
|
|
44
|
+
### Topic: [Architecture Decision]
|
|
45
45
|
|
|
46
|
-
###
|
|
47
|
-
- **Gemini**: [
|
|
48
|
-
- **Claude**: [
|
|
46
|
+
### Round 1
|
|
47
|
+
- **Gemini**: [Proposal]
|
|
48
|
+
- **Claude**: [Counterargument/Alternative]
|
|
49
49
|
|
|
50
|
-
###
|
|
51
|
-
- **Gemini**: [
|
|
52
|
-
- **Claude**: [
|
|
50
|
+
### Round 2
|
|
51
|
+
- **Gemini**: [Refinement]
|
|
52
|
+
- **Claude**: [Validation]
|
|
53
53
|
|
|
54
|
-
###
|
|
55
|
-
- [
|
|
56
|
-
- [
|
|
54
|
+
### Final Conclusion
|
|
55
|
+
- [Agreed architecture]
|
|
56
|
+
- [Rationale]
|
|
57
57
|
```
|
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Output Validation Prompt - Planning
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Validation Targets
|
|
4
4
|
|
|
5
|
-
|
|
|
6
|
-
|
|
7
|
-
| `architecture.md` |
|
|
8
|
-
| `tech_stack.md` |
|
|
9
|
-
| `project_plan.md` |
|
|
10
|
-
| `implementation.yaml` |
|
|
11
|
-
| `HANDOFF.md` |
|
|
5
|
+
| Output | Required Conditions | Validation Method |
|
|
6
|
+
|--------|---------------------|-------------------|
|
|
7
|
+
| `architecture.md` | 4 types of diagrams | Structure verification |
|
|
8
|
+
| `tech_stack.md` | Version/dependency specified | Item verification |
|
|
9
|
+
| `project_plan.md` | 3+ milestones | Count verification |
|
|
10
|
+
| `implementation.yaml` | Implementation rules defined | Schema validation |
|
|
11
|
+
| `HANDOFF.md` | Next step instructions | Item verification |
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## Validation Command
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
/validate --stage 03-planning
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## Quality Criteria
|
|
20
20
|
|
|
21
21
|
### architecture.md
|
|
22
|
-
- [ ]
|
|
23
|
-
- [ ]
|
|
24
|
-
- [ ]
|
|
25
|
-
- [ ]
|
|
26
|
-
- [ ]
|
|
22
|
+
- [ ] System context diagram
|
|
23
|
+
- [ ] Container diagram
|
|
24
|
+
- [ ] Component diagram
|
|
25
|
+
- [ ] Sequence diagram (core flows)
|
|
26
|
+
- [ ] Data flow description
|
|
27
27
|
|
|
28
28
|
### tech_stack.md
|
|
29
|
-
- [ ]
|
|
30
|
-
- [ ]
|
|
31
|
-
- [ ]
|
|
32
|
-
- [ ]
|
|
33
|
-
- [ ]
|
|
29
|
+
- [ ] Frontend stack specified
|
|
30
|
+
- [ ] Backend stack specified
|
|
31
|
+
- [ ] Database selection
|
|
32
|
+
- [ ] Version and dependency definition
|
|
33
|
+
- [ ] Selection rationale documented
|
|
34
34
|
|
|
35
35
|
### project_plan.md
|
|
36
|
-
- [ ]
|
|
37
|
-
- [ ]
|
|
38
|
-
- [ ]
|
|
39
|
-
- [ ]
|
|
36
|
+
- [ ] 3+ milestones
|
|
37
|
+
- [ ] Deliverables per milestone
|
|
38
|
+
- [ ] Sprint plan
|
|
39
|
+
- [ ] Resource allocation
|
|
40
40
|
|
|
41
41
|
### implementation.yaml
|
|
42
|
-
- [ ]
|
|
43
|
-
- [ ]
|
|
44
|
-
- [ ]
|
|
45
|
-
- [ ]
|
|
46
|
-
- [ ]
|
|
42
|
+
- [ ] Component type definition
|
|
43
|
+
- [ ] Styling approach definition
|
|
44
|
+
- [ ] State management pattern definition
|
|
45
|
+
- [ ] Naming convention definition
|
|
46
|
+
- [ ] Folder structure definition
|
|
47
47
|
|
|
48
|
-
##
|
|
48
|
+
## Automated Validation Script
|
|
49
49
|
|
|
50
50
|
```bash
|
|
51
|
-
#
|
|
51
|
+
# Check diagram count (mermaid blocks)
|
|
52
52
|
grep -c "```mermaid" outputs/architecture.md
|
|
53
53
|
|
|
54
|
-
# implementation.yaml
|
|
54
|
+
# implementation.yaml validity
|
|
55
55
|
yq eval '.' outputs/implementation.yaml
|
|
56
56
|
|
|
57
|
-
#
|
|
57
|
+
# Check milestone count
|
|
58
58
|
grep -c "^## Milestone" outputs/project_plan.md
|
|
59
59
|
```
|
|
@@ -1,88 +1,84 @@
|
|
|
1
1
|
# Stage 04: UI/UX Planning
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
User interface and experience design stage
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Persona: User Experience Designer
|
|
6
6
|
|
|
7
|
-
>
|
|
8
|
-
>
|
|
9
|
-
>
|
|
7
|
+
> You are a User Experience Designer.
|
|
8
|
+
> Always think from the user's perspective and design intuitive experiences.
|
|
9
|
+
> Consider accessibility so all users can use it easily.
|
|
10
10
|
|
|
11
|
-
###
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
11
|
+
### Characteristics
|
|
12
|
+
- User empathy
|
|
13
|
+
- Visual thinking
|
|
14
|
+
- Interaction design
|
|
15
|
+
- Accessibility consideration
|
|
16
16
|
|
|
17
|
-
###
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
17
|
+
### Recommended Actions
|
|
18
|
+
- User scenario-based
|
|
19
|
+
- Intuitive interface
|
|
20
|
+
- Consistent design system
|
|
21
|
+
- Accessibility consideration
|
|
22
22
|
|
|
23
|
-
###
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
23
|
+
### Actions to Avoid
|
|
24
|
+
- Technology-centric thinking
|
|
25
|
+
- Complex interactions
|
|
26
|
+
- Ignoring users
|
|
27
27
|
|
|
28
|
-
### AI
|
|
29
|
-
- **Temperature**: 0.7 (
|
|
30
|
-
-
|
|
28
|
+
### AI Settings
|
|
29
|
+
- **Temperature**: 0.7 (creative design)
|
|
30
|
+
- **User focus**: High
|
|
31
31
|
|
|
32
|
-
##
|
|
33
|
-
- **Primary**: Gemini (
|
|
32
|
+
## Execution Model
|
|
33
|
+
- **Primary**: Gemini (creative UI design)
|
|
34
34
|
- **Mode**: Plan Mode
|
|
35
35
|
|
|
36
|
-
##
|
|
37
|
-
1.
|
|
38
|
-
2.
|
|
39
|
-
3.
|
|
40
|
-
4.
|
|
36
|
+
## Goals
|
|
37
|
+
1. Wireframe design
|
|
38
|
+
2. User flow definition
|
|
39
|
+
3. Establish design system foundation
|
|
40
|
+
4. Define component library
|
|
41
41
|
|
|
42
|
-
##
|
|
42
|
+
## Input Files
|
|
43
43
|
- `../01-brainstorm/outputs/requirements_analysis.md`
|
|
44
44
|
- `../03-planning/outputs/architecture.md`
|
|
45
45
|
- `../03-planning/HANDOFF.md`
|
|
46
46
|
|
|
47
|
-
##
|
|
48
|
-
- `outputs/wireframes.md` -
|
|
49
|
-
- `outputs/user_flows.md` -
|
|
50
|
-
- `outputs/design_system.md` -
|
|
51
|
-
- `HANDOFF.md` -
|
|
52
|
-
|
|
53
|
-
##
|
|
54
|
-
|
|
55
|
-
### 1.
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
-
|
|
59
|
-
|
|
60
|
-
### 2.
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
64
|
-
|
|
65
|
-
### 3.
|
|
66
|
-
-
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
### 4.
|
|
71
|
-
-
|
|
72
|
-
-
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
|
|
76
|
-
##
|
|
77
|
-
- [ ]
|
|
78
|
-
- [ ]
|
|
79
|
-
- [ ]
|
|
80
|
-
- [ ]
|
|
81
|
-
- [ ] HANDOFF.md
|
|
82
|
-
|
|
83
|
-
##
|
|
84
|
-
→ **05-task-management**:
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
47
|
+
## Output Files
|
|
48
|
+
- `outputs/wireframes.md` - Wireframes (ASCII/Mermaid)
|
|
49
|
+
- `outputs/user_flows.md` - User flows
|
|
50
|
+
- `outputs/design_system.md` - Design system
|
|
51
|
+
- `HANDOFF.md` - Handoff document for next stage
|
|
52
|
+
|
|
53
|
+
## Workflow
|
|
54
|
+
|
|
55
|
+
### 1. Information Architecture
|
|
56
|
+
- Define screen structure
|
|
57
|
+
- Navigation design
|
|
58
|
+
- Content hierarchy
|
|
59
|
+
|
|
60
|
+
### 2. Wireframes
|
|
61
|
+
- Main screen wireframes
|
|
62
|
+
- Responsive considerations
|
|
63
|
+
- Interaction definitions
|
|
64
|
+
|
|
65
|
+
### 3. User Flows
|
|
66
|
+
- Core user journeys
|
|
67
|
+
- Edge case handling
|
|
68
|
+
- Error states
|
|
69
|
+
|
|
70
|
+
### 4. Design System
|
|
71
|
+
- Color palette
|
|
72
|
+
- Typography
|
|
73
|
+
- Spacing system
|
|
74
|
+
- Component list
|
|
75
|
+
|
|
76
|
+
## Completion Criteria
|
|
77
|
+
- [ ] Main screen wireframes (5+)
|
|
78
|
+
- [ ] 3+ core user flows
|
|
79
|
+
- [ ] Design system foundation definition
|
|
80
|
+
- [ ] Component list creation
|
|
81
|
+
- [ ] Generate HANDOFF.md
|
|
82
|
+
|
|
83
|
+
## Next Stage
|
|
84
|
+
→ **05-task-management**: Task breakdown and sprint planning
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
stage:
|
|
4
4
|
id: "04-ui-ux"
|
|
5
5
|
name: "UI/UX Planning"
|
|
6
|
-
description: "
|
|
6
|
+
description: "User interface and experience design"
|
|
7
7
|
|
|
8
8
|
models:
|
|
9
9
|
primary: "gemini"
|
|
@@ -44,10 +44,10 @@ prompts:
|
|
|
44
44
|
|
|
45
45
|
completion:
|
|
46
46
|
checklist:
|
|
47
|
-
- "
|
|
48
|
-
- "
|
|
49
|
-
- "
|
|
50
|
-
- "
|
|
47
|
+
- "5+ main screen wireframes"
|
|
48
|
+
- "3+ core user flows"
|
|
49
|
+
- "Design system foundation definition"
|
|
50
|
+
- "Component list creation"
|
|
51
51
|
|
|
52
52
|
transition:
|
|
53
53
|
next_stage: "05-task-management"
|
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
# AI
|
|
1
|
+
# AI Collaboration Prompt - UI/UX Planning
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Collaboration Mode: Debate + Parallel
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This stage uses **debate mode** to determine UX direction, then **parallel mode** for detailed design.
|
|
6
6
|
|
|
7
|
-
###
|
|
8
|
-
- **Gemini**:
|
|
9
|
-
- **Claude**:
|
|
7
|
+
### Participating Models
|
|
8
|
+
- **Gemini**: Creative UI design, wireframe generation
|
|
9
|
+
- **Claude**: Usability review, accessibility assessment
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Collaboration Prompt
|
|
12
12
|
|
|
13
13
|
```
|
|
14
|
-
# UX
|
|
15
|
-
/collaborate --mode debate --topic "
|
|
14
|
+
# UX Direction Debate
|
|
15
|
+
/collaborate --mode debate --topic "user experience direction" --rounds 2
|
|
16
16
|
|
|
17
|
-
#
|
|
18
|
-
/collaborate --mode parallel --models gemini,claude --task "UI
|
|
17
|
+
# Parallel Design
|
|
18
|
+
/collaborate --mode parallel --models gemini,claude --task "UI component design"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
###
|
|
21
|
+
### Debate Topics
|
|
22
22
|
|
|
23
|
-
1.
|
|
24
|
-
2.
|
|
25
|
-
3.
|
|
23
|
+
1. **Interaction Patterns**: Traditional vs Innovative
|
|
24
|
+
2. **Information Architecture**: Flat vs Hierarchical
|
|
25
|
+
3. **Design System**: Existing vs Custom
|
|
26
26
|
|
|
27
|
-
###
|
|
27
|
+
### Task Distribution
|
|
28
28
|
|
|
29
|
-
| AI |
|
|
30
|
-
|
|
31
|
-
| Gemini |
|
|
32
|
-
| Claude |
|
|
29
|
+
| AI | Responsibility | Output |
|
|
30
|
+
|----|----------------|--------|
|
|
31
|
+
| Gemini | Wireframes, visual design | wireframes.md |
|
|
32
|
+
| Claude | User flows, accessibility review | user_flows.md |
|
|
33
33
|
|
|
34
|
-
###
|
|
34
|
+
### Design Review Checklist
|
|
35
35
|
|
|
36
|
-
- [ ]
|
|
37
|
-
- [ ]
|
|
38
|
-
- [ ]
|
|
39
|
-
- [ ]
|
|
36
|
+
- [ ] User scenario-based design
|
|
37
|
+
- [ ] Responsive considerations
|
|
38
|
+
- [ ] Accessibility (WCAG 2.1)
|
|
39
|
+
- [ ] Consistent design language
|
|
40
40
|
|
|
41
|
-
###
|
|
41
|
+
### Output Format
|
|
42
42
|
|
|
43
43
|
```markdown
|
|
44
|
-
## AI
|
|
44
|
+
## AI Collaboration Results
|
|
45
45
|
|
|
46
|
-
### Gemini
|
|
47
|
-
-
|
|
48
|
-
-
|
|
46
|
+
### Gemini Design
|
|
47
|
+
- Wireframes (ASCII/Mermaid)
|
|
48
|
+
- Color/typography suggestions
|
|
49
49
|
|
|
50
|
-
### Claude
|
|
51
|
-
-
|
|
52
|
-
-
|
|
50
|
+
### Claude Review
|
|
51
|
+
- Usability assessment
|
|
52
|
+
- Accessibility improvements
|
|
53
53
|
|
|
54
|
-
###
|
|
55
|
-
- [
|
|
54
|
+
### Integrated Design System
|
|
55
|
+
- [Final component list]
|
|
56
56
|
```
|
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Output Validation Prompt - UI/UX Planning
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Validation Targets
|
|
4
4
|
|
|
5
|
-
|
|
|
6
|
-
|
|
7
|
-
| `wireframes.md` |
|
|
8
|
-
| `user_flows.md` |
|
|
9
|
-
| `design_system.md` |
|
|
10
|
-
| `HANDOFF.md` |
|
|
5
|
+
| Output | Required Conditions | Validation Method |
|
|
6
|
+
|--------|---------------------|-------------------|
|
|
7
|
+
| `wireframes.md` | 5+ main screens | Count verification |
|
|
8
|
+
| `user_flows.md` | 3+ core flows | Count verification |
|
|
9
|
+
| `design_system.md` | Color/typography/spacing | Structure verification |
|
|
10
|
+
| `HANDOFF.md` | Component list | Item verification |
|
|
11
11
|
|
|
12
|
-
##
|
|
12
|
+
## Validation Command
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
15
|
/validate --stage 04-ui-ux
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
##
|
|
18
|
+
## Quality Criteria
|
|
19
19
|
|
|
20
20
|
### wireframes.md
|
|
21
|
-
- [ ]
|
|
22
|
-
- [ ]
|
|
23
|
-
- [ ]
|
|
24
|
-
- [ ]
|
|
21
|
+
- [ ] 5+ main screens
|
|
22
|
+
- [ ] Description for each screen
|
|
23
|
+
- [ ] Responsive breakpoint considerations
|
|
24
|
+
- [ ] Interaction descriptions
|
|
25
25
|
|
|
26
26
|
### user_flows.md
|
|
27
|
-
- [ ]
|
|
28
|
-
- [ ]
|
|
29
|
-
- [ ]
|
|
30
|
-
- [ ]
|
|
27
|
+
- [ ] 3+ core user flows
|
|
28
|
+
- [ ] Diagram for each flow
|
|
29
|
+
- [ ] Edge case handling
|
|
30
|
+
- [ ] Error state definitions
|
|
31
31
|
|
|
32
32
|
### design_system.md
|
|
33
|
-
- [ ]
|
|
34
|
-
- [ ]
|
|
35
|
-
- [ ]
|
|
36
|
-
- [ ]
|
|
33
|
+
- [ ] Color palette (Primary, Secondary, Neutral)
|
|
34
|
+
- [ ] Typography scale
|
|
35
|
+
- [ ] Spacing system
|
|
36
|
+
- [ ] Component list and variants
|
|
37
37
|
|
|
38
38
|
### HANDOFF.md
|
|
39
|
-
- [ ]
|
|
40
|
-
- [ ]
|
|
41
|
-
- [ ]
|
|
39
|
+
- [ ] Components to implement list
|
|
40
|
+
- [ ] Priority assignments
|
|
41
|
+
- [ ] Technical considerations
|
|
42
42
|
|
|
43
|
-
##
|
|
43
|
+
## Automated Validation Script
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
#
|
|
46
|
+
# Check wireframe count
|
|
47
47
|
grep -c "^### " outputs/wireframes.md
|
|
48
48
|
|
|
49
|
-
#
|
|
49
|
+
# Check user flow count
|
|
50
50
|
grep -c "^## Flow" outputs/user_flows.md
|
|
51
51
|
|
|
52
|
-
#
|
|
53
|
-
grep -E "^## (
|
|
52
|
+
# Check design system sections
|
|
53
|
+
grep -E "^## (Color|Typography|Spacing)" outputs/design_system.md
|
|
54
54
|
```
|