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,103 +1,99 @@
|
|
|
1
1
|
# Stage 01: Brainstorming
|
|
2
2
|
|
|
3
|
-
>
|
|
4
|
-
>
|
|
5
|
-
> ClaudeCode
|
|
3
|
+
> **Required AI Model: Gemini**
|
|
4
|
+
> The core tasks of this stage (idea generation, web research) should be performed using the `/gemini` command.
|
|
5
|
+
> ClaudeCode is only used for structuring results.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Divergent idea generation and requirements exploration stage
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Persona: Creative Explorer
|
|
10
10
|
|
|
11
|
-
>
|
|
12
|
-
>
|
|
13
|
-
>
|
|
11
|
+
> You are a Creative Explorer.
|
|
12
|
+
> Explore diverse ideas without constraints and present innovative perspectives.
|
|
13
|
+
> Focus on expanding the range of possibilities rather than feasibility.
|
|
14
14
|
|
|
15
|
-
###
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
15
|
+
### Characteristics
|
|
16
|
+
- Divergent thinking
|
|
17
|
+
- Unconstrained ideas
|
|
18
|
+
- Multiple perspectives
|
|
19
|
+
- Spontaneous connections
|
|
20
20
|
|
|
21
|
-
###
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
- What-if
|
|
21
|
+
### Recommended Actions
|
|
22
|
+
- Suggest diverse ideas
|
|
23
|
+
- Explore unconventional approaches
|
|
24
|
+
- Expand associations
|
|
25
|
+
- What-if scenarios
|
|
26
26
|
|
|
27
|
-
###
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
27
|
+
### Actions to Avoid
|
|
28
|
+
- Immediate feasibility judgment
|
|
29
|
+
- Detailed technical implementation
|
|
30
|
+
- Focus on single solution
|
|
31
31
|
|
|
32
|
-
### AI
|
|
33
|
-
- **Temperature**: 0.9 (
|
|
34
|
-
-
|
|
32
|
+
### AI Settings
|
|
33
|
+
- **Temperature**: 0.9 (high creativity)
|
|
34
|
+
- **Creativity**: High
|
|
35
35
|
|
|
36
|
-
##
|
|
37
|
-
- **Primary**: Gemini (
|
|
38
|
-
- **Secondary**: ClaudeCode (
|
|
39
|
-
- **Mode**: YOLO (Container) -
|
|
36
|
+
## Execution Model
|
|
37
|
+
- **Primary**: Gemini (creative idea generation, web research)
|
|
38
|
+
- **Secondary**: ClaudeCode (structuring, feasibility review)
|
|
39
|
+
- **Mode**: YOLO (Container) - autonomous execution mode
|
|
40
40
|
|
|
41
|
-
##
|
|
42
|
-
1.
|
|
43
|
-
2.
|
|
44
|
-
3.
|
|
41
|
+
## Goals
|
|
42
|
+
1. Divergent ideation based on project brief
|
|
43
|
+
2. In-depth analysis of user requirements
|
|
44
|
+
3. Identify initial scope and constraints
|
|
45
45
|
|
|
46
|
-
##
|
|
47
|
-
- `inputs/project_brief.md` -
|
|
48
|
-
- `inputs/user_requirements.md` -
|
|
46
|
+
## Input Files
|
|
47
|
+
- `inputs/project_brief.md` - Project overview
|
|
48
|
+
- `inputs/user_requirements.md` - User requirements (optional)
|
|
49
49
|
|
|
50
|
-
##
|
|
51
|
-
- `outputs/ideas.md` -
|
|
52
|
-
- `outputs/requirements_analysis.md` -
|
|
53
|
-
- `HANDOFF.md` -
|
|
50
|
+
## Output Files
|
|
51
|
+
- `outputs/ideas.md` - Brainstorming idea list
|
|
52
|
+
- `outputs/requirements_analysis.md` - Requirements analysis results
|
|
53
|
+
- `HANDOFF.md` - Handoff document for next stage
|
|
54
54
|
|
|
55
|
-
##
|
|
55
|
+
## Workflow
|
|
56
56
|
|
|
57
|
-
### 1.
|
|
57
|
+
### 1. Idea Generation (Gemini)
|
|
58
58
|
```
|
|
59
|
-
/gemini "
|
|
60
|
-
1.
|
|
61
|
-
2.
|
|
62
|
-
3.
|
|
63
|
-
4.
|
|
59
|
+
/gemini "Analyze the project brief and perform the following:
|
|
60
|
+
1. Brainstorm at least 10 core feature ideas
|
|
61
|
+
2. Analyze pros and cons of each idea
|
|
62
|
+
3. Create 3 user personas
|
|
63
|
+
4. Research similar project cases on Reddit/HackerNews"
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
### 2.
|
|
67
|
-
- Gemini
|
|
68
|
-
-
|
|
69
|
-
-
|
|
66
|
+
### 2. Structuring (ClaudeCode)
|
|
67
|
+
- Organize Gemini results into structured documents
|
|
68
|
+
- Add feasibility assessments
|
|
69
|
+
- Create priority matrix
|
|
70
70
|
|
|
71
|
-
### 3.
|
|
72
|
-
-
|
|
73
|
-
-
|
|
74
|
-
- MVP
|
|
71
|
+
### 3. Requirements Analysis
|
|
72
|
+
- Classify functional/non-functional requirements
|
|
73
|
+
- Identify constraints
|
|
74
|
+
- Propose MVP scope
|
|
75
75
|
|
|
76
|
-
##
|
|
76
|
+
## Prompt Templates
|
|
77
77
|
|
|
78
78
|
### ideation.md
|
|
79
|
-
|
|
79
|
+
For divergent idea generation
|
|
80
80
|
|
|
81
81
|
### persona.md
|
|
82
|
-
|
|
82
|
+
For user persona creation
|
|
83
83
|
|
|
84
84
|
### requirements.md
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
## 완료 조건
|
|
88
|
-
- [ ] 최소 10개 아이디어 생성
|
|
89
|
-
- [ ] 3개 이상 사용자 페르소나 정의
|
|
90
|
-
- [ ] 요구사항 분석 문서 완성
|
|
91
|
-
- [ ] HANDOFF.md 생성
|
|
92
|
-
|
|
93
|
-
## 다음 스테이지
|
|
94
|
-
→ **02-research**: 기술 리서치 및 시장 분석
|
|
95
|
-
|
|
96
|
-
## 주의사항
|
|
97
|
-
- 이 단계에서는 아이디어 제한 없이 발산적 사고
|
|
98
|
-
- 실현 가능성은 다음 단계에서 상세 검토
|
|
99
|
-
- 모든 아이디어는 기록으로 남김 (나중에 재검토 가능)
|
|
100
|
-
|
|
85
|
+
For requirements analysis
|
|
101
86
|
|
|
87
|
+
## Completion Criteria
|
|
88
|
+
- [ ] Generate at least 10 ideas
|
|
89
|
+
- [ ] Define 3 or more user personas
|
|
90
|
+
- [ ] Complete requirements analysis document
|
|
91
|
+
- [ ] Generate HANDOFF.md
|
|
102
92
|
|
|
93
|
+
## Next Stage
|
|
94
|
+
→ **02-research**: Technical research and market analysis
|
|
103
95
|
|
|
96
|
+
## Notes
|
|
97
|
+
- Allow unrestricted divergent thinking at this stage
|
|
98
|
+
- Detailed feasibility review in the next stage
|
|
99
|
+
- Record all ideas (can be revisited later)
|
|
@@ -1,97 +1,97 @@
|
|
|
1
1
|
# Stage 01: Brainstorming
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Divergent idea generation and requirements exploration
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Overview
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
This stage is the starting point of the project, performing creative idea divergence and initial requirements analysis.
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Execution Model
|
|
10
10
|
|
|
11
|
-
|
|
|
12
|
-
|
|
13
|
-
| Primary | Gemini |
|
|
14
|
-
| Secondary | ClaudeCode |
|
|
11
|
+
| Role | Model | Purpose |
|
|
12
|
+
|------|-------|---------|
|
|
13
|
+
| Primary | Gemini | Creative idea generation, web research |
|
|
14
|
+
| Secondary | ClaudeCode | Structuring, feasibility review |
|
|
15
15
|
|
|
16
|
-
##
|
|
16
|
+
## Getting Started
|
|
17
17
|
|
|
18
|
-
### 1.
|
|
18
|
+
### 1. Prepare Input Files
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
#
|
|
21
|
+
# Create project brief
|
|
22
22
|
cp templates/project_brief.md inputs/project_brief.md
|
|
23
|
-
#
|
|
23
|
+
# Edit and fill in content
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
### 2.
|
|
26
|
+
### 2. Run Stage
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
#
|
|
29
|
+
# Method 1: Slash command
|
|
30
30
|
/run-stage 01-brainstorm
|
|
31
31
|
|
|
32
|
-
#
|
|
32
|
+
# Method 2: Direct script execution
|
|
33
33
|
../../scripts/run-stage.sh 01-brainstorm
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
### 3.
|
|
36
|
+
### 3. Manual Workflow
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
# Step 1:
|
|
39
|
+
# Step 1: Divergent ideation with Gemini
|
|
40
40
|
/gemini "$(cat prompts/ideation.md)"
|
|
41
41
|
|
|
42
|
-
# Step 2:
|
|
42
|
+
# Step 2: Save results to outputs/ideas.md
|
|
43
43
|
|
|
44
|
-
# Step 3:
|
|
45
|
-
# ClaudeCode
|
|
44
|
+
# Step 3: Requirements analysis
|
|
45
|
+
# ClaudeCode performs automatically
|
|
46
46
|
|
|
47
|
-
# Step 4: HANDOFF.md
|
|
47
|
+
# Step 4: Generate HANDOFF.md
|
|
48
48
|
/handoff
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
##
|
|
51
|
+
## Directory Structure
|
|
52
52
|
|
|
53
53
|
```
|
|
54
54
|
01-brainstorm/
|
|
55
|
-
├── README.md #
|
|
56
|
-
├── CLAUDE.md # AI
|
|
57
|
-
├── config.yaml #
|
|
55
|
+
├── README.md # This file
|
|
56
|
+
├── CLAUDE.md # AI instructions
|
|
57
|
+
├── config.yaml # Stage configuration
|
|
58
58
|
├── prompts/
|
|
59
|
-
│ ├── ideation.md #
|
|
60
|
-
│ ├── persona.md #
|
|
61
|
-
│ └── requirements.md #
|
|
59
|
+
│ ├── ideation.md # Idea generation prompt
|
|
60
|
+
│ ├── persona.md # Persona creation prompt
|
|
61
|
+
│ └── requirements.md # Requirements analysis prompt
|
|
62
62
|
├── templates/
|
|
63
|
-
│ ├── ideas.md #
|
|
64
|
-
│ └── requirements_analysis.md #
|
|
65
|
-
├── inputs/ #
|
|
66
|
-
├── outputs/ #
|
|
67
|
-
├── HANDOFF.md.template #
|
|
68
|
-
└── HANDOFF.md #
|
|
63
|
+
│ ├── ideas.md # Ideas output template
|
|
64
|
+
│ └── requirements_analysis.md # Requirements output template
|
|
65
|
+
├── inputs/ # Input files
|
|
66
|
+
├── outputs/ # Output files
|
|
67
|
+
├── HANDOFF.md.template # Handoff template
|
|
68
|
+
└── HANDOFF.md # Generated handoff (upon completion)
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
##
|
|
71
|
+
## Completion Criteria
|
|
72
72
|
|
|
73
|
-
- [ ]
|
|
74
|
-
- [ ] 3
|
|
75
|
-
- [ ]
|
|
76
|
-
- [ ] MVP
|
|
77
|
-
- [ ] HANDOFF.md
|
|
73
|
+
- [ ] Generate at least 10 ideas
|
|
74
|
+
- [ ] Define 3 or more user personas
|
|
75
|
+
- [ ] Complete requirements analysis document
|
|
76
|
+
- [ ] Define MVP scope
|
|
77
|
+
- [ ] Generate HANDOFF.md
|
|
78
78
|
|
|
79
|
-
##
|
|
79
|
+
## Outputs
|
|
80
80
|
|
|
81
|
-
|
|
|
82
|
-
|
|
83
|
-
| `outputs/ideas.md` |
|
|
84
|
-
| `outputs/requirements_analysis.md` |
|
|
85
|
-
| `outputs/personas.md` |
|
|
86
|
-
| `HANDOFF.md` |
|
|
81
|
+
| File | Description |
|
|
82
|
+
|------|-------------|
|
|
83
|
+
| `outputs/ideas.md` | Brainstorming idea list |
|
|
84
|
+
| `outputs/requirements_analysis.md` | Requirements analysis results |
|
|
85
|
+
| `outputs/personas.md` | User personas (optional) |
|
|
86
|
+
| `HANDOFF.md` | Handoff document for next stage |
|
|
87
87
|
|
|
88
|
-
##
|
|
88
|
+
## Next Stage
|
|
89
89
|
|
|
90
|
-
**→ 02-research**:
|
|
90
|
+
**→ 02-research**: Technical research and market analysis
|
|
91
91
|
|
|
92
|
-
##
|
|
92
|
+
## Tips
|
|
93
93
|
|
|
94
|
-
1.
|
|
95
|
-
2.
|
|
96
|
-
3. **Gemini
|
|
97
|
-
4.
|
|
94
|
+
1. **Divergent thinking**: Allow unrestricted free thinking at this stage
|
|
95
|
+
2. **Record everything**: For later review
|
|
96
|
+
3. **Use Gemini**: Leverage for competitor analysis requiring web search
|
|
97
|
+
4. **Structure later**: ClaudeCode handles structuring
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
stage:
|
|
4
4
|
id: "01-brainstorm"
|
|
5
5
|
name: "Brainstorming"
|
|
6
|
-
description: "
|
|
6
|
+
description: "Divergent idea generation and requirements exploration"
|
|
7
7
|
|
|
8
8
|
# Model Assignment
|
|
9
9
|
models:
|
|
@@ -11,7 +11,7 @@ models:
|
|
|
11
11
|
secondary: "claudecode"
|
|
12
12
|
collaboration: "parallel" # parallel | sequential | handoff
|
|
13
13
|
|
|
14
|
-
# AI
|
|
14
|
+
# AI Auto-Invoke Settings (Issue #12 Resolution)
|
|
15
15
|
auto_invoke:
|
|
16
16
|
enabled: true
|
|
17
17
|
model: "gemini"
|
|
@@ -19,7 +19,7 @@ auto_invoke:
|
|
|
19
19
|
prompt_file: "prompts/ideation.md"
|
|
20
20
|
wrapper: "scripts/gemini-wrapper.sh"
|
|
21
21
|
required: true
|
|
22
|
-
message: "🤖 Gemini
|
|
22
|
+
message: "🤖 Gemini auto-invoke: Starting divergent idea generation"
|
|
23
23
|
|
|
24
24
|
# Execution Mode
|
|
25
25
|
execution:
|
|
@@ -32,53 +32,53 @@ execution:
|
|
|
32
32
|
inputs:
|
|
33
33
|
required:
|
|
34
34
|
- name: "project_brief.md"
|
|
35
|
-
description: "
|
|
35
|
+
description: "Project overview and goals"
|
|
36
36
|
schema: null
|
|
37
37
|
optional:
|
|
38
38
|
- name: "user_requirements.md"
|
|
39
|
-
description: "
|
|
39
|
+
description: "Initial user requirements"
|
|
40
40
|
- name: "reference_materials/"
|
|
41
|
-
description: "
|
|
41
|
+
description: "Reference materials directory"
|
|
42
42
|
|
|
43
43
|
outputs:
|
|
44
44
|
required:
|
|
45
45
|
- name: "ideas.md"
|
|
46
|
-
description: "
|
|
46
|
+
description: "Brainstorming idea list"
|
|
47
47
|
template: "templates/ideas.md"
|
|
48
48
|
- name: "requirements_analysis.md"
|
|
49
|
-
description: "
|
|
49
|
+
description: "Requirements analysis results"
|
|
50
50
|
template: "templates/requirements_analysis.md"
|
|
51
51
|
- name: "HANDOFF.md"
|
|
52
|
-
description: "
|
|
52
|
+
description: "Handoff document for next stage"
|
|
53
53
|
template: "HANDOFF.md.template"
|
|
54
54
|
optional:
|
|
55
55
|
- name: "personas.md"
|
|
56
|
-
description: "
|
|
56
|
+
description: "User personas"
|
|
57
57
|
- name: "competitive_analysis.md"
|
|
58
|
-
description: "
|
|
58
|
+
description: "Competitive analysis"
|
|
59
59
|
|
|
60
60
|
# Prompts
|
|
61
61
|
prompts:
|
|
62
62
|
- name: "ideation"
|
|
63
63
|
file: "prompts/ideation.md"
|
|
64
64
|
model: "gemini"
|
|
65
|
-
description: "
|
|
65
|
+
description: "Divergent idea generation"
|
|
66
66
|
- name: "persona"
|
|
67
67
|
file: "prompts/persona.md"
|
|
68
68
|
model: "gemini"
|
|
69
|
-
description: "
|
|
69
|
+
description: "User persona generation"
|
|
70
70
|
- name: "requirements"
|
|
71
71
|
file: "prompts/requirements.md"
|
|
72
72
|
model: "claudecode"
|
|
73
|
-
description: "
|
|
73
|
+
description: "Requirements analysis and structuring"
|
|
74
74
|
|
|
75
75
|
# Completion Criteria
|
|
76
76
|
completion:
|
|
77
77
|
checklist:
|
|
78
|
-
- "
|
|
79
|
-
- "3
|
|
80
|
-
- "
|
|
81
|
-
- "HANDOFF.md
|
|
78
|
+
- "Generate at least 10 ideas"
|
|
79
|
+
- "Define 3 or more user personas"
|
|
80
|
+
- "Complete requirements analysis document"
|
|
81
|
+
- "Generate HANDOFF.md"
|
|
82
82
|
validation:
|
|
83
83
|
min_ideas: 10
|
|
84
84
|
min_personas: 3
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
# AI
|
|
1
|
+
# AI Collaboration Prompt - Brainstorming
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## Collaboration Mode: Parallel Execution
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This stage uses **parallel execution** mode where multiple AI models generate ideas simultaneously.
|
|
6
6
|
|
|
7
|
-
###
|
|
8
|
-
- **Gemini**:
|
|
9
|
-
- **Claude**:
|
|
7
|
+
### Participating Models
|
|
8
|
+
- **Gemini**: Creative idea divergence, web research
|
|
9
|
+
- **Claude**: Structuring, feasibility review
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Collaboration Prompt
|
|
12
12
|
|
|
13
13
|
```
|
|
14
|
-
/collaborate --mode parallel --models gemini,claude --task "
|
|
14
|
+
/collaborate --mode parallel --models gemini,claude --task "idea brainstorming"
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
###
|
|
17
|
+
### Merge Strategy
|
|
18
18
|
|
|
19
|
-
1. **Gemini
|
|
20
|
-
2. **Claude
|
|
21
|
-
3.
|
|
19
|
+
1. **Gemini Results**: Creative ideas, diverse perspectives
|
|
20
|
+
2. **Claude Results**: Structured analysis, feasibility assessment
|
|
21
|
+
3. **Merge**: Best-of-N selection then integration
|
|
22
22
|
|
|
23
|
-
###
|
|
23
|
+
### Debate Mode (Optional)
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
Use debate mode for complex idea evaluation:
|
|
26
26
|
```
|
|
27
|
-
/collaborate --mode debate --topic "
|
|
27
|
+
/collaborate --mode debate --topic "Determine optimal MVP scope" --rounds 2
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
###
|
|
30
|
+
### Output Format
|
|
31
31
|
|
|
32
32
|
```markdown
|
|
33
|
-
## AI
|
|
33
|
+
## AI Collaboration Results
|
|
34
34
|
|
|
35
|
-
### Gemini
|
|
36
|
-
- [
|
|
37
|
-
- [
|
|
35
|
+
### Gemini Ideas
|
|
36
|
+
- [Idea 1]
|
|
37
|
+
- [Idea 2]
|
|
38
38
|
...
|
|
39
39
|
|
|
40
|
-
### Claude
|
|
41
|
-
- [
|
|
40
|
+
### Claude Analysis
|
|
41
|
+
- [Structured evaluation]
|
|
42
42
|
...
|
|
43
43
|
|
|
44
|
-
###
|
|
45
|
-
- [
|
|
44
|
+
### Integrated Results
|
|
45
|
+
- [Final idea list]
|
|
46
46
|
```
|
|
@@ -1,62 +1,62 @@
|
|
|
1
1
|
# Ideation Prompt Template
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Divergent idea generation prompt for project brainstorming
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
Gemini (
|
|
5
|
+
## Model
|
|
6
|
+
Gemini (suited for creative divergence)
|
|
7
7
|
|
|
8
|
-
##
|
|
8
|
+
## Prompt
|
|
9
9
|
|
|
10
10
|
```
|
|
11
|
-
|
|
11
|
+
You are a creative product manager and idea expert.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Analyze the following project brief and perform comprehensive brainstorming:
|
|
14
14
|
|
|
15
15
|
---
|
|
16
16
|
{{PROJECT_BRIEF}}
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
##
|
|
20
|
-
|
|
21
|
-
### 1.
|
|
22
|
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
-
|
|
26
|
-
-
|
|
27
|
-
|
|
28
|
-
### 2.
|
|
29
|
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
|
|
35
|
-
### 3.
|
|
36
|
-
- Reddit, HackerNews, ProductHunt
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
|
|
41
|
-
### 4.
|
|
42
|
-
- "
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
##
|
|
46
|
-
|
|
19
|
+
## Requirements
|
|
20
|
+
|
|
21
|
+
### 1. Core Feature Ideas (minimum 10)
|
|
22
|
+
For each idea:
|
|
23
|
+
- Feature name and one-line description
|
|
24
|
+
- User value (what problem does it solve?)
|
|
25
|
+
- Implementation complexity (Low/Medium/High)
|
|
26
|
+
- Innovation score (1-5)
|
|
27
|
+
|
|
28
|
+
### 2. User Personas (3 or more)
|
|
29
|
+
For each persona:
|
|
30
|
+
- Name, age, occupation
|
|
31
|
+
- Goals and motivations
|
|
32
|
+
- Frustrations and pain points
|
|
33
|
+
- Technology familiarity
|
|
34
|
+
|
|
35
|
+
### 3. Competitor/Similar Service Analysis
|
|
36
|
+
- Search Reddit, HackerNews, ProductHunt
|
|
37
|
+
- Identify 3-5 similar projects
|
|
38
|
+
- Analyze strengths/weaknesses of each
|
|
39
|
+
- Identify differentiation opportunities
|
|
40
|
+
|
|
41
|
+
### 4. Divergent Ideas
|
|
42
|
+
- 3 "crazy" ideas (ignore feasibility)
|
|
43
|
+
- Impact if each idea succeeds
|
|
44
|
+
|
|
45
|
+
## Output Format
|
|
46
|
+
Please output in structured markdown format.
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
##
|
|
49
|
+
## Usage Example
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
# Gemini CLI
|
|
52
|
+
# Gemini CLI call
|
|
53
53
|
/gemini "$(cat prompts/ideation.md | sed 's/{{PROJECT_BRIEF}}/'"$(cat inputs/project_brief.md)"'/')"
|
|
54
54
|
|
|
55
|
-
#
|
|
55
|
+
# Or direct call
|
|
56
56
|
scripts/gemini-wrapper.sh "$(cat prompts/ideation.md)"
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
-
##
|
|
60
|
-
- `outputs/ideas.md
|
|
61
|
-
-
|
|
62
|
-
-
|
|
59
|
+
## Expected Output
|
|
60
|
+
- Save to `outputs/ideas.md`
|
|
61
|
+
- Include at least 10 ideas
|
|
62
|
+
- Structured markdown format
|