claude-symphony 0.0.1 → 0.0.2

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.
Files changed (148) hide show
  1. package/README.md +16 -12
  2. package/bin/create.js +80 -69
  3. package/package.json +1 -1
  4. package/template/.claude/commands/benchmark.md +32 -32
  5. package/template/.claude/commands/brainstorm.md +33 -33
  6. package/template/.claude/commands/checkpoint.md +42 -42
  7. package/template/.claude/commands/codex.md +52 -52
  8. package/template/.claude/commands/collaborate.md +47 -47
  9. package/template/.claude/commands/context.md +77 -77
  10. package/template/.claude/commands/deploy.md +50 -50
  11. package/template/.claude/commands/fork.md +46 -46
  12. package/template/.claude/commands/gemini.md +43 -43
  13. package/template/.claude/commands/handoff.md +42 -42
  14. package/template/.claude/commands/implement.md +42 -42
  15. package/template/.claude/commands/init-project.md +25 -25
  16. package/template/.claude/commands/next.md +67 -67
  17. package/template/.claude/commands/planning.md +38 -38
  18. package/template/.claude/commands/qa.md +47 -47
  19. package/template/.claude/commands/refactor.md +50 -50
  20. package/template/.claude/commands/research.md +31 -31
  21. package/template/.claude/commands/restore.md +53 -53
  22. package/template/.claude/commands/run-stage.md +45 -45
  23. package/template/.claude/commands/stages.md +49 -49
  24. package/template/.claude/commands/status.md +41 -41
  25. package/template/.claude/commands/tasks.md +33 -33
  26. package/template/.claude/commands/test.md +45 -45
  27. package/template/.claude/commands/ui-ux.md +31 -31
  28. package/template/.claude/commands/validate.md +81 -81
  29. package/template/.claude/hooks/ai-selector.sh +39 -39
  30. package/template/.claude/hooks/auto-checkpoint.sh +30 -30
  31. package/template/.claude/hooks/output-validator.sh +45 -45
  32. package/template/.claude/hooks/post-stage.sh +28 -28
  33. package/template/.claude/hooks/pre-stage.sh +47 -47
  34. package/template/.claude/hooks/session-start.sh +27 -27
  35. package/template/.claude/hooks/statusline.sh +24 -24
  36. package/template/.claude/hooks/stop.sh +26 -26
  37. package/template/.claude/settings.json +32 -32
  38. package/template/.claude/skills/ai-collaboration/README.md +31 -31
  39. package/template/.claude/skills/ai-collaboration/debate.md +66 -66
  40. package/template/.claude/skills/ai-collaboration/parallel.md +34 -34
  41. package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +59 -63
  42. package/template/.claude/skills/auto-checkpoint/README.md +46 -46
  43. package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +68 -72
  44. package/template/.claude/skills/auto-checkpoint/rollback.md +95 -95
  45. package/template/.claude/skills/auto-checkpoint/trigger.md +37 -37
  46. package/template/.claude/skills/context-compression/README.md +69 -69
  47. package/template/.claude/skills/context-compression/analyze.md +74 -74
  48. package/template/.claude/skills/context-compression/compress.md +103 -103
  49. package/template/.claude/skills/context-compression/prompts/compression.md +78 -78
  50. package/template/.claude/skills/output-validator/README.md +33 -33
  51. package/template/.claude/skills/output-validator/prompts/CLAUDE.md +74 -78
  52. package/template/.claude/skills/output-validator/validate.md +76 -76
  53. package/template/.claude/skills/smart-handoff/README.md +35 -35
  54. package/template/.claude/skills/smart-handoff/extract.md +42 -42
  55. package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +52 -54
  56. package/template/.claude/skills/smart-handoff/summarize.md +55 -55
  57. package/template/.claude/skills/stage-transition/README.md +50 -50
  58. package/template/.claude/skills/stage-transition/handoff-gen.md +89 -89
  59. package/template/.claude/skills/stage-transition/prompts/transition.md +74 -74
  60. package/template/.claude/skills/stage-transition/validate.md +41 -41
  61. package/template/CLAUDE.md +334 -335
  62. package/template/config/ai_benchmarking.yaml +22 -22
  63. package/template/config/ai_collaboration.yaml +18 -18
  64. package/template/config/ai_logging.yaml +50 -50
  65. package/template/config/auto_checkpoint.yaml +32 -32
  66. package/template/config/context.yaml +20 -20
  67. package/template/config/git.yaml +51 -51
  68. package/template/config/handoff_intelligence.yaml +23 -23
  69. package/template/config/mcp_fallbacks.yaml +71 -71
  70. package/template/config/memory_integration.yaml +23 -23
  71. package/template/config/model_enforcement.yaml +53 -53
  72. package/template/config/models.yaml +24 -24
  73. package/template/config/output_validation.yaml +44 -44
  74. package/template/config/pipeline.yaml +25 -25
  75. package/template/config/pipeline_forking.yaml +40 -40
  76. package/template/config/qa_logging.yaml +67 -67
  77. package/template/config/smart_rollback.yaml +48 -48
  78. package/template/config/stage_personas.yaml +154 -154
  79. package/template/config/workflow.yaml +16 -16
  80. package/template/scripts/ai-benchmark.sh +41 -41
  81. package/template/scripts/codex-wrapper.sh +32 -32
  82. package/template/scripts/context-manager.sh +136 -136
  83. package/template/scripts/create-checkpoint.sh +34 -34
  84. package/template/scripts/gemini-wrapper.sh +31 -31
  85. package/template/scripts/init-project.sh +40 -40
  86. package/template/scripts/list-stages.sh +30 -30
  87. package/template/scripts/next-stage.sh +67 -67
  88. package/template/scripts/output-validate.sh +2 -2
  89. package/template/scripts/pipeline-fork.sh +68 -68
  90. package/template/scripts/pre-run-check.sh +84 -84
  91. package/template/scripts/restore-checkpoint.sh +50 -50
  92. package/template/scripts/run-stage.sh +44 -44
  93. package/template/scripts/show-status.sh +30 -30
  94. package/template/scripts/smart-handoff.sh +70 -70
  95. package/template/stages/01-brainstorm/CLAUDE.md +70 -74
  96. package/template/stages/01-brainstorm/README.md +54 -54
  97. package/template/stages/01-brainstorm/config.yaml +18 -18
  98. package/template/stages/01-brainstorm/prompts/collaboration.md +24 -24
  99. package/template/stages/01-brainstorm/prompts/ideation.md +41 -41
  100. package/template/stages/01-brainstorm/prompts/persona.md +50 -50
  101. package/template/stages/01-brainstorm/prompts/requirements.md +55 -55
  102. package/template/stages/01-brainstorm/prompts/validation.md +28 -28
  103. package/template/stages/01-brainstorm/templates/ideas.md +47 -47
  104. package/template/stages/01-brainstorm/templates/requirements_analysis.md +61 -61
  105. package/template/stages/02-research/CLAUDE.md +72 -76
  106. package/template/stages/02-research/config.yaml +12 -12
  107. package/template/stages/02-research/prompts/collaboration.md +29 -29
  108. package/template/stages/02-research/prompts/feasibility.md +38 -38
  109. package/template/stages/02-research/prompts/market_analysis.md +29 -29
  110. package/template/stages/02-research/prompts/tech_stack.md +34 -34
  111. package/template/stages/02-research/prompts/validation.md +29 -29
  112. package/template/stages/03-planning/CLAUDE.md +88 -92
  113. package/template/stages/03-planning/config.yaml +10 -10
  114. package/template/stages/03-planning/prompts/architecture.md +43 -43
  115. package/template/stages/03-planning/prompts/collaboration.md +34 -34
  116. package/template/stages/03-planning/prompts/validation.md +34 -34
  117. package/template/stages/04-ui-ux/CLAUDE.md +68 -72
  118. package/template/stages/04-ui-ux/config.yaml +5 -5
  119. package/template/stages/04-ui-ux/prompts/collaboration.md +35 -35
  120. package/template/stages/04-ui-ux/prompts/validation.md +30 -30
  121. package/template/stages/05-task-management/CLAUDE.md +81 -85
  122. package/template/stages/05-task-management/config.yaml +17 -17
  123. package/template/stages/05-task-management/prompts/collaboration.md +30 -30
  124. package/template/stages/05-task-management/prompts/validation.md +33 -33
  125. package/template/stages/05-task-management/templates/notion_integration.md +70 -70
  126. package/template/stages/05-task-management/templates/parallel_groups.yaml +64 -64
  127. package/template/stages/05-task-management/templates/task_schema.yaml +33 -33
  128. package/template/stages/06-implementation/CLAUDE.md +117 -121
  129. package/template/stages/06-implementation/config.yaml +10 -10
  130. package/template/stages/06-implementation/prompts/collaboration.md +29 -29
  131. package/template/stages/06-implementation/prompts/validation.md +36 -36
  132. package/template/stages/07-refactoring/CLAUDE.md +120 -124
  133. package/template/stages/07-refactoring/config.yaml +11 -11
  134. package/template/stages/07-refactoring/prompts/collaboration.md +36 -36
  135. package/template/stages/07-refactoring/prompts/validation.md +40 -40
  136. package/template/stages/08-qa/CLAUDE.md +80 -84
  137. package/template/stages/08-qa/config.yaml +7 -7
  138. package/template/stages/08-qa/prompts/collaboration.md +34 -34
  139. package/template/stages/08-qa/prompts/validation.md +41 -41
  140. package/template/stages/09-testing/CLAUDE.md +86 -90
  141. package/template/stages/09-testing/config.yaml +10 -10
  142. package/template/stages/09-testing/prompts/collaboration.md +38 -38
  143. package/template/stages/09-testing/prompts/validation.md +41 -41
  144. package/template/stages/10-deployment/CLAUDE.md +86 -90
  145. package/template/stages/10-deployment/config.yaml +11 -11
  146. package/template/stages/10-deployment/prompts/collaboration.md +37 -37
  147. package/template/stages/10-deployment/prompts/validation.md +54 -54
  148. package/template/stages/10-deployment/templates/github-actions-cd.yaml +1 -1
@@ -1,103 +1,99 @@
1
1
  # Stage 01: Brainstorming
2
2
 
3
- > ⚠️ **필수 AI 모델: Gemini**
4
- > 스테이지의 핵심 작업(아이디어 발산, 리서치) `/gemini` 명령어로 수행하세요.
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
- ## 🎭 페르소나: Creative Explorer
9
+ ## Persona: Creative Explorer
10
10
 
11
- > 당신은 Creative Explorer입니다.
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
- - **창의성**: High
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. 아이디어 발산 (Gemini)
57
+ ### 1. Idea Generation (Gemini)
58
58
  ```
59
- /gemini "프로젝트 브리프를 분석하고 다음을 수행해주세요:
60
- 1. 핵심 기능 아이디어 10 이상 브레인스토밍
61
- 2. 아이디어의 장단점 분석
62
- 3. 사용자 페르소나 3 생성
63
- 4. Reddit/HackerNews에서 유사 프로젝트 사례 조사"
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. 구조화 (ClaudeCode)
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
- # 방법 1: 슬래시 커맨드
29
+ # Method 1: Slash command
30
30
  /run-stage 01-brainstorm
31
31
 
32
- # 방법 2: 스크립트 직접 실행
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: Gemini로 아이디어 발산
39
+ # Step 1: Divergent ideation with Gemini
40
40
  /gemini "$(cat prompts/ideation.md)"
41
41
 
42
- # Step 2: 결과를 outputs/ideas.md에 저장
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
- - [ ] 최소 10 아이디어 생성
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. **구조화는 나중에**: ClaudeCode 구조화 담당
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 자동 호출 설정 (Issue #12 해결)
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
- - "최소 10 아이디어 생성"
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 협업 프롬프트 - Brainstorming
1
+ # AI Collaboration Prompt - Brainstorming
2
2
 
3
- ## 협업 모드: Parallel Execution
3
+ ## Collaboration Mode: Parallel Execution
4
4
 
5
- 스테이지에서는 **병렬 실행** 모드를 사용하여 여러 AI 모델이 동시에 아이디어를 생성합니다.
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. **병합**: Best-of-N 선택 통합
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 "최적의 MVP 범위 결정" --rounds 2
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
- - [아이디어 1]
37
- - [아이디어 2]
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. 핵심 기능 아이디어 (최소 10)
22
- 아이디어에 대해:
23
- - 기능 이름 줄 설명
24
- - 사용자 가치 (어떤 문제를 해결하는가?)
25
- - 구현 복잡도 (Low/Medium/High)
26
- - 혁신성 점수 (1-5)
27
-
28
- ### 2. 사용자 페르소나 (3 이상)
29
- 페르소나에 대해:
30
- - 이름, 나이, 직업
31
- - 목표와 동기
32
- - 불만 사항과 pain points
33
- - 기술 친숙도
34
-
35
- ### 3. 경쟁사/유사 서비스 분석
36
- - Reddit, HackerNews, ProductHunt 검색
37
- - 유사 프로젝트 3-5 식별
38
- - 각각의 강점/약점 분석
39
- - 차별화 기회 식별
40
-
41
- ### 4. 발산적 아이디어
42
- - "미친" 아이디어 3개 (실현 가능성 무시)
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
- - 최소 10개 이상의 아이디어 포함
62
- - 구조화된 마크다운 형식
59
+ ## Expected Output
60
+ - Save to `outputs/ideas.md`
61
+ - Include at least 10 ideas
62
+ - Structured markdown format