create-ax-project 1.0.0

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 (258) hide show
  1. package/README.md +374 -0
  2. package/bin/create.js +193 -0
  3. package/package.json +38 -0
  4. package/template/.claude/CLAUDE.md +7 -0
  5. package/template/.claude/commands/CLAUDE.md +0 -0
  6. package/template/.claude/commands/benchmark.md +103 -0
  7. package/template/.claude/commands/brainstorm.md +67 -0
  8. package/template/.claude/commands/checkpoint.md +93 -0
  9. package/template/.claude/commands/codex.md +107 -0
  10. package/template/.claude/commands/collaborate.md +85 -0
  11. package/template/.claude/commands/context.md +154 -0
  12. package/template/.claude/commands/deploy.md +102 -0
  13. package/template/.claude/commands/fork.md +142 -0
  14. package/template/.claude/commands/gemini.md +84 -0
  15. package/template/.claude/commands/handoff.md +80 -0
  16. package/template/.claude/commands/implement.md +82 -0
  17. package/template/.claude/commands/init-project.md +49 -0
  18. package/template/.claude/commands/next.md +125 -0
  19. package/template/.claude/commands/planning.md +69 -0
  20. package/template/.claude/commands/qa.md +81 -0
  21. package/template/.claude/commands/refactor.md +95 -0
  22. package/template/.claude/commands/research.md +60 -0
  23. package/template/.claude/commands/restore.md +113 -0
  24. package/template/.claude/commands/run-stage.md +78 -0
  25. package/template/.claude/commands/stages.md +109 -0
  26. package/template/.claude/commands/status.md +73 -0
  27. package/template/.claude/commands/tasks.md +80 -0
  28. package/template/.claude/commands/test.md +93 -0
  29. package/template/.claude/commands/ui-ux.md +61 -0
  30. package/template/.claude/commands/validate.md +174 -0
  31. package/template/.claude/hooks/CLAUDE.md +0 -0
  32. package/template/.claude/hooks/ai-selector.sh +223 -0
  33. package/template/.claude/hooks/auto-checkpoint.sh +187 -0
  34. package/template/.claude/hooks/output-validator.sh +289 -0
  35. package/template/.claude/hooks/post-stage.sh +123 -0
  36. package/template/.claude/hooks/pre-stage.sh +186 -0
  37. package/template/.claude/hooks/session-start.sh +90 -0
  38. package/template/.claude/hooks/statusline.sh +115 -0
  39. package/template/.claude/hooks/stop.sh +104 -0
  40. package/template/.claude/settings.json +149 -0
  41. package/template/.claude/skills/ai-collaboration/CLAUDE.md +0 -0
  42. package/template/.claude/skills/ai-collaboration/README.md +61 -0
  43. package/template/.claude/skills/ai-collaboration/debate.md +148 -0
  44. package/template/.claude/skills/ai-collaboration/parallel.md +96 -0
  45. package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +107 -0
  46. package/template/.claude/skills/auto-checkpoint/CLAUDE.md +0 -0
  47. package/template/.claude/skills/auto-checkpoint/README.md +77 -0
  48. package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +113 -0
  49. package/template/.claude/skills/auto-checkpoint/rollback.md +152 -0
  50. package/template/.claude/skills/auto-checkpoint/trigger.md +122 -0
  51. package/template/.claude/skills/context-compression/CLAUDE.md +0 -0
  52. package/template/.claude/skills/context-compression/README.md +121 -0
  53. package/template/.claude/skills/context-compression/analyze.md +114 -0
  54. package/template/.claude/skills/context-compression/compress.md +175 -0
  55. package/template/.claude/skills/context-compression/prompts/CLAUDE.md +0 -0
  56. package/template/.claude/skills/context-compression/prompts/compression.md +172 -0
  57. package/template/.claude/skills/output-validator/CLAUDE.md +0 -0
  58. package/template/.claude/skills/output-validator/README.md +86 -0
  59. package/template/.claude/skills/output-validator/prompts/CLAUDE.md +119 -0
  60. package/template/.claude/skills/output-validator/validate.md +182 -0
  61. package/template/.claude/skills/smart-handoff/CLAUDE.md +0 -0
  62. package/template/.claude/skills/smart-handoff/README.md +59 -0
  63. package/template/.claude/skills/smart-handoff/extract.md +76 -0
  64. package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +86 -0
  65. package/template/.claude/skills/smart-handoff/summarize.md +94 -0
  66. package/template/.claude/skills/stage-transition/CLAUDE.md +0 -0
  67. package/template/.claude/skills/stage-transition/README.md +84 -0
  68. package/template/.claude/skills/stage-transition/handoff-gen.md +160 -0
  69. package/template/.claude/skills/stage-transition/prompts/CLAUDE.md +0 -0
  70. package/template/.claude/skills/stage-transition/prompts/transition.md +145 -0
  71. package/template/.claude/skills/stage-transition/validate.md +108 -0
  72. package/template/CLAUDE.md +528 -0
  73. package/template/config/CLAUDE.md +0 -0
  74. package/template/config/ai_benchmarking.yaml +184 -0
  75. package/template/config/ai_collaboration.yaml +159 -0
  76. package/template/config/ai_logging.yaml +129 -0
  77. package/template/config/auto_checkpoint.yaml +189 -0
  78. package/template/config/context.yaml +78 -0
  79. package/template/config/git.yaml +161 -0
  80. package/template/config/handoff_intelligence.yaml +229 -0
  81. package/template/config/implementation.yaml.template +181 -0
  82. package/template/config/mcp_fallbacks.yaml +252 -0
  83. package/template/config/memory_integration.yaml +200 -0
  84. package/template/config/model_enforcement.yaml +141 -0
  85. package/template/config/models.yaml +242 -0
  86. package/template/config/output_validation.yaml +352 -0
  87. package/template/config/pipeline.yaml +357 -0
  88. package/template/config/pipeline_forking.yaml +236 -0
  89. package/template/config/qa_logging.yaml +166 -0
  90. package/template/config/smart_rollback.yaml +209 -0
  91. package/template/config/stage_personas.yaml +354 -0
  92. package/template/config/workflow.yaml +54 -0
  93. package/template/scripts/CLAUDE.md +0 -0
  94. package/template/scripts/ai-benchmark.sh +272 -0
  95. package/template/scripts/codex-wrapper.sh +97 -0
  96. package/template/scripts/context-manager.sh +528 -0
  97. package/template/scripts/create-checkpoint.sh +116 -0
  98. package/template/scripts/gemini-wrapper.sh +96 -0
  99. package/template/scripts/init-project.sh +109 -0
  100. package/template/scripts/list-stages.sh +245 -0
  101. package/template/scripts/next-stage.sh +228 -0
  102. package/template/scripts/output-validate.sh +12 -0
  103. package/template/scripts/pipeline-fork.sh +293 -0
  104. package/template/scripts/pre-run-check.sh +361 -0
  105. package/template/scripts/restore-checkpoint.sh +247 -0
  106. package/template/scripts/run-stage.sh +139 -0
  107. package/template/scripts/show-status.sh +185 -0
  108. package/template/scripts/smart-handoff.sh +254 -0
  109. package/template/stages/01-brainstorm/CLAUDE.md +103 -0
  110. package/template/stages/01-brainstorm/HANDOFF.md +110 -0
  111. package/template/stages/01-brainstorm/HANDOFF.md.template +112 -0
  112. package/template/stages/01-brainstorm/README.md +97 -0
  113. package/template/stages/01-brainstorm/config.yaml +92 -0
  114. package/template/stages/01-brainstorm/inputs/.gitkeep +0 -0
  115. package/template/stages/01-brainstorm/inputs/CLAUDE.md +0 -0
  116. package/template/stages/01-brainstorm/inputs/project_brief.md +40 -0
  117. package/template/stages/01-brainstorm/outputs/.gitkeep +0 -0
  118. package/template/stages/01-brainstorm/outputs/CLAUDE.md +0 -0
  119. package/template/stages/01-brainstorm/outputs/ideas.md +159 -0
  120. package/template/stages/01-brainstorm/outputs/requirements_analysis.md +222 -0
  121. package/template/stages/01-brainstorm/prompts/CLAUDE.md +0 -0
  122. package/template/stages/01-brainstorm/prompts/collaboration.md +46 -0
  123. package/template/stages/01-brainstorm/prompts/ideation.md +62 -0
  124. package/template/stages/01-brainstorm/prompts/persona.md +73 -0
  125. package/template/stages/01-brainstorm/prompts/requirements.md +73 -0
  126. package/template/stages/01-brainstorm/prompts/validation.md +50 -0
  127. package/template/stages/01-brainstorm/templates/CLAUDE.md +0 -0
  128. package/template/stages/01-brainstorm/templates/ideas.md +91 -0
  129. package/template/stages/01-brainstorm/templates/requirements_analysis.md +129 -0
  130. package/template/stages/02-research/CLAUDE.md +101 -0
  131. package/template/stages/02-research/HANDOFF.md +158 -0
  132. package/template/stages/02-research/HANDOFF.md.template +102 -0
  133. package/template/stages/02-research/config.yaml +68 -0
  134. package/template/stages/02-research/inputs/.gitkeep +0 -0
  135. package/template/stages/02-research/outputs/.gitkeep +0 -0
  136. package/template/stages/02-research/outputs/CLAUDE.md +0 -0
  137. package/template/stages/02-research/outputs/feasibility_report.md +176 -0
  138. package/template/stages/02-research/outputs/tech_research.md +403 -0
  139. package/template/stages/02-research/prompts/CLAUDE.md +0 -0
  140. package/template/stages/02-research/prompts/collaboration.md +51 -0
  141. package/template/stages/02-research/prompts/feasibility.md +73 -0
  142. package/template/stages/02-research/prompts/market_analysis.md +58 -0
  143. package/template/stages/02-research/prompts/tech_stack.md +60 -0
  144. package/template/stages/02-research/prompts/validation.md +51 -0
  145. package/template/stages/02-research/templates/.gitkeep +0 -0
  146. package/template/stages/03-planning/CLAUDE.md +98 -0
  147. package/template/stages/03-planning/HANDOFF.md +168 -0
  148. package/template/stages/03-planning/HANDOFF.md.template +91 -0
  149. package/template/stages/03-planning/config.yaml +64 -0
  150. package/template/stages/03-planning/inputs/.gitkeep +0 -0
  151. package/template/stages/03-planning/outputs/.gitkeep +0 -0
  152. package/template/stages/03-planning/outputs/CLAUDE.md +0 -0
  153. package/template/stages/03-planning/outputs/architecture.md +400 -0
  154. package/template/stages/03-planning/outputs/implementation.yaml +209 -0
  155. package/template/stages/03-planning/outputs/project_plan.md +204 -0
  156. package/template/stages/03-planning/outputs/tech_stack.md +176 -0
  157. package/template/stages/03-planning/prompts/CLAUDE.md +0 -0
  158. package/template/stages/03-planning/prompts/architecture.md +62 -0
  159. package/template/stages/03-planning/prompts/collaboration.md +57 -0
  160. package/template/stages/03-planning/prompts/validation.md +59 -0
  161. package/template/stages/03-planning/templates/.gitkeep +0 -0
  162. package/template/stages/04-ui-ux/CLAUDE.md +88 -0
  163. package/template/stages/04-ui-ux/HANDOFF.md +165 -0
  164. package/template/stages/04-ui-ux/HANDOFF.md.template +92 -0
  165. package/template/stages/04-ui-ux/config.yaml +57 -0
  166. package/template/stages/04-ui-ux/inputs/.gitkeep +0 -0
  167. package/template/stages/04-ui-ux/outputs/.gitkeep +0 -0
  168. package/template/stages/04-ui-ux/outputs/CLAUDE.md +0 -0
  169. package/template/stages/04-ui-ux/outputs/design_system.md +449 -0
  170. package/template/stages/04-ui-ux/outputs/user_flows.md +321 -0
  171. package/template/stages/04-ui-ux/outputs/wireframes.md +241 -0
  172. package/template/stages/04-ui-ux/prompts/.gitkeep +0 -0
  173. package/template/stages/04-ui-ux/prompts/CLAUDE.md +0 -0
  174. package/template/stages/04-ui-ux/prompts/collaboration.md +56 -0
  175. package/template/stages/04-ui-ux/prompts/validation.md +54 -0
  176. package/template/stages/04-ui-ux/templates/.gitkeep +0 -0
  177. package/template/stages/05-task-management/CLAUDE.md +105 -0
  178. package/template/stages/05-task-management/HANDOFF.md +187 -0
  179. package/template/stages/05-task-management/HANDOFF.md.template +97 -0
  180. package/template/stages/05-task-management/config.yaml +81 -0
  181. package/template/stages/05-task-management/inputs/.gitkeep +0 -0
  182. package/template/stages/05-task-management/outputs/.gitkeep +0 -0
  183. package/template/stages/05-task-management/outputs/CLAUDE.md +0 -0
  184. package/template/stages/05-task-management/outputs/milestones.md +253 -0
  185. package/template/stages/05-task-management/outputs/sprint_plan.md +203 -0
  186. package/template/stages/05-task-management/outputs/tasks.md +402 -0
  187. package/template/stages/05-task-management/prompts/.gitkeep +0 -0
  188. package/template/stages/05-task-management/prompts/CLAUDE.md +0 -0
  189. package/template/stages/05-task-management/prompts/collaboration.md +54 -0
  190. package/template/stages/05-task-management/prompts/validation.md +66 -0
  191. package/template/stages/05-task-management/templates/CLAUDE.md +0 -0
  192. package/template/stages/05-task-management/templates/notion_integration.md +176 -0
  193. package/template/stages/05-task-management/templates/parallel_groups.yaml +153 -0
  194. package/template/stages/05-task-management/templates/task_schema.yaml +154 -0
  195. package/template/stages/06-implementation/CLAUDE.md +163 -0
  196. package/template/stages/06-implementation/HANDOFF.md +184 -0
  197. package/template/stages/06-implementation/HANDOFF.md.template +192 -0
  198. package/template/stages/06-implementation/config.yaml +62 -0
  199. package/template/stages/06-implementation/inputs/.gitkeep +0 -0
  200. package/template/stages/06-implementation/outputs/.gitkeep +0 -0
  201. package/template/stages/06-implementation/prompts/.gitkeep +0 -0
  202. package/template/stages/06-implementation/prompts/CLAUDE.md +0 -0
  203. package/template/stages/06-implementation/prompts/collaboration.md +64 -0
  204. package/template/stages/06-implementation/prompts/validation.md +65 -0
  205. package/template/stages/06-implementation/templates/.gitkeep +0 -0
  206. package/template/stages/07-refactoring/CLAUDE.md +180 -0
  207. package/template/stages/07-refactoring/HANDOFF.md +82 -0
  208. package/template/stages/07-refactoring/HANDOFF.md.template +97 -0
  209. package/template/stages/07-refactoring/config.yaml +68 -0
  210. package/template/stages/07-refactoring/inputs/.gitkeep +0 -0
  211. package/template/stages/07-refactoring/outputs/.gitkeep +0 -0
  212. package/template/stages/07-refactoring/outputs/refactoring_report.md +102 -0
  213. package/template/stages/07-refactoring/prompts/.gitkeep +0 -0
  214. package/template/stages/07-refactoring/prompts/CLAUDE.md +0 -0
  215. package/template/stages/07-refactoring/prompts/collaboration.md +71 -0
  216. package/template/stages/07-refactoring/prompts/validation.md +76 -0
  217. package/template/stages/07-refactoring/templates/.gitkeep +0 -0
  218. package/template/stages/08-qa/CLAUDE.md +93 -0
  219. package/template/stages/08-qa/HANDOFF.md +114 -0
  220. package/template/stages/08-qa/HANDOFF.md.template +96 -0
  221. package/template/stages/08-qa/config.yaml +56 -0
  222. package/template/stages/08-qa/inputs/.gitkeep +0 -0
  223. package/template/stages/08-qa/outputs/.gitkeep +0 -0
  224. package/template/stages/08-qa/outputs/qa_report.md +138 -0
  225. package/template/stages/08-qa/prompts/.gitkeep +0 -0
  226. package/template/stages/08-qa/prompts/CLAUDE.md +0 -0
  227. package/template/stages/08-qa/prompts/collaboration.md +65 -0
  228. package/template/stages/08-qa/prompts/validation.md +71 -0
  229. package/template/stages/08-qa/templates/.gitkeep +0 -0
  230. package/template/stages/09-testing/CLAUDE.md +124 -0
  231. package/template/stages/09-testing/HANDOFF.md +118 -0
  232. package/template/stages/09-testing/HANDOFF.md.template +113 -0
  233. package/template/stages/09-testing/config.yaml +65 -0
  234. package/template/stages/09-testing/inputs/.gitkeep +0 -0
  235. package/template/stages/09-testing/outputs/.gitkeep +0 -0
  236. package/template/stages/09-testing/outputs/test_report.md +146 -0
  237. package/template/stages/09-testing/prompts/.gitkeep +0 -0
  238. package/template/stages/09-testing/prompts/CLAUDE.md +0 -0
  239. package/template/stages/09-testing/prompts/collaboration.md +77 -0
  240. package/template/stages/09-testing/prompts/validation.md +83 -0
  241. package/template/stages/09-testing/templates/.gitkeep +0 -0
  242. package/template/stages/10-deployment/CLAUDE.md +117 -0
  243. package/template/stages/10-deployment/HANDOFF.md +141 -0
  244. package/template/stages/10-deployment/HANDOFF.md.template +148 -0
  245. package/template/stages/10-deployment/config.yaml +61 -0
  246. package/template/stages/10-deployment/inputs/.gitkeep +0 -0
  247. package/template/stages/10-deployment/outputs/.gitkeep +0 -0
  248. package/template/stages/10-deployment/prompts/.gitkeep +0 -0
  249. package/template/stages/10-deployment/prompts/CLAUDE.md +0 -0
  250. package/template/stages/10-deployment/prompts/collaboration.md +80 -0
  251. package/template/stages/10-deployment/prompts/validation.md +93 -0
  252. package/template/stages/10-deployment/templates/CLAUDE.md +0 -0
  253. package/template/stages/10-deployment/templates/github-actions-cd.yaml +118 -0
  254. package/template/stages/10-deployment/templates/github-actions-ci.yaml +136 -0
  255. package/template/state/progress.json.template +111 -0
  256. package/template/state/templates/CLAUDE.md +0 -0
  257. package/template/state/templates/handoff_base.md.template +187 -0
  258. package/template/state/templates/phase_state.md.template +97 -0
@@ -0,0 +1,129 @@
1
+ # Requirements Analysis
2
+
3
+ **프로젝트**: {{PROJECT_NAME}}
4
+ **생성일**: {{DATE}}
5
+ **버전**: 1.0
6
+
7
+ ---
8
+
9
+ ## 1. 기능적 요구사항 (Functional Requirements)
10
+
11
+ ### 1.1 사용자 관리
12
+
13
+ | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
14
+ |----|----------|----------|--------|--------|
15
+ | FR-UM-001 | | Must | | |
16
+ | FR-UM-002 | | Should | | |
17
+
18
+ ### 1.2 핵심 기능
19
+
20
+ | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
21
+ |----|----------|----------|--------|--------|
22
+ | FR-CF-001 | | Must | | |
23
+ | FR-CF-002 | | Must | | |
24
+
25
+ ### 1.3 데이터 관리
26
+
27
+ | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
28
+ |----|----------|----------|--------|--------|
29
+ | FR-DM-001 | | Should | | |
30
+
31
+ ### 1.4 통합/연동
32
+
33
+ | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
34
+ |----|----------|----------|--------|--------|
35
+ | FR-INT-001 | | Could | | |
36
+
37
+ ---
38
+
39
+ ## 2. 비기능적 요구사항 (Non-Functional Requirements)
40
+
41
+ ### 2.1 성능 (Performance)
42
+ - **응답 시간**: 페이지 로드 < 3초, API 응답 < 500ms
43
+ - **처리량**: 동시 사용자 X명 지원
44
+ - **데이터 볼륨**: 초기 X GB, 연간 성장률 Y%
45
+
46
+ ### 2.2 확장성 (Scalability)
47
+ - **수평 확장**:
48
+ - **수직 확장**:
49
+ - **목표 용량**:
50
+
51
+ ### 2.3 보안 (Security)
52
+ - **인증**:
53
+ - **권한 관리**:
54
+ - **데이터 암호화**:
55
+ - **감사 로그**:
56
+
57
+ ### 2.4 가용성 (Availability)
58
+ - **업타임 목표**: 99.9%
59
+ - **RTO (복구 시간 목표)**:
60
+ - **RPO (복구 시점 목표)**:
61
+
62
+ ### 2.5 사용성 (Usability)
63
+ - **접근성**: WCAG 2.1 Level AA
64
+ - **반응형**: 모바일, 태블릿, 데스크탑
65
+ - **브라우저 지원**:
66
+
67
+ ---
68
+
69
+ ## 3. 제약조건 (Constraints)
70
+
71
+ ### 3.1 기술적 제약
72
+ -
73
+
74
+ ### 3.2 비즈니스 제약
75
+ -
76
+
77
+ ### 3.3 시간/예산 제약
78
+ - **일정**:
79
+ - **예산**:
80
+ - **팀 규모**:
81
+
82
+ ### 3.4 규제/법적 제약
83
+ -
84
+
85
+ ---
86
+
87
+ ## 4. 가정사항 (Assumptions)
88
+
89
+ | ID | 가정 | 검증 필요 | 검증 방법 |
90
+ |----|------|-----------|-----------|
91
+ | A-001 | | Yes | |
92
+ | A-002 | | No | |
93
+
94
+ ---
95
+
96
+ ## 5. MVP 범위
97
+
98
+ ### 5.1 필수 기능 (Must Have)
99
+ 1.
100
+ 2.
101
+ 3.
102
+
103
+ ### 5.2 있으면 좋은 기능 (Should Have)
104
+ 1.
105
+ 2.
106
+
107
+ ### 5.3 가능하면 (Could Have)
108
+ 1.
109
+
110
+ ### 5.4 향후 버전 (Won't Have - This Time)
111
+ 1.
112
+ 2.
113
+
114
+ ---
115
+
116
+ ## 6. 리스크 식별
117
+
118
+ | ID | 리스크 | 영향도 | 확률 | 완화 전략 |
119
+ |----|--------|--------|------|-----------|
120
+ | R-001 | | High | Medium | |
121
+ | R-002 | | Medium | Low | |
122
+
123
+ ---
124
+
125
+ ## 7. 다음 단계
126
+
127
+ 1. [ ] Research 스테이지에서 기술적 실현 가능성 검토
128
+ 2. [ ] Planning 스테이지에서 아키텍처 설계
129
+ 3. [ ] 이해관계자 리뷰 및 승인
@@ -0,0 +1,101 @@
1
+ # Stage 02: Research
2
+
3
+ 기술 리서치 및 시장 분석 단계
4
+
5
+ ## 🎭 페르소나: Analytical Investigator
6
+
7
+ > 당신은 Analytical Investigator입니다.
8
+ > 모든 주장에는 근거를 제시하고, 다양한 관점에서 조사하세요.
9
+ > 트레이드오프를 명확히 하고 객관적인 분석을 제공하세요.
10
+
11
+ ### 특성
12
+ - 체계적 조사
13
+ - 증거 기반 분석
14
+ - 비교 평가
15
+ - 종합적 판단
16
+
17
+ ### 권장 행동
18
+ - 다양한 소스 조사
19
+ - 데이터 기반 분석
20
+ - 트레이드오프 비교
21
+ - 명확한 근거 제시
22
+
23
+ ### 지양 행동
24
+ - 추측에 의존
25
+ - 단일 소스 의존
26
+ - 감정적 판단
27
+
28
+ ### AI 설정
29
+ - **Temperature**: 0.4 (높은 정확도)
30
+ - **엄격성**: High
31
+
32
+ ## 실행 모델
33
+ - **Primary**: Claude (심층 분석, 문서 합성)
34
+ - **Mode**: Plan Mode - 구조화된 리서치
35
+
36
+ ## 목표
37
+ 1. 기술 스택 실현 가능성 검토
38
+ 2. 시장 분석 및 경쟁 환경 파악
39
+ 3. 외부 API/서비스 조사
40
+ 4. 기술적 리스크 식별
41
+
42
+ ## 입력 파일
43
+ - `../01-brainstorm/outputs/ideas.md`
44
+ - `../01-brainstorm/outputs/requirements_analysis.md`
45
+ - `../01-brainstorm/HANDOFF.md`
46
+
47
+ ## 출력 파일
48
+ - `outputs/tech_research.md` - 기술 리서치 결과
49
+ - `outputs/market_analysis.md` - 시장 분석
50
+ - `outputs/feasibility_report.md` - 실현 가능성 보고서
51
+ - `HANDOFF.md` - 다음 스테이지 인계 문서
52
+
53
+ ## MCP 서버 활용
54
+
55
+ ### firecrawl
56
+ 웹 크롤링 및 데이터 수집
57
+ ```
58
+ firecrawl로 경쟁사 웹사이트 분석
59
+ ```
60
+
61
+ ### exa
62
+ AI 기반 검색
63
+ ```
64
+ 최신 기술 트렌드 및 베스트 프랙티스 검색
65
+ ```
66
+
67
+ ### context7
68
+ 문서 검색
69
+ ```
70
+ 라이브러리/프레임워크 공식 문서 조회
71
+ ```
72
+
73
+ ## 워크플로우
74
+
75
+ ### 1. 기술 스택 리서치
76
+ - MVP 기능별 최적 기술 스택 조사
77
+ - 각 기술의 장단점 비교
78
+ - 학습 곡선 및 커뮤니티 지원 평가
79
+
80
+ ### 2. 시장 분석
81
+ - 경쟁사 상세 분석
82
+ - 시장 규모 및 트렌드
83
+ - 진입 장벽 분석
84
+
85
+ ### 3. 실현 가능성 평가
86
+ - 기술적 실현 가능성
87
+ - 시간/리소스 요구사항
88
+ - 리스크 평가
89
+
90
+ ## 완료 조건
91
+ - [ ] 기술 스택 비교 분석 완료
92
+ - [ ] 경쟁사 3개 이상 심층 분석
93
+ - [ ] 실현 가능성 보고서 작성
94
+ - [ ] HANDOFF.md 생성
95
+
96
+ ## 다음 스테이지
97
+ → **03-planning**: 시스템 아키텍처 및 기술 스택 결정
98
+
99
+
100
+
101
+
@@ -0,0 +1,158 @@
1
+ # HANDOFF: 02-research → 03-planning
2
+
3
+ > 생성일: 2026-01-21
4
+ > 프로젝트: snake-game
5
+ > 현재 스테이지: 02-research (완료)
6
+ > 다음 스테이지: 03-planning
7
+
8
+ ---
9
+
10
+ ## ✅ 완료된 작업
11
+
12
+ - [x] Canvas 게임 루프 구현 방법 조사
13
+ - [x] React + Canvas 통합 패턴 분석
14
+ - [x] 모바일 터치 이벤트 처리 조사
15
+ - [x] 충돌 감지 알고리즘 정리
16
+ - [x] localStorage 하이스코어 구현 방법
17
+ - [x] 성능 최적화 기법 조사
18
+ - [x] 오픈소스 프로젝트 사례 수집
19
+ - [x] 실현 가능성 보고서 작성
20
+
21
+ ---
22
+
23
+ ## 📋 핵심 기술 결정사항
24
+
25
+ ### 1. 렌더링 방식
26
+ - **선택**: Canvas API
27
+ - **이유**: 게임 성능, 60fps 유지, 복잡한 애니메이션 지원
28
+ - **대안 기각**: CSS Grid (대량 요소 시 성능 저하)
29
+
30
+ ### 2. 게임 루프
31
+ - **선택**: requestAnimationFrame
32
+ - **이유**: 브라우저 최적화, 탭 비활성화 시 자동 일시정지
33
+ - **대안 기각**: setInterval (정확도 낮음)
34
+
35
+ ### 3. 상태 관리
36
+ - **선택**: useReducer + useRef 조합
37
+ - **이유**: 복잡한 게임 상태, 리렌더링 최소화
38
+ - **패턴**: 게임 로직은 useRef, UI 표시용만 useState
39
+
40
+ ### 4. 모바일 조작
41
+ - **선택**: Custom useSwipe 훅 + 방향 버튼
42
+ - **이유**: 검증된 패턴, 두 가지 입력 방식 모두 지원
43
+
44
+ ---
45
+
46
+ ## 📁 생성된 산출물
47
+
48
+ | 파일 | 설명 |
49
+ |------|------|
50
+ | `outputs/tech_research.md` | 기술 리서치 상세 결과 |
51
+ | `outputs/feasibility_report.md` | 실현 가능성 보고서 |
52
+ | `HANDOFF.md` | 이 문서 |
53
+
54
+ ---
55
+
56
+ ## 🔧 권장 기술 스택
57
+
58
+ ```yaml
59
+ # 프로젝트 구조
60
+ framework: React 18+
61
+ language: TypeScript 5+
62
+ build: Vite 5+
63
+ rendering: Canvas API
64
+ state: useReducer + useRef
65
+ styling: CSS Modules 또는 Tailwind CSS
66
+ testing: Vitest + React Testing Library
67
+ ```
68
+
69
+ ---
70
+
71
+ ## 📊 핵심 코드 패턴 요약
72
+
73
+ ### 게임 루프 훅
74
+ ```typescript
75
+ const useGameLoop = (callback: (deltaTime: number) => void) => {
76
+ const requestRef = useRef<number>();
77
+ const previousTimeRef = useRef<number>();
78
+ // ... requestAnimationFrame 기반 루프
79
+ };
80
+ ```
81
+
82
+ ### 스와이프 감지 훅
83
+ ```typescript
84
+ const useSwipe = (handlers: { left, right, up, down }) => {
85
+ // touchstart/touchend 기반 방향 감지
86
+ };
87
+ ```
88
+
89
+ ### 타입 정의
90
+ ```typescript
91
+ type Direction = 'UP' | 'DOWN' | 'LEFT' | 'RIGHT';
92
+ type GameStatus = 'idle' | 'playing' | 'paused' | 'gameover';
93
+ interface Position { x: number; y: number; }
94
+ interface GameState { snake, food, direction, score, status }
95
+ ```
96
+
97
+ ---
98
+
99
+ ## 🔜 다음 스테이지 작업
100
+
101
+ ### 03-planning에서 결정할 사항
102
+
103
+ 1. **상세 아키텍처**
104
+ - 컴포넌트 구조도
105
+ - 데이터 흐름 다이어그램
106
+ - 훅 의존성 관계
107
+
108
+ 2. **파일 구조**
109
+ - src/ 디렉토리 구조
110
+ - 컴포넌트/훅/유틸/타입 분리
111
+
112
+ 3. **게임 설정 상수**
113
+ - 보드 크기, 셀 크기
114
+ - 초기 속도, 속도 증가량
115
+ - 레벨업 조건
116
+
117
+ 4. **API 설계**
118
+ - 게임 상태 인터페이스
119
+ - 액션 타입 정의
120
+ - 리듀서 로직
121
+
122
+ ---
123
+
124
+ ## ⚠️ 주의사항
125
+
126
+ 1. **외부 게임 엔진 미사용**: Phaser, PixiJS 등 금지
127
+ 2. **순수 React 구현**: jQuery 미사용
128
+ 3. **리렌더링 최소화**: Canvas는 직접 업데이트
129
+ 4. **성능 우선**: 60fps 목표
130
+
131
+ ---
132
+
133
+ ## 📊 AI 호출 기록
134
+
135
+ | AI | 시간 | 도구 | 결과 | 상태 |
136
+ |----|------|------|------|------|
137
+ | Claude | 12:10 | Exa MCP | Canvas 게임 루프 패턴 수집 | ✅ |
138
+ | Claude | 12:12 | Exa MCP | 모바일 터치 조작 패턴 수집 | ✅ |
139
+ | Claude | 12:15 | - | tech_research.md 작성 | ✅ |
140
+ | Claude | 12:16 | - | feasibility_report.md 작성 | ✅ |
141
+
142
+ ---
143
+
144
+ ## 🚀 다음 단계
145
+
146
+ ```bash
147
+ # 다음 스테이지 실행
148
+ /run-stage 03-planning
149
+
150
+ # 또는
151
+ /planning
152
+ ```
153
+
154
+ ---
155
+
156
+ **생성자**: ClaudeCode
157
+ **검토자**: -
158
+ **승인**: 대기
@@ -0,0 +1,102 @@
1
+ # Stage Handoff: 02-research → 03-planning
2
+
3
+ **생성일**: {{TIMESTAMP}}
4
+ **생성자**: Claude
5
+ **소요 시간**: {{DURATION}}
6
+
7
+ ---
8
+
9
+ ## 완료된 작업
10
+
11
+ - [ ] 기술 스택 리서치
12
+ - [ ] 시장 분석 (경쟁사 {{COMPETITOR_COUNT}}개)
13
+ - [ ] 실현 가능성 평가
14
+ - [ ] HANDOFF.md 생성
15
+
16
+ ---
17
+
18
+ ## 다음 에이전트를 위한 컨텍스트
19
+
20
+ ### 권장 기술 스택
21
+
22
+ | 영역 | 선택 | 대안 | 선택 이유 |
23
+ |------|------|------|-----------|
24
+ | Frontend | {{FRONTEND}} | | |
25
+ | Backend | {{BACKEND}} | | |
26
+ | Database | {{DATABASE}} | | |
27
+ | Infrastructure | {{INFRA}} | | |
28
+
29
+ ### 핵심 결정사항
30
+
31
+ | 결정 | 이유 | 되돌릴 수 있음 |
32
+ |------|------|----------------|
33
+ | {{DECISION_1}} | {{REASON_1}} | Yes/No |
34
+
35
+ ### 실현 가능성 요약
36
+ - **기술**: {{TECH_SCORE}}/10
37
+ - **경제**: {{ECON_SCORE}}/10
38
+ - **일정**: {{TIME_SCORE}}/10
39
+ - **시장**: {{MARKET_SCORE}}/10
40
+ - **종합**: {{TOTAL_SCORE}}/40
41
+ - **권고**: {{RECOMMENDATION}}
42
+
43
+ ### 주요 리스크
44
+ 1. {{RISK_1}}
45
+ 2. {{RISK_2}}
46
+ 3. {{RISK_3}}
47
+
48
+ ---
49
+
50
+ ## 생성된 산출물
51
+
52
+ | 파일 | 설명 |
53
+ |------|------|
54
+ | tech_research.md | 기술 스택 리서치 |
55
+ | market_analysis.md | 시장 분석 |
56
+ | feasibility_report.md | 실현 가능성 보고서 |
57
+
58
+ ---
59
+
60
+ ## 03-planning 스테이지 가이드
61
+
62
+ ### 즉시 실행할 작업
63
+ 1. 권장 기술 스택 기반 아키텍처 설계
64
+ 2. 시스템 컴포넌트 정의
65
+ 3. 데이터 모델 설계
66
+
67
+ ### 아키텍처 고려사항
68
+ - {{ARCH_CONSIDERATION_1}}
69
+ - {{ARCH_CONSIDERATION_2}}
70
+
71
+ ### 검증된 가정
72
+ - {{VALIDATED_ASSUMPTION_1}}
73
+
74
+ ### 미검증 가정 (Planning에서 결정 필요)
75
+ - {{UNVALIDATED_ASSUMPTION_1}}
76
+
77
+ ---
78
+
79
+ ## AI 호출 기록
80
+
81
+ | AI | 호출 시간 | 프롬프트 | 결과 | 상태 |
82
+ |----|----------|---------|------|------|
83
+ | {{AI_1}} | {{TIME_1}} | {{PROMPT_1}} | {{OUTPUT_1}} | {{STATUS_1}} |
84
+ | {{AI_2}} | {{TIME_2}} | {{PROMPT_2}} | {{OUTPUT_2}} | {{STATUS_2}} |
85
+
86
+ > 설정: `config/ai_logging.yaml`
87
+
88
+ ---
89
+
90
+ ## 메타데이터
91
+
92
+ ```yaml
93
+ stage: "02-research"
94
+ status: "completed"
95
+ next_stage: "03-planning"
96
+ models_used:
97
+ - claude
98
+ mcp_servers_used:
99
+ - firecrawl
100
+ - exa
101
+ - context7
102
+ ```
@@ -0,0 +1,68 @@
1
+ # Stage 02: Research Configuration
2
+
3
+ stage:
4
+ id: "02-research"
5
+ name: "Research"
6
+ description: "기술 리서치 및 시장 분석"
7
+
8
+ models:
9
+ primary: "claude"
10
+ secondary: null
11
+ collaboration: null
12
+
13
+ execution:
14
+ mode: "plan"
15
+ container: false
16
+ sandbox: false
17
+ timeout: 7200 # 2 hours
18
+
19
+ mcp_servers:
20
+ - firecrawl
21
+ - exa
22
+ - context7
23
+
24
+ inputs:
25
+ required:
26
+ - name: "../01-brainstorm/outputs/requirements_analysis.md"
27
+ description: "요구사항 분석 결과"
28
+ - name: "../01-brainstorm/HANDOFF.md"
29
+ description: "이전 스테이지 핸드오프"
30
+ optional:
31
+ - name: "../01-brainstorm/outputs/ideas.md"
32
+ description: "브레인스토밍 아이디어"
33
+
34
+ outputs:
35
+ required:
36
+ - name: "tech_research.md"
37
+ description: "기술 리서치 결과"
38
+ - name: "market_analysis.md"
39
+ description: "시장 분석"
40
+ - name: "feasibility_report.md"
41
+ description: "실현 가능성 보고서"
42
+ - name: "HANDOFF.md"
43
+ description: "다음 스테이지 인계 문서"
44
+
45
+ prompts:
46
+ - name: "tech_stack"
47
+ file: "prompts/tech_stack.md"
48
+ model: "claude"
49
+ - name: "market_analysis"
50
+ file: "prompts/market_analysis.md"
51
+ model: "claude"
52
+ - name: "feasibility"
53
+ file: "prompts/feasibility.md"
54
+ model: "claude"
55
+
56
+ completion:
57
+ checklist:
58
+ - "기술 스택 비교 분석 완료"
59
+ - "경쟁사 3개 이상 심층 분석"
60
+ - "실현 가능성 보고서 작성"
61
+ - "HANDOFF.md 생성"
62
+
63
+ transition:
64
+ next_stage: "03-planning"
65
+ prerequisites:
66
+ - "01-brainstorm"
67
+ handoff_required: true
68
+ checkpoint_required: false
File without changes
File without changes
File without changes