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.
- package/README.md +374 -0
- package/bin/create.js +250 -0
- package/package.json +43 -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/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/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/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/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/compression.md +172 -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/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/README.md +84 -0
- package/template/.claude/skills/stage-transition/handoff-gen.md +160 -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/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/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.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/outputs/.gitkeep +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/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.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/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.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/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.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/prompts/.gitkeep +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.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/prompts/.gitkeep +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/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.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/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.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/prompts/.gitkeep +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.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/prompts/.gitkeep +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.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/prompts/.gitkeep +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.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/collaboration.md +80 -0
- package/template/stages/10-deployment/prompts/validation.md +93 -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/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,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
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# AI 협업 프롬프트 - Research
|
|
2
|
+
|
|
3
|
+
## 협업 모드: Parallel + Sequential
|
|
4
|
+
|
|
5
|
+
이 스테이지에서는 **병렬 리서치** 후 **순차적 통합**을 진행합니다.
|
|
6
|
+
|
|
7
|
+
### 참여 모델
|
|
8
|
+
- **Claude**: 심층 분석, 기술 문서 합성
|
|
9
|
+
- **Gemini**: 시장 트렌드, 경쟁사 분석
|
|
10
|
+
|
|
11
|
+
### 협업 프롬프트
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
# 병렬 리서치
|
|
15
|
+
/collaborate --mode parallel --models claude,gemini --task "기술 및 시장 리서치"
|
|
16
|
+
|
|
17
|
+
# 순차적 통합 (Claude가 Gemini 결과 검토)
|
|
18
|
+
/collaborate --mode sequential --chain "gemini:market_research -> claude:synthesis"
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### 작업 분담
|
|
22
|
+
|
|
23
|
+
| AI | 담당 영역 | 출력 |
|
|
24
|
+
|----|----------|------|
|
|
25
|
+
| Gemini | 시장 분석, 경쟁사 조사 | market_analysis.md |
|
|
26
|
+
| Claude | 기술 스택 분석, 실현 가능성 | tech_research.md, feasibility_report.md |
|
|
27
|
+
|
|
28
|
+
### MCP 서버 활용
|
|
29
|
+
|
|
30
|
+
- **firecrawl**: 웹 크롤링 (Gemini 활용)
|
|
31
|
+
- **exa**: AI 검색 (Claude 활용)
|
|
32
|
+
- **context7**: 문서 검색 (Claude 활용)
|
|
33
|
+
|
|
34
|
+
### 출력 형식
|
|
35
|
+
|
|
36
|
+
```markdown
|
|
37
|
+
## AI 협업 결과
|
|
38
|
+
|
|
39
|
+
### Gemini 리서치 (시장)
|
|
40
|
+
- 경쟁사 분석
|
|
41
|
+
- 시장 트렌드
|
|
42
|
+
...
|
|
43
|
+
|
|
44
|
+
### Claude 리서치 (기술)
|
|
45
|
+
- 기술 스택 비교
|
|
46
|
+
- 실현 가능성 평가
|
|
47
|
+
...
|
|
48
|
+
|
|
49
|
+
### 통합 인사이트
|
|
50
|
+
- [핵심 발견]
|
|
51
|
+
```
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Feasibility Analysis Prompt
|
|
2
|
+
|
|
3
|
+
## 사용 모델
|
|
4
|
+
Claude
|
|
5
|
+
|
|
6
|
+
## 프롬프트
|
|
7
|
+
|
|
8
|
+
```
|
|
9
|
+
당신은 프로젝트 실현 가능성 평가 전문가입니다.
|
|
10
|
+
|
|
11
|
+
다음 자료를 바탕으로 종합적인 실현 가능성 평가를 수행해주세요:
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
## 기술 리서치
|
|
15
|
+
{{TECH_RESEARCH}}
|
|
16
|
+
|
|
17
|
+
## 시장 분석
|
|
18
|
+
{{MARKET_ANALYSIS}}
|
|
19
|
+
|
|
20
|
+
## 요구사항
|
|
21
|
+
{{REQUIREMENTS}}
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 평가 항목
|
|
25
|
+
|
|
26
|
+
### 1. 기술적 실현 가능성
|
|
27
|
+
- 기술 스택 성숙도
|
|
28
|
+
- 팀 역량 대비 복잡도
|
|
29
|
+
- 기술적 리스크
|
|
30
|
+
|
|
31
|
+
점수: /10
|
|
32
|
+
|
|
33
|
+
### 2. 경제적 실현 가능성
|
|
34
|
+
- 예상 개발 비용
|
|
35
|
+
- 운영 비용 (인프라, 유지보수)
|
|
36
|
+
- ROI 예측
|
|
37
|
+
|
|
38
|
+
점수: /10
|
|
39
|
+
|
|
40
|
+
### 3. 일정 실현 가능성
|
|
41
|
+
- MVP 개발 예상 기간
|
|
42
|
+
- 전체 개발 예상 기간
|
|
43
|
+
- 일정 리스크
|
|
44
|
+
|
|
45
|
+
점수: /10
|
|
46
|
+
|
|
47
|
+
### 4. 시장 실현 가능성
|
|
48
|
+
- 시장 진입 가능성
|
|
49
|
+
- 차별화 가능성
|
|
50
|
+
- 성장 가능성
|
|
51
|
+
|
|
52
|
+
점수: /10
|
|
53
|
+
|
|
54
|
+
### 5. 리스크 매트릭스
|
|
55
|
+
|
|
56
|
+
| 리스크 | 영향도 | 발생확률 | 완화전략 | 담당 |
|
|
57
|
+
|--------|--------|----------|----------|------|
|
|
58
|
+
|
|
59
|
+
### 6. Go/No-Go 권고
|
|
60
|
+
|
|
61
|
+
종합 점수: /40
|
|
62
|
+
|
|
63
|
+
권고: GO / CONDITIONAL GO / NO-GO
|
|
64
|
+
|
|
65
|
+
조건 (CONDITIONAL일 경우):
|
|
66
|
+
-
|
|
67
|
+
|
|
68
|
+
## 출력 형식
|
|
69
|
+
실현 가능성 보고서 (경영진 요약 포함)
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## 기대 출력
|
|
73
|
+
`outputs/feasibility_report.md`
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Market Analysis Prompt
|
|
2
|
+
|
|
3
|
+
## 사용 모델
|
|
4
|
+
Claude (MCP 서버 연동)
|
|
5
|
+
|
|
6
|
+
## 프롬프트
|
|
7
|
+
|
|
8
|
+
```
|
|
9
|
+
당신은 시장 분석 전문가입니다.
|
|
10
|
+
|
|
11
|
+
다음 프로젝트의 시장 분석을 수행해주세요:
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
## 프로젝트 개요
|
|
15
|
+
{{PROJECT_OVERVIEW}}
|
|
16
|
+
|
|
17
|
+
## 타겟 시장
|
|
18
|
+
{{TARGET_MARKET}}
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 분석 항목
|
|
22
|
+
|
|
23
|
+
### 1. 시장 규모
|
|
24
|
+
- TAM (Total Addressable Market)
|
|
25
|
+
- SAM (Serviceable Addressable Market)
|
|
26
|
+
- SOM (Serviceable Obtainable Market)
|
|
27
|
+
|
|
28
|
+
### 2. 경쟁사 분석
|
|
29
|
+
최소 3개 경쟁사에 대해:
|
|
30
|
+
|
|
31
|
+
| 경쟁사 | 강점 | 약점 | 가격 | 타겟 | 차별점 |
|
|
32
|
+
|--------|------|------|------|------|--------|
|
|
33
|
+
|
|
34
|
+
### 3. 시장 트렌드
|
|
35
|
+
- 성장 트렌드
|
|
36
|
+
- 기술 트렌드
|
|
37
|
+
- 사용자 행동 변화
|
|
38
|
+
|
|
39
|
+
### 4. 진입 장벽
|
|
40
|
+
- 기술적 장벽
|
|
41
|
+
- 자본 장벽
|
|
42
|
+
- 네트워크 효과
|
|
43
|
+
- 규제 장벽
|
|
44
|
+
|
|
45
|
+
### 5. 기회와 위협 (SWOT 일부)
|
|
46
|
+
- Opportunities
|
|
47
|
+
- Threats
|
|
48
|
+
|
|
49
|
+
## MCP 활용
|
|
50
|
+
- firecrawl: 경쟁사 웹사이트 크롤링
|
|
51
|
+
- exa: 시장 리포트 및 뉴스 검색
|
|
52
|
+
|
|
53
|
+
## 출력 형식
|
|
54
|
+
구조화된 시장 분석 보고서
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## 기대 출력
|
|
58
|
+
`outputs/market_analysis.md`
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Tech Stack Research Prompt
|
|
2
|
+
|
|
3
|
+
## 사용 모델
|
|
4
|
+
Claude (MCP 서버 연동)
|
|
5
|
+
|
|
6
|
+
## 프롬프트
|
|
7
|
+
|
|
8
|
+
```
|
|
9
|
+
당신은 시니어 솔루션 아키텍트입니다.
|
|
10
|
+
|
|
11
|
+
다음 요구사항을 바탕으로 최적의 기술 스택을 조사해주세요:
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
## 요구사항
|
|
15
|
+
{{REQUIREMENTS}}
|
|
16
|
+
|
|
17
|
+
## MVP 기능
|
|
18
|
+
{{MVP_FEATURES}}
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 조사 항목
|
|
22
|
+
|
|
23
|
+
### 1. 프론트엔드
|
|
24
|
+
각 옵션에 대해:
|
|
25
|
+
- 프레임워크/라이브러리 이름
|
|
26
|
+
- 장점 / 단점
|
|
27
|
+
- 학습 곡선
|
|
28
|
+
- 커뮤니티/생태계
|
|
29
|
+
- 성능 특성
|
|
30
|
+
- 권장 사용 사례
|
|
31
|
+
|
|
32
|
+
비교 대상: React, Vue, Svelte, Next.js, Nuxt 등
|
|
33
|
+
|
|
34
|
+
### 2. 백엔드
|
|
35
|
+
비교 대상: Node.js, Python, Go, Rust 등
|
|
36
|
+
각각의 프레임워크 포함 (Express, FastAPI, Gin 등)
|
|
37
|
+
|
|
38
|
+
### 3. 데이터베이스
|
|
39
|
+
- 관계형: PostgreSQL, MySQL
|
|
40
|
+
- NoSQL: MongoDB, Redis
|
|
41
|
+
- NewSQL: CockroachDB, PlanetScale
|
|
42
|
+
|
|
43
|
+
### 4. 인프라
|
|
44
|
+
- 클라우드: AWS, GCP, Azure, Vercel, Railway
|
|
45
|
+
- 컨테이너: Docker, Kubernetes
|
|
46
|
+
- 서버리스: Lambda, Cloud Functions
|
|
47
|
+
|
|
48
|
+
### 5. 개발 도구
|
|
49
|
+
- 버전 관리, CI/CD, 모니터링, 로깅
|
|
50
|
+
|
|
51
|
+
## MCP 활용
|
|
52
|
+
- context7로 각 기술의 공식 문서 확인
|
|
53
|
+
- exa로 최신 비교 분석 기사 검색
|
|
54
|
+
|
|
55
|
+
## 출력 형식
|
|
56
|
+
기술 스택 비교표와 최종 권장안을 마크다운으로 작성
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## 기대 출력
|
|
60
|
+
`outputs/tech_research.md`
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# 산출물 검증 프롬프트 - Research
|
|
2
|
+
|
|
3
|
+
## 검증 대상
|
|
4
|
+
|
|
5
|
+
| 산출물 | 필수 조건 | 검증 방법 |
|
|
6
|
+
|--------|----------|----------|
|
|
7
|
+
| `tech_research.md` | 기술 스택 비교표 | 구조 확인 |
|
|
8
|
+
| `market_analysis.md` | 경쟁사 3개+ 분석 | 수량 확인 |
|
|
9
|
+
| `feasibility_report.md` | 리스크 섹션 포함 | 구조 확인 |
|
|
10
|
+
| `HANDOFF.md` | 핵심 결정사항 | 항목 확인 |
|
|
11
|
+
|
|
12
|
+
## 검증 명령
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
/validate --stage 02-research
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## 품질 기준
|
|
19
|
+
|
|
20
|
+
### tech_research.md
|
|
21
|
+
- [ ] 기술 스택 비교표 포함
|
|
22
|
+
- [ ] 각 기술의 장단점 분석
|
|
23
|
+
- [ ] 학습 곡선 평가
|
|
24
|
+
- [ ] 커뮤니티/생태계 평가
|
|
25
|
+
|
|
26
|
+
### market_analysis.md
|
|
27
|
+
- [ ] 경쟁사 3개 이상 분석
|
|
28
|
+
- [ ] 시장 규모 및 트렌드
|
|
29
|
+
- [ ] 진입 장벽 분석
|
|
30
|
+
- [ ] 차별화 포인트
|
|
31
|
+
|
|
32
|
+
### feasibility_report.md
|
|
33
|
+
- [ ] 기술적 실현 가능성
|
|
34
|
+
- [ ] 시간/리소스 요구사항
|
|
35
|
+
- [ ] 리스크 평가 및 대응 방안
|
|
36
|
+
- [ ] Go/No-Go 권고
|
|
37
|
+
|
|
38
|
+
### HANDOFF.md
|
|
39
|
+
- [ ] 완료된 리서치 체크리스트
|
|
40
|
+
- [ ] 핵심 발견 사항
|
|
41
|
+
- [ ] 권장 기술 스택
|
|
42
|
+
|
|
43
|
+
## 자동 검증 스크립트
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
# 경쟁사 분석 수 확인
|
|
47
|
+
grep -c "^### " outputs/market_analysis.md
|
|
48
|
+
|
|
49
|
+
# 리스크 섹션 확인
|
|
50
|
+
grep -E "^## 리스크|Risk" outputs/feasibility_report.md
|
|
51
|
+
```
|
|
File without changes
|