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.
- package/README.md +374 -0
- package/bin/create.js +193 -0
- package/package.json +38 -0
- package/template/.claude/CLAUDE.md +7 -0
- package/template/.claude/commands/CLAUDE.md +0 -0
- package/template/.claude/commands/benchmark.md +103 -0
- package/template/.claude/commands/brainstorm.md +67 -0
- package/template/.claude/commands/checkpoint.md +93 -0
- package/template/.claude/commands/codex.md +107 -0
- package/template/.claude/commands/collaborate.md +85 -0
- package/template/.claude/commands/context.md +154 -0
- package/template/.claude/commands/deploy.md +102 -0
- package/template/.claude/commands/fork.md +142 -0
- package/template/.claude/commands/gemini.md +84 -0
- package/template/.claude/commands/handoff.md +80 -0
- package/template/.claude/commands/implement.md +82 -0
- package/template/.claude/commands/init-project.md +49 -0
- package/template/.claude/commands/next.md +125 -0
- package/template/.claude/commands/planning.md +69 -0
- package/template/.claude/commands/qa.md +81 -0
- package/template/.claude/commands/refactor.md +95 -0
- package/template/.claude/commands/research.md +60 -0
- package/template/.claude/commands/restore.md +113 -0
- package/template/.claude/commands/run-stage.md +78 -0
- package/template/.claude/commands/stages.md +109 -0
- package/template/.claude/commands/status.md +73 -0
- package/template/.claude/commands/tasks.md +80 -0
- package/template/.claude/commands/test.md +93 -0
- package/template/.claude/commands/ui-ux.md +61 -0
- package/template/.claude/commands/validate.md +174 -0
- package/template/.claude/hooks/CLAUDE.md +0 -0
- package/template/.claude/hooks/ai-selector.sh +223 -0
- package/template/.claude/hooks/auto-checkpoint.sh +187 -0
- package/template/.claude/hooks/output-validator.sh +289 -0
- package/template/.claude/hooks/post-stage.sh +123 -0
- package/template/.claude/hooks/pre-stage.sh +186 -0
- package/template/.claude/hooks/session-start.sh +90 -0
- package/template/.claude/hooks/statusline.sh +115 -0
- package/template/.claude/hooks/stop.sh +104 -0
- package/template/.claude/settings.json +149 -0
- package/template/.claude/skills/ai-collaboration/CLAUDE.md +0 -0
- package/template/.claude/skills/ai-collaboration/README.md +61 -0
- package/template/.claude/skills/ai-collaboration/debate.md +148 -0
- package/template/.claude/skills/ai-collaboration/parallel.md +96 -0
- package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +107 -0
- package/template/.claude/skills/auto-checkpoint/CLAUDE.md +0 -0
- package/template/.claude/skills/auto-checkpoint/README.md +77 -0
- package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +113 -0
- package/template/.claude/skills/auto-checkpoint/rollback.md +152 -0
- package/template/.claude/skills/auto-checkpoint/trigger.md +122 -0
- package/template/.claude/skills/context-compression/CLAUDE.md +0 -0
- package/template/.claude/skills/context-compression/README.md +121 -0
- package/template/.claude/skills/context-compression/analyze.md +114 -0
- package/template/.claude/skills/context-compression/compress.md +175 -0
- package/template/.claude/skills/context-compression/prompts/CLAUDE.md +0 -0
- package/template/.claude/skills/context-compression/prompts/compression.md +172 -0
- package/template/.claude/skills/output-validator/CLAUDE.md +0 -0
- package/template/.claude/skills/output-validator/README.md +86 -0
- package/template/.claude/skills/output-validator/prompts/CLAUDE.md +119 -0
- package/template/.claude/skills/output-validator/validate.md +182 -0
- package/template/.claude/skills/smart-handoff/CLAUDE.md +0 -0
- package/template/.claude/skills/smart-handoff/README.md +59 -0
- package/template/.claude/skills/smart-handoff/extract.md +76 -0
- package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +86 -0
- package/template/.claude/skills/smart-handoff/summarize.md +94 -0
- package/template/.claude/skills/stage-transition/CLAUDE.md +0 -0
- package/template/.claude/skills/stage-transition/README.md +84 -0
- package/template/.claude/skills/stage-transition/handoff-gen.md +160 -0
- package/template/.claude/skills/stage-transition/prompts/CLAUDE.md +0 -0
- package/template/.claude/skills/stage-transition/prompts/transition.md +145 -0
- package/template/.claude/skills/stage-transition/validate.md +108 -0
- package/template/CLAUDE.md +528 -0
- package/template/config/CLAUDE.md +0 -0
- package/template/config/ai_benchmarking.yaml +184 -0
- package/template/config/ai_collaboration.yaml +159 -0
- package/template/config/ai_logging.yaml +129 -0
- package/template/config/auto_checkpoint.yaml +189 -0
- package/template/config/context.yaml +78 -0
- package/template/config/git.yaml +161 -0
- package/template/config/handoff_intelligence.yaml +229 -0
- package/template/config/implementation.yaml.template +181 -0
- package/template/config/mcp_fallbacks.yaml +252 -0
- package/template/config/memory_integration.yaml +200 -0
- package/template/config/model_enforcement.yaml +141 -0
- package/template/config/models.yaml +242 -0
- package/template/config/output_validation.yaml +352 -0
- package/template/config/pipeline.yaml +357 -0
- package/template/config/pipeline_forking.yaml +236 -0
- package/template/config/qa_logging.yaml +166 -0
- package/template/config/smart_rollback.yaml +209 -0
- package/template/config/stage_personas.yaml +354 -0
- package/template/config/workflow.yaml +54 -0
- package/template/scripts/CLAUDE.md +0 -0
- package/template/scripts/ai-benchmark.sh +272 -0
- package/template/scripts/codex-wrapper.sh +97 -0
- package/template/scripts/context-manager.sh +528 -0
- package/template/scripts/create-checkpoint.sh +116 -0
- package/template/scripts/gemini-wrapper.sh +96 -0
- package/template/scripts/init-project.sh +109 -0
- package/template/scripts/list-stages.sh +245 -0
- package/template/scripts/next-stage.sh +228 -0
- package/template/scripts/output-validate.sh +12 -0
- package/template/scripts/pipeline-fork.sh +293 -0
- package/template/scripts/pre-run-check.sh +361 -0
- package/template/scripts/restore-checkpoint.sh +247 -0
- package/template/scripts/run-stage.sh +139 -0
- package/template/scripts/show-status.sh +185 -0
- package/template/scripts/smart-handoff.sh +254 -0
- package/template/stages/01-brainstorm/CLAUDE.md +103 -0
- package/template/stages/01-brainstorm/HANDOFF.md +110 -0
- package/template/stages/01-brainstorm/HANDOFF.md.template +112 -0
- package/template/stages/01-brainstorm/README.md +97 -0
- package/template/stages/01-brainstorm/config.yaml +92 -0
- package/template/stages/01-brainstorm/inputs/.gitkeep +0 -0
- package/template/stages/01-brainstorm/inputs/CLAUDE.md +0 -0
- package/template/stages/01-brainstorm/inputs/project_brief.md +40 -0
- package/template/stages/01-brainstorm/outputs/.gitkeep +0 -0
- package/template/stages/01-brainstorm/outputs/CLAUDE.md +0 -0
- package/template/stages/01-brainstorm/outputs/ideas.md +159 -0
- package/template/stages/01-brainstorm/outputs/requirements_analysis.md +222 -0
- package/template/stages/01-brainstorm/prompts/CLAUDE.md +0 -0
- package/template/stages/01-brainstorm/prompts/collaboration.md +46 -0
- package/template/stages/01-brainstorm/prompts/ideation.md +62 -0
- package/template/stages/01-brainstorm/prompts/persona.md +73 -0
- package/template/stages/01-brainstorm/prompts/requirements.md +73 -0
- package/template/stages/01-brainstorm/prompts/validation.md +50 -0
- package/template/stages/01-brainstorm/templates/CLAUDE.md +0 -0
- package/template/stages/01-brainstorm/templates/ideas.md +91 -0
- package/template/stages/01-brainstorm/templates/requirements_analysis.md +129 -0
- package/template/stages/02-research/CLAUDE.md +101 -0
- package/template/stages/02-research/HANDOFF.md +158 -0
- package/template/stages/02-research/HANDOFF.md.template +102 -0
- package/template/stages/02-research/config.yaml +68 -0
- package/template/stages/02-research/inputs/.gitkeep +0 -0
- package/template/stages/02-research/outputs/.gitkeep +0 -0
- package/template/stages/02-research/outputs/CLAUDE.md +0 -0
- package/template/stages/02-research/outputs/feasibility_report.md +176 -0
- package/template/stages/02-research/outputs/tech_research.md +403 -0
- package/template/stages/02-research/prompts/CLAUDE.md +0 -0
- package/template/stages/02-research/prompts/collaboration.md +51 -0
- package/template/stages/02-research/prompts/feasibility.md +73 -0
- package/template/stages/02-research/prompts/market_analysis.md +58 -0
- package/template/stages/02-research/prompts/tech_stack.md +60 -0
- package/template/stages/02-research/prompts/validation.md +51 -0
- package/template/stages/02-research/templates/.gitkeep +0 -0
- package/template/stages/03-planning/CLAUDE.md +98 -0
- package/template/stages/03-planning/HANDOFF.md +168 -0
- package/template/stages/03-planning/HANDOFF.md.template +91 -0
- package/template/stages/03-planning/config.yaml +64 -0
- package/template/stages/03-planning/inputs/.gitkeep +0 -0
- package/template/stages/03-planning/outputs/.gitkeep +0 -0
- package/template/stages/03-planning/outputs/CLAUDE.md +0 -0
- package/template/stages/03-planning/outputs/architecture.md +400 -0
- package/template/stages/03-planning/outputs/implementation.yaml +209 -0
- package/template/stages/03-planning/outputs/project_plan.md +204 -0
- package/template/stages/03-planning/outputs/tech_stack.md +176 -0
- package/template/stages/03-planning/prompts/CLAUDE.md +0 -0
- package/template/stages/03-planning/prompts/architecture.md +62 -0
- package/template/stages/03-planning/prompts/collaboration.md +57 -0
- package/template/stages/03-planning/prompts/validation.md +59 -0
- package/template/stages/03-planning/templates/.gitkeep +0 -0
- package/template/stages/04-ui-ux/CLAUDE.md +88 -0
- package/template/stages/04-ui-ux/HANDOFF.md +165 -0
- package/template/stages/04-ui-ux/HANDOFF.md.template +92 -0
- package/template/stages/04-ui-ux/config.yaml +57 -0
- package/template/stages/04-ui-ux/inputs/.gitkeep +0 -0
- package/template/stages/04-ui-ux/outputs/.gitkeep +0 -0
- package/template/stages/04-ui-ux/outputs/CLAUDE.md +0 -0
- package/template/stages/04-ui-ux/outputs/design_system.md +449 -0
- package/template/stages/04-ui-ux/outputs/user_flows.md +321 -0
- package/template/stages/04-ui-ux/outputs/wireframes.md +241 -0
- package/template/stages/04-ui-ux/prompts/.gitkeep +0 -0
- package/template/stages/04-ui-ux/prompts/CLAUDE.md +0 -0
- package/template/stages/04-ui-ux/prompts/collaboration.md +56 -0
- package/template/stages/04-ui-ux/prompts/validation.md +54 -0
- package/template/stages/04-ui-ux/templates/.gitkeep +0 -0
- package/template/stages/05-task-management/CLAUDE.md +105 -0
- package/template/stages/05-task-management/HANDOFF.md +187 -0
- package/template/stages/05-task-management/HANDOFF.md.template +97 -0
- package/template/stages/05-task-management/config.yaml +81 -0
- package/template/stages/05-task-management/inputs/.gitkeep +0 -0
- package/template/stages/05-task-management/outputs/.gitkeep +0 -0
- package/template/stages/05-task-management/outputs/CLAUDE.md +0 -0
- package/template/stages/05-task-management/outputs/milestones.md +253 -0
- package/template/stages/05-task-management/outputs/sprint_plan.md +203 -0
- package/template/stages/05-task-management/outputs/tasks.md +402 -0
- package/template/stages/05-task-management/prompts/.gitkeep +0 -0
- package/template/stages/05-task-management/prompts/CLAUDE.md +0 -0
- package/template/stages/05-task-management/prompts/collaboration.md +54 -0
- package/template/stages/05-task-management/prompts/validation.md +66 -0
- package/template/stages/05-task-management/templates/CLAUDE.md +0 -0
- package/template/stages/05-task-management/templates/notion_integration.md +176 -0
- package/template/stages/05-task-management/templates/parallel_groups.yaml +153 -0
- package/template/stages/05-task-management/templates/task_schema.yaml +154 -0
- package/template/stages/06-implementation/CLAUDE.md +163 -0
- package/template/stages/06-implementation/HANDOFF.md +184 -0
- package/template/stages/06-implementation/HANDOFF.md.template +192 -0
- package/template/stages/06-implementation/config.yaml +62 -0
- package/template/stages/06-implementation/inputs/.gitkeep +0 -0
- package/template/stages/06-implementation/outputs/.gitkeep +0 -0
- package/template/stages/06-implementation/prompts/.gitkeep +0 -0
- package/template/stages/06-implementation/prompts/CLAUDE.md +0 -0
- package/template/stages/06-implementation/prompts/collaboration.md +64 -0
- package/template/stages/06-implementation/prompts/validation.md +65 -0
- package/template/stages/06-implementation/templates/.gitkeep +0 -0
- package/template/stages/07-refactoring/CLAUDE.md +180 -0
- package/template/stages/07-refactoring/HANDOFF.md +82 -0
- package/template/stages/07-refactoring/HANDOFF.md.template +97 -0
- package/template/stages/07-refactoring/config.yaml +68 -0
- package/template/stages/07-refactoring/inputs/.gitkeep +0 -0
- package/template/stages/07-refactoring/outputs/.gitkeep +0 -0
- package/template/stages/07-refactoring/outputs/refactoring_report.md +102 -0
- package/template/stages/07-refactoring/prompts/.gitkeep +0 -0
- package/template/stages/07-refactoring/prompts/CLAUDE.md +0 -0
- package/template/stages/07-refactoring/prompts/collaboration.md +71 -0
- package/template/stages/07-refactoring/prompts/validation.md +76 -0
- package/template/stages/07-refactoring/templates/.gitkeep +0 -0
- package/template/stages/08-qa/CLAUDE.md +93 -0
- package/template/stages/08-qa/HANDOFF.md +114 -0
- package/template/stages/08-qa/HANDOFF.md.template +96 -0
- package/template/stages/08-qa/config.yaml +56 -0
- package/template/stages/08-qa/inputs/.gitkeep +0 -0
- package/template/stages/08-qa/outputs/.gitkeep +0 -0
- package/template/stages/08-qa/outputs/qa_report.md +138 -0
- package/template/stages/08-qa/prompts/.gitkeep +0 -0
- package/template/stages/08-qa/prompts/CLAUDE.md +0 -0
- package/template/stages/08-qa/prompts/collaboration.md +65 -0
- package/template/stages/08-qa/prompts/validation.md +71 -0
- package/template/stages/08-qa/templates/.gitkeep +0 -0
- package/template/stages/09-testing/CLAUDE.md +124 -0
- package/template/stages/09-testing/HANDOFF.md +118 -0
- package/template/stages/09-testing/HANDOFF.md.template +113 -0
- package/template/stages/09-testing/config.yaml +65 -0
- package/template/stages/09-testing/inputs/.gitkeep +0 -0
- package/template/stages/09-testing/outputs/.gitkeep +0 -0
- package/template/stages/09-testing/outputs/test_report.md +146 -0
- package/template/stages/09-testing/prompts/.gitkeep +0 -0
- package/template/stages/09-testing/prompts/CLAUDE.md +0 -0
- package/template/stages/09-testing/prompts/collaboration.md +77 -0
- package/template/stages/09-testing/prompts/validation.md +83 -0
- package/template/stages/09-testing/templates/.gitkeep +0 -0
- package/template/stages/10-deployment/CLAUDE.md +117 -0
- package/template/stages/10-deployment/HANDOFF.md +141 -0
- package/template/stages/10-deployment/HANDOFF.md.template +148 -0
- package/template/stages/10-deployment/config.yaml +61 -0
- package/template/stages/10-deployment/inputs/.gitkeep +0 -0
- package/template/stages/10-deployment/outputs/.gitkeep +0 -0
- package/template/stages/10-deployment/prompts/.gitkeep +0 -0
- package/template/stages/10-deployment/prompts/CLAUDE.md +0 -0
- package/template/stages/10-deployment/prompts/collaboration.md +80 -0
- package/template/stages/10-deployment/prompts/validation.md +93 -0
- package/template/stages/10-deployment/templates/CLAUDE.md +0 -0
- package/template/stages/10-deployment/templates/github-actions-cd.yaml +118 -0
- package/template/stages/10-deployment/templates/github-actions-ci.yaml +136 -0
- package/template/state/progress.json.template +111 -0
- package/template/state/templates/CLAUDE.md +0 -0
- package/template/state/templates/handoff_base.md.template +187 -0
- 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
|