claude-symphony 0.0.1

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 (197) hide show
  1. package/README.md +374 -0
  2. package/bin/create.js +250 -0
  3. package/package.json +43 -0
  4. package/template/.claude/commands/benchmark.md +103 -0
  5. package/template/.claude/commands/brainstorm.md +67 -0
  6. package/template/.claude/commands/checkpoint.md +93 -0
  7. package/template/.claude/commands/codex.md +107 -0
  8. package/template/.claude/commands/collaborate.md +85 -0
  9. package/template/.claude/commands/context.md +154 -0
  10. package/template/.claude/commands/deploy.md +102 -0
  11. package/template/.claude/commands/fork.md +142 -0
  12. package/template/.claude/commands/gemini.md +84 -0
  13. package/template/.claude/commands/handoff.md +80 -0
  14. package/template/.claude/commands/implement.md +82 -0
  15. package/template/.claude/commands/init-project.md +49 -0
  16. package/template/.claude/commands/next.md +125 -0
  17. package/template/.claude/commands/planning.md +69 -0
  18. package/template/.claude/commands/qa.md +81 -0
  19. package/template/.claude/commands/refactor.md +95 -0
  20. package/template/.claude/commands/research.md +60 -0
  21. package/template/.claude/commands/restore.md +113 -0
  22. package/template/.claude/commands/run-stage.md +78 -0
  23. package/template/.claude/commands/stages.md +109 -0
  24. package/template/.claude/commands/status.md +73 -0
  25. package/template/.claude/commands/tasks.md +80 -0
  26. package/template/.claude/commands/test.md +93 -0
  27. package/template/.claude/commands/ui-ux.md +61 -0
  28. package/template/.claude/commands/validate.md +174 -0
  29. package/template/.claude/hooks/ai-selector.sh +223 -0
  30. package/template/.claude/hooks/auto-checkpoint.sh +187 -0
  31. package/template/.claude/hooks/output-validator.sh +289 -0
  32. package/template/.claude/hooks/post-stage.sh +123 -0
  33. package/template/.claude/hooks/pre-stage.sh +186 -0
  34. package/template/.claude/hooks/session-start.sh +90 -0
  35. package/template/.claude/hooks/statusline.sh +115 -0
  36. package/template/.claude/hooks/stop.sh +104 -0
  37. package/template/.claude/settings.json +149 -0
  38. package/template/.claude/skills/ai-collaboration/README.md +61 -0
  39. package/template/.claude/skills/ai-collaboration/debate.md +148 -0
  40. package/template/.claude/skills/ai-collaboration/parallel.md +96 -0
  41. package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +107 -0
  42. package/template/.claude/skills/auto-checkpoint/README.md +77 -0
  43. package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +113 -0
  44. package/template/.claude/skills/auto-checkpoint/rollback.md +152 -0
  45. package/template/.claude/skills/auto-checkpoint/trigger.md +122 -0
  46. package/template/.claude/skills/context-compression/README.md +121 -0
  47. package/template/.claude/skills/context-compression/analyze.md +114 -0
  48. package/template/.claude/skills/context-compression/compress.md +175 -0
  49. package/template/.claude/skills/context-compression/prompts/compression.md +172 -0
  50. package/template/.claude/skills/output-validator/README.md +86 -0
  51. package/template/.claude/skills/output-validator/prompts/CLAUDE.md +119 -0
  52. package/template/.claude/skills/output-validator/validate.md +182 -0
  53. package/template/.claude/skills/smart-handoff/README.md +59 -0
  54. package/template/.claude/skills/smart-handoff/extract.md +76 -0
  55. package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +86 -0
  56. package/template/.claude/skills/smart-handoff/summarize.md +94 -0
  57. package/template/.claude/skills/stage-transition/README.md +84 -0
  58. package/template/.claude/skills/stage-transition/handoff-gen.md +160 -0
  59. package/template/.claude/skills/stage-transition/prompts/transition.md +145 -0
  60. package/template/.claude/skills/stage-transition/validate.md +108 -0
  61. package/template/CLAUDE.md +528 -0
  62. package/template/config/ai_benchmarking.yaml +184 -0
  63. package/template/config/ai_collaboration.yaml +159 -0
  64. package/template/config/ai_logging.yaml +129 -0
  65. package/template/config/auto_checkpoint.yaml +189 -0
  66. package/template/config/context.yaml +78 -0
  67. package/template/config/git.yaml +161 -0
  68. package/template/config/handoff_intelligence.yaml +229 -0
  69. package/template/config/implementation.yaml.template +181 -0
  70. package/template/config/mcp_fallbacks.yaml +252 -0
  71. package/template/config/memory_integration.yaml +200 -0
  72. package/template/config/model_enforcement.yaml +141 -0
  73. package/template/config/models.yaml +242 -0
  74. package/template/config/output_validation.yaml +352 -0
  75. package/template/config/pipeline.yaml +357 -0
  76. package/template/config/pipeline_forking.yaml +236 -0
  77. package/template/config/qa_logging.yaml +166 -0
  78. package/template/config/smart_rollback.yaml +209 -0
  79. package/template/config/stage_personas.yaml +354 -0
  80. package/template/config/workflow.yaml +54 -0
  81. package/template/scripts/ai-benchmark.sh +272 -0
  82. package/template/scripts/codex-wrapper.sh +97 -0
  83. package/template/scripts/context-manager.sh +528 -0
  84. package/template/scripts/create-checkpoint.sh +116 -0
  85. package/template/scripts/gemini-wrapper.sh +96 -0
  86. package/template/scripts/init-project.sh +109 -0
  87. package/template/scripts/list-stages.sh +245 -0
  88. package/template/scripts/next-stage.sh +228 -0
  89. package/template/scripts/output-validate.sh +12 -0
  90. package/template/scripts/pipeline-fork.sh +293 -0
  91. package/template/scripts/pre-run-check.sh +361 -0
  92. package/template/scripts/restore-checkpoint.sh +247 -0
  93. package/template/scripts/run-stage.sh +139 -0
  94. package/template/scripts/show-status.sh +185 -0
  95. package/template/scripts/smart-handoff.sh +254 -0
  96. package/template/stages/01-brainstorm/CLAUDE.md +103 -0
  97. package/template/stages/01-brainstorm/HANDOFF.md.template +112 -0
  98. package/template/stages/01-brainstorm/README.md +97 -0
  99. package/template/stages/01-brainstorm/config.yaml +92 -0
  100. package/template/stages/01-brainstorm/inputs/.gitkeep +0 -0
  101. package/template/stages/01-brainstorm/outputs/.gitkeep +0 -0
  102. package/template/stages/01-brainstorm/prompts/collaboration.md +46 -0
  103. package/template/stages/01-brainstorm/prompts/ideation.md +62 -0
  104. package/template/stages/01-brainstorm/prompts/persona.md +73 -0
  105. package/template/stages/01-brainstorm/prompts/requirements.md +73 -0
  106. package/template/stages/01-brainstorm/prompts/validation.md +50 -0
  107. package/template/stages/01-brainstorm/templates/ideas.md +91 -0
  108. package/template/stages/01-brainstorm/templates/requirements_analysis.md +129 -0
  109. package/template/stages/02-research/CLAUDE.md +101 -0
  110. package/template/stages/02-research/HANDOFF.md.template +102 -0
  111. package/template/stages/02-research/config.yaml +68 -0
  112. package/template/stages/02-research/inputs/.gitkeep +0 -0
  113. package/template/stages/02-research/outputs/.gitkeep +0 -0
  114. package/template/stages/02-research/prompts/collaboration.md +51 -0
  115. package/template/stages/02-research/prompts/feasibility.md +73 -0
  116. package/template/stages/02-research/prompts/market_analysis.md +58 -0
  117. package/template/stages/02-research/prompts/tech_stack.md +60 -0
  118. package/template/stages/02-research/prompts/validation.md +51 -0
  119. package/template/stages/02-research/templates/.gitkeep +0 -0
  120. package/template/stages/03-planning/CLAUDE.md +98 -0
  121. package/template/stages/03-planning/HANDOFF.md.template +91 -0
  122. package/template/stages/03-planning/config.yaml +64 -0
  123. package/template/stages/03-planning/inputs/.gitkeep +0 -0
  124. package/template/stages/03-planning/outputs/.gitkeep +0 -0
  125. package/template/stages/03-planning/prompts/architecture.md +62 -0
  126. package/template/stages/03-planning/prompts/collaboration.md +57 -0
  127. package/template/stages/03-planning/prompts/validation.md +59 -0
  128. package/template/stages/03-planning/templates/.gitkeep +0 -0
  129. package/template/stages/04-ui-ux/CLAUDE.md +88 -0
  130. package/template/stages/04-ui-ux/HANDOFF.md.template +92 -0
  131. package/template/stages/04-ui-ux/config.yaml +57 -0
  132. package/template/stages/04-ui-ux/inputs/.gitkeep +0 -0
  133. package/template/stages/04-ui-ux/outputs/.gitkeep +0 -0
  134. package/template/stages/04-ui-ux/prompts/.gitkeep +0 -0
  135. package/template/stages/04-ui-ux/prompts/collaboration.md +56 -0
  136. package/template/stages/04-ui-ux/prompts/validation.md +54 -0
  137. package/template/stages/04-ui-ux/templates/.gitkeep +0 -0
  138. package/template/stages/05-task-management/CLAUDE.md +105 -0
  139. package/template/stages/05-task-management/HANDOFF.md.template +97 -0
  140. package/template/stages/05-task-management/config.yaml +81 -0
  141. package/template/stages/05-task-management/inputs/.gitkeep +0 -0
  142. package/template/stages/05-task-management/outputs/.gitkeep +0 -0
  143. package/template/stages/05-task-management/prompts/.gitkeep +0 -0
  144. package/template/stages/05-task-management/prompts/collaboration.md +54 -0
  145. package/template/stages/05-task-management/prompts/validation.md +66 -0
  146. package/template/stages/05-task-management/templates/notion_integration.md +176 -0
  147. package/template/stages/05-task-management/templates/parallel_groups.yaml +153 -0
  148. package/template/stages/05-task-management/templates/task_schema.yaml +154 -0
  149. package/template/stages/06-implementation/CLAUDE.md +163 -0
  150. package/template/stages/06-implementation/HANDOFF.md.template +192 -0
  151. package/template/stages/06-implementation/config.yaml +62 -0
  152. package/template/stages/06-implementation/inputs/.gitkeep +0 -0
  153. package/template/stages/06-implementation/outputs/.gitkeep +0 -0
  154. package/template/stages/06-implementation/prompts/.gitkeep +0 -0
  155. package/template/stages/06-implementation/prompts/collaboration.md +64 -0
  156. package/template/stages/06-implementation/prompts/validation.md +65 -0
  157. package/template/stages/06-implementation/templates/.gitkeep +0 -0
  158. package/template/stages/07-refactoring/CLAUDE.md +180 -0
  159. package/template/stages/07-refactoring/HANDOFF.md.template +97 -0
  160. package/template/stages/07-refactoring/config.yaml +68 -0
  161. package/template/stages/07-refactoring/inputs/.gitkeep +0 -0
  162. package/template/stages/07-refactoring/outputs/.gitkeep +0 -0
  163. package/template/stages/07-refactoring/prompts/.gitkeep +0 -0
  164. package/template/stages/07-refactoring/prompts/collaboration.md +71 -0
  165. package/template/stages/07-refactoring/prompts/validation.md +76 -0
  166. package/template/stages/07-refactoring/templates/.gitkeep +0 -0
  167. package/template/stages/08-qa/CLAUDE.md +93 -0
  168. package/template/stages/08-qa/HANDOFF.md.template +96 -0
  169. package/template/stages/08-qa/config.yaml +56 -0
  170. package/template/stages/08-qa/inputs/.gitkeep +0 -0
  171. package/template/stages/08-qa/outputs/.gitkeep +0 -0
  172. package/template/stages/08-qa/prompts/.gitkeep +0 -0
  173. package/template/stages/08-qa/prompts/collaboration.md +65 -0
  174. package/template/stages/08-qa/prompts/validation.md +71 -0
  175. package/template/stages/08-qa/templates/.gitkeep +0 -0
  176. package/template/stages/09-testing/CLAUDE.md +124 -0
  177. package/template/stages/09-testing/HANDOFF.md.template +113 -0
  178. package/template/stages/09-testing/config.yaml +65 -0
  179. package/template/stages/09-testing/inputs/.gitkeep +0 -0
  180. package/template/stages/09-testing/outputs/.gitkeep +0 -0
  181. package/template/stages/09-testing/prompts/.gitkeep +0 -0
  182. package/template/stages/09-testing/prompts/collaboration.md +77 -0
  183. package/template/stages/09-testing/prompts/validation.md +83 -0
  184. package/template/stages/09-testing/templates/.gitkeep +0 -0
  185. package/template/stages/10-deployment/CLAUDE.md +117 -0
  186. package/template/stages/10-deployment/HANDOFF.md.template +148 -0
  187. package/template/stages/10-deployment/config.yaml +61 -0
  188. package/template/stages/10-deployment/inputs/.gitkeep +0 -0
  189. package/template/stages/10-deployment/outputs/.gitkeep +0 -0
  190. package/template/stages/10-deployment/prompts/.gitkeep +0 -0
  191. package/template/stages/10-deployment/prompts/collaboration.md +80 -0
  192. package/template/stages/10-deployment/prompts/validation.md +93 -0
  193. package/template/stages/10-deployment/templates/github-actions-cd.yaml +118 -0
  194. package/template/stages/10-deployment/templates/github-actions-ci.yaml +136 -0
  195. package/template/state/progress.json.template +111 -0
  196. package/template/state/templates/handoff_base.md.template +187 -0
  197. package/template/state/templates/phase_state.md.template +97 -0
@@ -0,0 +1,112 @@
1
+ # Stage Handoff: 01-brainstorm → 02-research
2
+
3
+ **생성일**: {{TIMESTAMP}}
4
+ **생성자**: {{MODEL}}
5
+ **소요 시간**: {{DURATION}}
6
+
7
+ ---
8
+
9
+ ## 완료된 작업
10
+
11
+ - [ ] 프로젝트 브리프 분석
12
+ - [ ] 브레인스토밍 ({{IDEA_COUNT}}개 아이디어)
13
+ - [ ] 사용자 페르소나 생성 ({{PERSONA_COUNT}}개)
14
+ - [ ] 요구사항 분석
15
+ - [ ] MVP 범위 정의
16
+ - [ ] HANDOFF.md 생성
17
+
18
+ ---
19
+
20
+ ## 다음 에이전트를 위한 컨텍스트
21
+
22
+ ### 핵심 결정사항
23
+
24
+ | 결정 | 이유 | 되돌릴 수 있음 |
25
+ |------|------|----------------|
26
+ | {{DECISION_1}} | {{REASON_1}} | Yes/No |
27
+ | {{DECISION_2}} | {{REASON_2}} | Yes/No |
28
+
29
+ ### 성공한 접근법
30
+ - {{SUCCESSFUL_APPROACH_1}}
31
+ - {{SUCCESSFUL_APPROACH_2}}
32
+
33
+ ### 실패한 접근법
34
+ - {{FAILED_APPROACH_1}}: {{FAILURE_REASON_1}}
35
+
36
+ ### 우선순위 아이디어 (Top 5)
37
+ 1. **{{IDEA_1}}** - {{IDEA_1_VALUE}}
38
+ 2. **{{IDEA_2}}** - {{IDEA_2_VALUE}}
39
+ 3. **{{IDEA_3}}** - {{IDEA_3_VALUE}}
40
+ 4. **{{IDEA_4}}** - {{IDEA_4_VALUE}}
41
+ 5. **{{IDEA_5}}** - {{IDEA_5_VALUE}}
42
+
43
+ ### MVP 핵심 기능
44
+ 1. {{MVP_FEATURE_1}}
45
+ 2. {{MVP_FEATURE_2}}
46
+ 3. {{MVP_FEATURE_3}}
47
+
48
+ ---
49
+
50
+ ## 생성된 산출물
51
+
52
+ | 파일 | 설명 | 위치 |
53
+ |------|------|------|
54
+ | ideas.md | 브레인스토밍 아이디어 | `outputs/ideas.md` |
55
+ | requirements_analysis.md | 요구사항 분석 | `outputs/requirements_analysis.md` |
56
+ | personas.md | 사용자 페르소나 | `outputs/personas.md` (선택) |
57
+
58
+ ---
59
+
60
+ ## 02-research 스테이지 가이드
61
+
62
+ ### 즉시 실행할 작업
63
+ 1. `outputs/requirements_analysis.md` 읽고 MVP 범위 확인
64
+ 2. 우선순위 아이디어 기술 스택 리서치
65
+ 3. 경쟁사 심층 분석
66
+
67
+ ### 리서치 우선순위
68
+ 1. {{RESEARCH_PRIORITY_1}}
69
+ 2. {{RESEARCH_PRIORITY_2}}
70
+ 3. {{RESEARCH_PRIORITY_3}}
71
+
72
+ ### 검증 필요 가정
73
+ - {{ASSUMPTION_1}}
74
+ - {{ASSUMPTION_2}}
75
+
76
+ ### 권장 MCP 서버
77
+ - `firecrawl`: 웹 크롤링
78
+ - `exa`: AI 검색
79
+ - `context7`: 문서 검색
80
+
81
+ ---
82
+
83
+ ## 체크포인트 참조
84
+ > 이 스테이지는 체크포인트가 필요하지 않습니다.
85
+
86
+ ---
87
+
88
+ ## AI 호출 기록
89
+
90
+ | AI | 호출 시간 | 프롬프트 | 결과 | 상태 |
91
+ |----|----------|---------|------|------|
92
+ | {{AI_1}} | {{TIME_1}} | {{PROMPT_1}} | {{OUTPUT_1}} | {{STATUS_1}} |
93
+ | {{AI_2}} | {{TIME_2}} | {{PROMPT_2}} | {{OUTPUT_2}} | {{STATUS_2}} |
94
+
95
+ > 설정: `config/ai_logging.yaml`
96
+
97
+ ---
98
+
99
+ ## 메타데이터
100
+
101
+ ```yaml
102
+ stage: "01-brainstorm"
103
+ status: "completed"
104
+ next_stage: "02-research"
105
+ models_used:
106
+ - gemini
107
+ - claudecode
108
+ tokens_used: {{TOKENS_USED}}
109
+ outputs_generated:
110
+ - ideas.md
111
+ - requirements_analysis.md
112
+ ```
@@ -0,0 +1,97 @@
1
+ # Stage 01: Brainstorming
2
+
3
+ 발산적 아이디어 생성 및 요구사항 탐색
4
+
5
+ ## 개요
6
+
7
+ 이 스테이지는 프로젝트의 시작점으로, 창의적 아이디어 발산과 초기 요구사항 분석을 수행합니다.
8
+
9
+ ## 실행 모델
10
+
11
+ | 역할 | 모델 | 목적 |
12
+ |------|------|------|
13
+ | Primary | Gemini | 창의적 아이디어 생성, 웹 리서치 |
14
+ | Secondary | ClaudeCode | 구조화, 실현 가능성 검토 |
15
+
16
+ ## 시작하기
17
+
18
+ ### 1. 입력 파일 준비
19
+
20
+ ```bash
21
+ # 프로젝트 브리프 작성
22
+ cp templates/project_brief.md inputs/project_brief.md
23
+ # 편집 후 내용 채우기
24
+ ```
25
+
26
+ ### 2. 스테이지 실행
27
+
28
+ ```bash
29
+ # 방법 1: 슬래시 커맨드
30
+ /run-stage 01-brainstorm
31
+
32
+ # 방법 2: 스크립트 직접 실행
33
+ ../../scripts/run-stage.sh 01-brainstorm
34
+ ```
35
+
36
+ ### 3. 수동 워크플로우
37
+
38
+ ```bash
39
+ # Step 1: Gemini로 아이디어 발산
40
+ /gemini "$(cat prompts/ideation.md)"
41
+
42
+ # Step 2: 결과를 outputs/ideas.md에 저장
43
+
44
+ # Step 3: 요구사항 분석
45
+ # ClaudeCode가 자동 수행
46
+
47
+ # Step 4: HANDOFF.md 생성
48
+ /handoff
49
+ ```
50
+
51
+ ## 디렉토리 구조
52
+
53
+ ```
54
+ 01-brainstorm/
55
+ ├── README.md # 이 파일
56
+ ├── CLAUDE.md # AI 지침
57
+ ├── config.yaml # 스테이지 설정
58
+ ├── prompts/
59
+ │ ├── ideation.md # 아이디어 발산 프롬프트
60
+ │ ├── persona.md # 페르소나 생성 프롬프트
61
+ │ └── requirements.md # 요구사항 분석 프롬프트
62
+ ├── templates/
63
+ │ ├── ideas.md # 아이디어 출력 템플릿
64
+ │ └── requirements_analysis.md # 요구사항 출력 템플릿
65
+ ├── inputs/ # 입력 파일
66
+ ├── outputs/ # 출력 파일
67
+ ├── HANDOFF.md.template # 핸드오프 템플릿
68
+ └── HANDOFF.md # 생성된 핸드오프 (완료 시)
69
+ ```
70
+
71
+ ## 완료 조건
72
+
73
+ - [ ] 최소 10개 아이디어 생성
74
+ - [ ] 3개 이상 사용자 페르소나 정의
75
+ - [ ] 요구사항 분석 문서 완성
76
+ - [ ] MVP 범위 정의
77
+ - [ ] HANDOFF.md 생성
78
+
79
+ ## 출력물
80
+
81
+ | 파일 | 설명 |
82
+ |------|------|
83
+ | `outputs/ideas.md` | 브레인스토밍 아이디어 목록 |
84
+ | `outputs/requirements_analysis.md` | 요구사항 분석 결과 |
85
+ | `outputs/personas.md` | 사용자 페르소나 (선택) |
86
+ | `HANDOFF.md` | 다음 스테이지 인계 문서 |
87
+
88
+ ## 다음 스테이지
89
+
90
+ **→ 02-research**: 기술 리서치 및 시장 분석
91
+
92
+ ## 팁
93
+
94
+ 1. **발산적 사고**: 이 단계에서는 아이디어 제한 없이 자유롭게
95
+ 2. **모든 것을 기록**: 나중에 재검토할 수 있도록
96
+ 3. **Gemini 활용**: 웹 검색이 필요한 경쟁사 분석에 활용
97
+ 4. **구조화는 나중에**: ClaudeCode가 구조화 담당
@@ -0,0 +1,92 @@
1
+ # Stage 01: Brainstorming Configuration
2
+
3
+ stage:
4
+ id: "01-brainstorm"
5
+ name: "Brainstorming"
6
+ description: "발산적 아이디어 생성 및 요구사항 탐색"
7
+
8
+ # Model Assignment
9
+ models:
10
+ primary: "gemini"
11
+ secondary: "claudecode"
12
+ collaboration: "parallel" # parallel | sequential | handoff
13
+
14
+ # AI 자동 호출 설정 (Issue #12 해결)
15
+ auto_invoke:
16
+ enabled: true
17
+ model: "gemini"
18
+ trigger: "stage_start"
19
+ prompt_file: "prompts/ideation.md"
20
+ wrapper: "scripts/gemini-wrapper.sh"
21
+ required: true
22
+ message: "🤖 Gemini 자동 호출: 발산적 아이디어 생성 시작"
23
+
24
+ # Execution Mode
25
+ execution:
26
+ mode: "yolo"
27
+ container: true
28
+ sandbox: false
29
+ timeout: 3600 # 1 hour
30
+
31
+ # Input/Output Definitions
32
+ inputs:
33
+ required:
34
+ - name: "project_brief.md"
35
+ description: "프로젝트 개요 및 목표"
36
+ schema: null
37
+ optional:
38
+ - name: "user_requirements.md"
39
+ description: "초기 사용자 요구사항"
40
+ - name: "reference_materials/"
41
+ description: "참고 자료 디렉토리"
42
+
43
+ outputs:
44
+ required:
45
+ - name: "ideas.md"
46
+ description: "브레인스토밍 아이디어 목록"
47
+ template: "templates/ideas.md"
48
+ - name: "requirements_analysis.md"
49
+ description: "요구사항 분석 결과"
50
+ template: "templates/requirements_analysis.md"
51
+ - name: "HANDOFF.md"
52
+ description: "다음 스테이지 인계 문서"
53
+ template: "HANDOFF.md.template"
54
+ optional:
55
+ - name: "personas.md"
56
+ description: "사용자 페르소나"
57
+ - name: "competitive_analysis.md"
58
+ description: "경쟁사 분석"
59
+
60
+ # Prompts
61
+ prompts:
62
+ - name: "ideation"
63
+ file: "prompts/ideation.md"
64
+ model: "gemini"
65
+ description: "발산적 아이디어 생성"
66
+ - name: "persona"
67
+ file: "prompts/persona.md"
68
+ model: "gemini"
69
+ description: "사용자 페르소나 생성"
70
+ - name: "requirements"
71
+ file: "prompts/requirements.md"
72
+ model: "claudecode"
73
+ description: "요구사항 분석 및 구조화"
74
+
75
+ # Completion Criteria
76
+ completion:
77
+ checklist:
78
+ - "최소 10개 아이디어 생성"
79
+ - "3개 이상 사용자 페르소나 정의"
80
+ - "요구사항 분석 문서 완성"
81
+ - "HANDOFF.md 생성"
82
+ validation:
83
+ min_ideas: 10
84
+ min_personas: 3
85
+ require_handoff: true
86
+
87
+ # Transition
88
+ transition:
89
+ next_stage: "02-research"
90
+ prerequisites: []
91
+ handoff_required: true
92
+ checkpoint_required: false
File without changes
File without changes
@@ -0,0 +1,46 @@
1
+ # AI 협업 프롬프트 - Brainstorming
2
+
3
+ ## 협업 모드: Parallel Execution
4
+
5
+ 이 스테이지에서는 **병렬 실행** 모드를 사용하여 여러 AI 모델이 동시에 아이디어를 생성합니다.
6
+
7
+ ### 참여 모델
8
+ - **Gemini**: 창의적 아이디어 발산, 웹 리서치
9
+ - **Claude**: 구조화, 실현 가능성 검토
10
+
11
+ ### 협업 프롬프트
12
+
13
+ ```
14
+ /collaborate --mode parallel --models gemini,claude --task "아이디어 브레인스토밍"
15
+ ```
16
+
17
+ ### 병합 전략
18
+
19
+ 1. **Gemini 결과**: 창의적 아이디어, 다양한 관점
20
+ 2. **Claude 결과**: 구조화된 분석, 실현 가능성 평가
21
+ 3. **병합**: Best-of-N 선택 후 통합
22
+
23
+ ### 토론 모드 (선택적)
24
+
25
+ 복잡한 아이디어 평가 시 토론 모드 활용:
26
+ ```
27
+ /collaborate --mode debate --topic "최적의 MVP 범위 결정" --rounds 2
28
+ ```
29
+
30
+ ### 출력 형식
31
+
32
+ ```markdown
33
+ ## AI 협업 결과
34
+
35
+ ### Gemini 아이디어
36
+ - [아이디어 1]
37
+ - [아이디어 2]
38
+ ...
39
+
40
+ ### Claude 분석
41
+ - [구조화된 평가]
42
+ ...
43
+
44
+ ### 통합 결과
45
+ - [최종 아이디어 목록]
46
+ ```
@@ -0,0 +1,62 @@
1
+ # Ideation Prompt Template
2
+
3
+ 프로젝트 브레인스토밍을 위한 발산적 아이디어 생성 프롬프트
4
+
5
+ ## 사용 모델
6
+ Gemini (창의적 발산에 적합)
7
+
8
+ ## 프롬프트
9
+
10
+ ```
11
+ 당신은 창의적인 프로덕트 매니저이자 아이디어 전문가입니다.
12
+
13
+ 다음 프로젝트 브리프를 분석하고 포괄적인 브레인스토밍을 수행해주세요:
14
+
15
+ ---
16
+ {{PROJECT_BRIEF}}
17
+ ---
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
+ 마크다운 형식으로 구조화하여 출력해주세요.
47
+ ```
48
+
49
+ ## 사용 예시
50
+
51
+ ```bash
52
+ # Gemini CLI 호출
53
+ /gemini "$(cat prompts/ideation.md | sed 's/{{PROJECT_BRIEF}}/'"$(cat inputs/project_brief.md)"'/')"
54
+
55
+ # 또는 직접 호출
56
+ scripts/gemini-wrapper.sh "$(cat prompts/ideation.md)"
57
+ ```
58
+
59
+ ## 기대 출력
60
+ - `outputs/ideas.md`로 저장
61
+ - 최소 10개 이상의 아이디어 포함
62
+ - 구조화된 마크다운 형식
@@ -0,0 +1,73 @@
1
+ # Persona Generation Prompt Template
2
+
3
+ 사용자 페르소나 생성을 위한 프롬프트
4
+
5
+ ## 사용 모델
6
+ Gemini
7
+
8
+ ## 프롬프트
9
+
10
+ ```
11
+ 당신은 UX 리서처이자 사용자 심리 전문가입니다.
12
+
13
+ 다음 프로젝트에 대한 상세 사용자 페르소나를 생성해주세요:
14
+
15
+ ---
16
+ 프로젝트: {{PROJECT_NAME}}
17
+ 설명: {{PROJECT_DESCRIPTION}}
18
+ 대상 시장: {{TARGET_MARKET}}
19
+ ---
20
+
21
+ ## 페르소나 생성 요청
22
+
23
+ 각 페르소나에 대해 다음 정보를 포함해주세요:
24
+
25
+ ### 기본 정보
26
+ - **이름**: (가상의 현실적인 이름)
27
+ - **나이**:
28
+ - **직업**:
29
+ - **위치**:
30
+ - **교육 수준**:
31
+
32
+ ### 심리적 프로필
33
+ - **성격 유형** (MBTI 참고):
34
+ - **가치관**:
35
+ - **라이프스타일**:
36
+
37
+ ### 목표와 동기
38
+ - **주요 목표** (이 제품과 관련하여):
39
+ - **숨겨진 동기**:
40
+ - **성공의 정의**:
41
+
42
+ ### Pain Points
43
+ - **현재 해결책의 불만**:
44
+ - **시간/비용 낭비 요소**:
45
+ - **감정적 좌절감**:
46
+
47
+ ### 기술 프로필
48
+ - **기술 친숙도** (1-5):
49
+ - **주로 사용하는 기기**:
50
+ - **앱 사용 패턴**:
51
+
52
+ ### 사용 시나리오
53
+ - **제품을 발견하는 상황**:
54
+ - **핵심 사용 사례**:
55
+ - **기대하는 결과**:
56
+
57
+ ### 인용구
58
+ 이 페르소나가 할 법한 말:
59
+ > "..."
60
+
61
+ ## 출력 형식
62
+ 3개 이상의 페르소나를 마크다운 형식으로 출력해주세요.
63
+ 각 페르소나는 명확히 구분되어야 합니다.
64
+ ```
65
+
66
+ ## 변수 치환
67
+ - `{{PROJECT_NAME}}`: 프로젝트 이름
68
+ - `{{PROJECT_DESCRIPTION}}`: 프로젝트 설명
69
+ - `{{TARGET_MARKET}}`: 대상 시장
70
+
71
+ ## 기대 출력
72
+ - `outputs/personas.md`로 저장
73
+ - 최소 3개 이상의 상세 페르소나
@@ -0,0 +1,73 @@
1
+ # Requirements Analysis Prompt Template
2
+
3
+ 요구사항 분석 및 구조화를 위한 프롬프트
4
+
5
+ ## 사용 모델
6
+ ClaudeCode (구조화 및 분석에 적합)
7
+
8
+ ## 프롬프트
9
+
10
+ ```
11
+ 당신은 시니어 시스템 분석가입니다.
12
+
13
+ 다음 브레인스토밍 결과와 프로젝트 브리프를 바탕으로
14
+ 체계적인 요구사항 분석을 수행해주세요:
15
+
16
+ ---
17
+ ## 프로젝트 브리프
18
+ {{PROJECT_BRIEF}}
19
+
20
+ ## 브레인스토밍 결과
21
+ {{BRAINSTORM_IDEAS}}
22
+
23
+ ## 사용자 페르소나
24
+ {{PERSONAS}}
25
+ ---
26
+
27
+ ## 분석 요청
28
+
29
+ ### 1. 기능적 요구사항 (Functional Requirements)
30
+ 카테고리별로 분류:
31
+ - 사용자 관리
32
+ - 핵심 기능
33
+ - 데이터 관리
34
+ - 통합/연동
35
+ - 보고/분석
36
+
37
+ 각 요구사항에 대해:
38
+ | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
39
+ |----|----------|----------|--------|--------|
40
+
41
+ ### 2. 비기능적 요구사항 (Non-Functional Requirements)
42
+ - **성능**: 응답 시간, 처리량
43
+ - **확장성**: 사용자 수, 데이터 볼륨
44
+ - **보안**: 인증, 권한, 데이터 보호
45
+ - **가용성**: 업타임 목표
46
+ - **사용성**: 접근성, UX 기준
47
+
48
+ ### 3. 제약조건 (Constraints)
49
+ - 기술적 제약
50
+ - 비즈니스 제약
51
+ - 시간/예산 제약
52
+ - 규제/법적 제약
53
+
54
+ ### 4. 가정사항 (Assumptions)
55
+ 검증이 필요한 가정들
56
+
57
+ ### 5. MVP 범위 제안
58
+ - **필수 기능** (Must Have)
59
+ - **있으면 좋은 기능** (Nice to Have)
60
+ - **향후 버전** (Future)
61
+
62
+ ### 6. 리스크 식별
63
+ | 리스크 | 영향도 | 발생 확률 | 완화 전략 |
64
+ |--------|--------|-----------|-----------|
65
+
66
+ ## 출력 형식
67
+ 구조화된 마크다운 문서로 출력해주세요.
68
+ ```
69
+
70
+ ## 기대 출력
71
+ - `outputs/requirements_analysis.md`로 저장
72
+ - MoSCoW 우선순위가 적용된 요구사항 목록
73
+ - MVP 범위 명확히 정의
@@ -0,0 +1,50 @@
1
+ # 산출물 검증 프롬프트 - Brainstorming
2
+
3
+ ## 검증 대상
4
+
5
+ | 산출물 | 필수 조건 | 검증 방법 |
6
+ |--------|----------|----------|
7
+ | `ideas.md` | 최소 10개 아이디어 | 수량 확인 |
8
+ | `requirements_analysis.md` | 기능/비기능 섹션 포함 | 구조 확인 |
9
+ | `HANDOFF.md` | 완료 체크리스트 | 항목 확인 |
10
+
11
+ ## 검증 명령
12
+
13
+ ```bash
14
+ /validate --stage 01-brainstorm
15
+ ```
16
+
17
+ ## 품질 기준
18
+
19
+ ### ideas.md
20
+ - [ ] 최소 10개 아이디어 존재
21
+ - [ ] 각 아이디어에 장단점 분석
22
+ - [ ] 우선순위 또는 카테고리 분류
23
+ - [ ] 실현 가능성 초기 평가
24
+
25
+ ### requirements_analysis.md
26
+ - [ ] 기능적 요구사항 섹션
27
+ - [ ] 비기능적 요구사항 섹션
28
+ - [ ] 제약조건 식별
29
+ - [ ] MVP 범위 제안
30
+
31
+ ### HANDOFF.md
32
+ - [ ] 완료된 작업 체크리스트
33
+ - [ ] 핵심 결정사항
34
+ - [ ] 다음 스테이지 준비 항목
35
+
36
+ ## 자동 검증 스크립트
37
+
38
+ ```bash
39
+ # ideas.md 아이디어 수 확인
40
+ grep -c "^## " outputs/ideas.md
41
+
42
+ # requirements_analysis.md 섹션 확인
43
+ grep -E "^## (기능|비기능)" outputs/requirements_analysis.md
44
+ ```
45
+
46
+ ## 실패 시 조치
47
+
48
+ 1. 부족한 항목 식별
49
+ 2. 추가 아이디어 생성 또는 분석 보완
50
+ 3. 재검증 실행
@@ -0,0 +1,91 @@
1
+ # Brainstorming Ideas
2
+
3
+ **프로젝트**: {{PROJECT_NAME}}
4
+ **생성일**: {{DATE}}
5
+ **생성자**: {{MODEL}} (Gemini + ClaudeCode)
6
+
7
+ ---
8
+
9
+ ## 핵심 기능 아이디어
10
+
11
+ ### 아이디어 요약 테이블
12
+
13
+ | # | 기능명 | 설명 | 사용자 가치 | 복잡도 | 혁신성 |
14
+ |---|--------|------|-------------|--------|--------|
15
+ | 1 | | | | | |
16
+ | 2 | | | | | |
17
+ | 3 | | | | | |
18
+ | ... | | | | | |
19
+
20
+ ### 상세 아이디어
21
+
22
+ #### 아이디어 1: [기능명]
23
+ - **설명**:
24
+ - **사용자 가치**:
25
+ - **구현 복잡도**: Low / Medium / High
26
+ - **혁신성 점수**: ⭐⭐⭐⭐⭐ (5/5)
27
+ - **비고**:
28
+
29
+ ---
30
+
31
+ ## 발산적 아이디어 ("미친" 아이디어)
32
+
33
+ ### 🚀 아이디어 A: [이름]
34
+ - **설명**:
35
+ - **성공 시 임팩트**:
36
+ - **실현 장벽**:
37
+
38
+ ### 🚀 아이디어 B: [이름]
39
+ - **설명**:
40
+ - **성공 시 임팩트**:
41
+ - **실현 장벽**:
42
+
43
+ ### 🚀 아이디어 C: [이름]
44
+ - **설명**:
45
+ - **성공 시 임팩트**:
46
+ - **실현 장벽**:
47
+
48
+ ---
49
+
50
+ ## 경쟁사/유사 서비스 분석
51
+
52
+ ### 식별된 서비스
53
+
54
+ | 서비스 | 유형 | 강점 | 약점 | 차별화 기회 |
55
+ |--------|------|------|------|-------------|
56
+ | | | | | |
57
+
58
+ ### 상세 분석
59
+
60
+ #### [서비스 1]
61
+ - **URL**:
62
+ - **핵심 기능**:
63
+ - **가격 모델**:
64
+ - **타겟 사용자**:
65
+ - **우리의 차별화 포인트**:
66
+
67
+ ---
68
+
69
+ ## 아이디어 우선순위 매트릭스
70
+
71
+ ```
72
+ 높은 임팩트
73
+
74
+ │ ⭐ Quick Wins │ 🎯 Big Bets
75
+ │ (아이디어 #) │ (아이디어 #)
76
+ │ │
77
+ ────┼────────────────────┼────────────────
78
+ │ │
79
+ │ ❌ Not Worth It │ 🔬 Experiments
80
+ │ (아이디어 #) │ (아이디어 #)
81
+
82
+ 낮은 임팩트
83
+ 낮은 노력 높은 노력
84
+ ```
85
+
86
+ ---
87
+
88
+ ## 다음 단계
89
+ 1. Research 스테이지에서 기술적 실현 가능성 검토
90
+ 2. Quick Wins 아이디어 우선 검증
91
+ 3. Big Bets 아이디어 심층 분석