claude-symphony 0.0.1 → 0.0.3

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 (150) hide show
  1. package/README.md +16 -12
  2. package/assets/claude_symphony.webp +0 -0
  3. package/assets/claude_symphony_ascii.txt +8 -0
  4. package/bin/create.js +80 -69
  5. package/package.json +3 -2
  6. package/template/.claude/commands/benchmark.md +32 -32
  7. package/template/.claude/commands/brainstorm.md +33 -33
  8. package/template/.claude/commands/checkpoint.md +42 -42
  9. package/template/.claude/commands/codex.md +52 -52
  10. package/template/.claude/commands/collaborate.md +47 -47
  11. package/template/.claude/commands/context.md +77 -77
  12. package/template/.claude/commands/deploy.md +50 -50
  13. package/template/.claude/commands/fork.md +46 -46
  14. package/template/.claude/commands/gemini.md +43 -43
  15. package/template/.claude/commands/handoff.md +42 -42
  16. package/template/.claude/commands/implement.md +42 -42
  17. package/template/.claude/commands/init-project.md +25 -25
  18. package/template/.claude/commands/next.md +67 -67
  19. package/template/.claude/commands/planning.md +38 -38
  20. package/template/.claude/commands/qa.md +47 -47
  21. package/template/.claude/commands/refactor.md +50 -50
  22. package/template/.claude/commands/research.md +31 -31
  23. package/template/.claude/commands/restore.md +53 -53
  24. package/template/.claude/commands/run-stage.md +45 -45
  25. package/template/.claude/commands/stages.md +49 -49
  26. package/template/.claude/commands/status.md +41 -41
  27. package/template/.claude/commands/tasks.md +33 -33
  28. package/template/.claude/commands/test.md +45 -45
  29. package/template/.claude/commands/ui-ux.md +31 -31
  30. package/template/.claude/commands/validate.md +81 -81
  31. package/template/.claude/hooks/ai-selector.sh +39 -39
  32. package/template/.claude/hooks/auto-checkpoint.sh +30 -30
  33. package/template/.claude/hooks/output-validator.sh +45 -45
  34. package/template/.claude/hooks/post-stage.sh +28 -28
  35. package/template/.claude/hooks/pre-stage.sh +47 -47
  36. package/template/.claude/hooks/session-start.sh +27 -27
  37. package/template/.claude/hooks/statusline.sh +24 -24
  38. package/template/.claude/hooks/stop.sh +26 -26
  39. package/template/.claude/settings.json +32 -32
  40. package/template/.claude/skills/ai-collaboration/README.md +31 -31
  41. package/template/.claude/skills/ai-collaboration/debate.md +66 -66
  42. package/template/.claude/skills/ai-collaboration/parallel.md +34 -34
  43. package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +59 -63
  44. package/template/.claude/skills/auto-checkpoint/README.md +46 -46
  45. package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +68 -72
  46. package/template/.claude/skills/auto-checkpoint/rollback.md +95 -95
  47. package/template/.claude/skills/auto-checkpoint/trigger.md +37 -37
  48. package/template/.claude/skills/context-compression/README.md +69 -69
  49. package/template/.claude/skills/context-compression/analyze.md +74 -74
  50. package/template/.claude/skills/context-compression/compress.md +103 -103
  51. package/template/.claude/skills/context-compression/prompts/compression.md +78 -78
  52. package/template/.claude/skills/output-validator/README.md +33 -33
  53. package/template/.claude/skills/output-validator/prompts/CLAUDE.md +74 -78
  54. package/template/.claude/skills/output-validator/validate.md +76 -76
  55. package/template/.claude/skills/smart-handoff/README.md +35 -35
  56. package/template/.claude/skills/smart-handoff/extract.md +42 -42
  57. package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +52 -54
  58. package/template/.claude/skills/smart-handoff/summarize.md +55 -55
  59. package/template/.claude/skills/stage-transition/README.md +50 -50
  60. package/template/.claude/skills/stage-transition/handoff-gen.md +89 -89
  61. package/template/.claude/skills/stage-transition/prompts/transition.md +74 -74
  62. package/template/.claude/skills/stage-transition/validate.md +41 -41
  63. package/template/CLAUDE.md +334 -335
  64. package/template/config/ai_benchmarking.yaml +22 -22
  65. package/template/config/ai_collaboration.yaml +18 -18
  66. package/template/config/ai_logging.yaml +50 -50
  67. package/template/config/auto_checkpoint.yaml +32 -32
  68. package/template/config/context.yaml +20 -20
  69. package/template/config/git.yaml +51 -51
  70. package/template/config/handoff_intelligence.yaml +23 -23
  71. package/template/config/mcp_fallbacks.yaml +71 -71
  72. package/template/config/memory_integration.yaml +23 -23
  73. package/template/config/model_enforcement.yaml +53 -53
  74. package/template/config/models.yaml +24 -24
  75. package/template/config/output_validation.yaml +44 -44
  76. package/template/config/pipeline.yaml +25 -25
  77. package/template/config/pipeline_forking.yaml +40 -40
  78. package/template/config/qa_logging.yaml +67 -67
  79. package/template/config/smart_rollback.yaml +48 -48
  80. package/template/config/stage_personas.yaml +154 -154
  81. package/template/config/workflow.yaml +16 -16
  82. package/template/scripts/ai-benchmark.sh +41 -41
  83. package/template/scripts/codex-wrapper.sh +32 -32
  84. package/template/scripts/context-manager.sh +136 -136
  85. package/template/scripts/create-checkpoint.sh +34 -34
  86. package/template/scripts/gemini-wrapper.sh +31 -31
  87. package/template/scripts/init-project.sh +40 -40
  88. package/template/scripts/list-stages.sh +30 -30
  89. package/template/scripts/next-stage.sh +67 -67
  90. package/template/scripts/output-validate.sh +2 -2
  91. package/template/scripts/pipeline-fork.sh +68 -68
  92. package/template/scripts/pre-run-check.sh +84 -84
  93. package/template/scripts/restore-checkpoint.sh +50 -50
  94. package/template/scripts/run-stage.sh +44 -44
  95. package/template/scripts/show-status.sh +30 -30
  96. package/template/scripts/smart-handoff.sh +70 -70
  97. package/template/stages/01-brainstorm/CLAUDE.md +70 -74
  98. package/template/stages/01-brainstorm/README.md +54 -54
  99. package/template/stages/01-brainstorm/config.yaml +18 -18
  100. package/template/stages/01-brainstorm/prompts/collaboration.md +24 -24
  101. package/template/stages/01-brainstorm/prompts/ideation.md +41 -41
  102. package/template/stages/01-brainstorm/prompts/persona.md +50 -50
  103. package/template/stages/01-brainstorm/prompts/requirements.md +55 -55
  104. package/template/stages/01-brainstorm/prompts/validation.md +28 -28
  105. package/template/stages/01-brainstorm/templates/ideas.md +47 -47
  106. package/template/stages/01-brainstorm/templates/requirements_analysis.md +61 -61
  107. package/template/stages/02-research/CLAUDE.md +72 -76
  108. package/template/stages/02-research/config.yaml +12 -12
  109. package/template/stages/02-research/prompts/collaboration.md +29 -29
  110. package/template/stages/02-research/prompts/feasibility.md +38 -38
  111. package/template/stages/02-research/prompts/market_analysis.md +29 -29
  112. package/template/stages/02-research/prompts/tech_stack.md +34 -34
  113. package/template/stages/02-research/prompts/validation.md +29 -29
  114. package/template/stages/03-planning/CLAUDE.md +88 -92
  115. package/template/stages/03-planning/config.yaml +10 -10
  116. package/template/stages/03-planning/prompts/architecture.md +43 -43
  117. package/template/stages/03-planning/prompts/collaboration.md +34 -34
  118. package/template/stages/03-planning/prompts/validation.md +34 -34
  119. package/template/stages/04-ui-ux/CLAUDE.md +68 -72
  120. package/template/stages/04-ui-ux/config.yaml +5 -5
  121. package/template/stages/04-ui-ux/prompts/collaboration.md +35 -35
  122. package/template/stages/04-ui-ux/prompts/validation.md +30 -30
  123. package/template/stages/05-task-management/CLAUDE.md +81 -85
  124. package/template/stages/05-task-management/config.yaml +17 -17
  125. package/template/stages/05-task-management/prompts/collaboration.md +30 -30
  126. package/template/stages/05-task-management/prompts/validation.md +33 -33
  127. package/template/stages/05-task-management/templates/notion_integration.md +70 -70
  128. package/template/stages/05-task-management/templates/parallel_groups.yaml +64 -64
  129. package/template/stages/05-task-management/templates/task_schema.yaml +33 -33
  130. package/template/stages/06-implementation/CLAUDE.md +117 -121
  131. package/template/stages/06-implementation/config.yaml +10 -10
  132. package/template/stages/06-implementation/prompts/collaboration.md +29 -29
  133. package/template/stages/06-implementation/prompts/validation.md +36 -36
  134. package/template/stages/07-refactoring/CLAUDE.md +120 -124
  135. package/template/stages/07-refactoring/config.yaml +11 -11
  136. package/template/stages/07-refactoring/prompts/collaboration.md +36 -36
  137. package/template/stages/07-refactoring/prompts/validation.md +40 -40
  138. package/template/stages/08-qa/CLAUDE.md +80 -84
  139. package/template/stages/08-qa/config.yaml +7 -7
  140. package/template/stages/08-qa/prompts/collaboration.md +34 -34
  141. package/template/stages/08-qa/prompts/validation.md +41 -41
  142. package/template/stages/09-testing/CLAUDE.md +86 -90
  143. package/template/stages/09-testing/config.yaml +10 -10
  144. package/template/stages/09-testing/prompts/collaboration.md +38 -38
  145. package/template/stages/09-testing/prompts/validation.md +41 -41
  146. package/template/stages/10-deployment/CLAUDE.md +86 -90
  147. package/template/stages/10-deployment/config.yaml +11 -11
  148. package/template/stages/10-deployment/prompts/collaboration.md +37 -37
  149. package/template/stages/10-deployment/prompts/validation.md +54 -54
  150. package/template/stages/10-deployment/templates/github-actions-cd.yaml +1 -1
@@ -1,129 +1,129 @@
1
1
  # Requirements Analysis
2
2
 
3
- **프로젝트**: {{PROJECT_NAME}}
4
- **생성일**: {{DATE}}
5
- **버전**: 1.0
3
+ **Project**: {{PROJECT_NAME}}
4
+ **Created**: {{DATE}}
5
+ **Version**: 1.0
6
6
 
7
7
  ---
8
8
 
9
- ## 1. 기능적 요구사항 (Functional Requirements)
9
+ ## 1. Functional Requirements
10
10
 
11
- ### 1.1 사용자 관리
11
+ ### 1.1 User Management
12
12
 
13
- | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
14
- |----|----------|----------|--------|--------|
13
+ | ID | Requirement | Priority | Complexity | Dependencies |
14
+ |----|-------------|----------|------------|--------------|
15
15
  | FR-UM-001 | | Must | | |
16
16
  | FR-UM-002 | | Should | | |
17
17
 
18
- ### 1.2 핵심 기능
18
+ ### 1.2 Core Features
19
19
 
20
- | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
21
- |----|----------|----------|--------|--------|
20
+ | ID | Requirement | Priority | Complexity | Dependencies |
21
+ |----|-------------|----------|------------|--------------|
22
22
  | FR-CF-001 | | Must | | |
23
23
  | FR-CF-002 | | Must | | |
24
24
 
25
- ### 1.3 데이터 관리
25
+ ### 1.3 Data Management
26
26
 
27
- | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
28
- |----|----------|----------|--------|--------|
27
+ | ID | Requirement | Priority | Complexity | Dependencies |
28
+ |----|-------------|----------|------------|--------------|
29
29
  | FR-DM-001 | | Should | | |
30
30
 
31
- ### 1.4 통합/연동
31
+ ### 1.4 Integration
32
32
 
33
- | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
34
- |----|----------|----------|--------|--------|
33
+ | ID | Requirement | Priority | Complexity | Dependencies |
34
+ |----|-------------|----------|------------|--------------|
35
35
  | FR-INT-001 | | Could | | |
36
36
 
37
37
  ---
38
38
 
39
- ## 2. 비기능적 요구사항 (Non-Functional Requirements)
39
+ ## 2. Non-Functional Requirements
40
40
 
41
- ### 2.1 성능 (Performance)
42
- - **응답 시간**: 페이지 로드 < 3초, API 응답 < 500ms
43
- - **처리량**: 동시 사용자 X 지원
44
- - **데이터 볼륨**: 초기 X GB, 연간 성장률 Y%
41
+ ### 2.1 Performance
42
+ - **Response Time**: Page load < 3 seconds, API response < 500ms
43
+ - **Throughput**: Support X concurrent users
44
+ - **Data Volume**: Initial X GB, annual growth rate Y%
45
45
 
46
- ### 2.2 확장성 (Scalability)
47
- - **수평 확장**:
48
- - **수직 확장**:
49
- - **목표 용량**:
46
+ ### 2.2 Scalability
47
+ - **Horizontal Scaling**:
48
+ - **Vertical Scaling**:
49
+ - **Target Capacity**:
50
50
 
51
- ### 2.3 보안 (Security)
52
- - **인증**:
53
- - **권한 관리**:
54
- - **데이터 암호화**:
55
- - **감사 로그**:
51
+ ### 2.3 Security
52
+ - **Authentication**:
53
+ - **Authorization**:
54
+ - **Data Encryption**:
55
+ - **Audit Logging**:
56
56
 
57
- ### 2.4 가용성 (Availability)
58
- - **업타임 목표**: 99.9%
59
- - **RTO (복구 시간 목표)**:
60
- - **RPO (복구 시점 목표)**:
57
+ ### 2.4 Availability
58
+ - **Uptime Target**: 99.9%
59
+ - **RTO (Recovery Time Objective)**:
60
+ - **RPO (Recovery Point Objective)**:
61
61
 
62
- ### 2.5 사용성 (Usability)
63
- - **접근성**: WCAG 2.1 Level AA
64
- - **반응형**: 모바일, 태블릿, 데스크탑
65
- - **브라우저 지원**:
62
+ ### 2.5 Usability
63
+ - **Accessibility**: WCAG 2.1 Level AA
64
+ - **Responsive**: Mobile, Tablet, Desktop
65
+ - **Browser Support**:
66
66
 
67
67
  ---
68
68
 
69
- ## 3. 제약조건 (Constraints)
69
+ ## 3. Constraints
70
70
 
71
- ### 3.1 기술적 제약
71
+ ### 3.1 Technical Constraints
72
72
  -
73
73
 
74
- ### 3.2 비즈니스 제약
74
+ ### 3.2 Business Constraints
75
75
  -
76
76
 
77
- ### 3.3 시간/예산 제약
78
- - **일정**:
79
- - **예산**:
80
- - **팀 규모**:
77
+ ### 3.3 Time/Budget Constraints
78
+ - **Timeline**:
79
+ - **Budget**:
80
+ - **Team Size**:
81
81
 
82
- ### 3.4 규제/법적 제약
82
+ ### 3.4 Regulatory/Legal Constraints
83
83
  -
84
84
 
85
85
  ---
86
86
 
87
- ## 4. 가정사항 (Assumptions)
87
+ ## 4. Assumptions
88
88
 
89
- | ID | 가정 | 검증 필요 | 검증 방법 |
90
- |----|------|-----------|-----------|
89
+ | ID | Assumption | Needs Verification | Verification Method |
90
+ |----|------------|-------------------|---------------------|
91
91
  | A-001 | | Yes | |
92
92
  | A-002 | | No | |
93
93
 
94
94
  ---
95
95
 
96
- ## 5. MVP 범위
96
+ ## 5. MVP Scope
97
97
 
98
- ### 5.1 필수 기능 (Must Have)
98
+ ### 5.1 Must Have
99
99
  1.
100
100
  2.
101
101
  3.
102
102
 
103
- ### 5.2 있으면 좋은 기능 (Should Have)
103
+ ### 5.2 Should Have
104
104
  1.
105
105
  2.
106
106
 
107
- ### 5.3 가능하면 (Could Have)
107
+ ### 5.3 Could Have
108
108
  1.
109
109
 
110
- ### 5.4 향후 버전 (Won't Have - This Time)
110
+ ### 5.4 Won't Have - This Time
111
111
  1.
112
112
  2.
113
113
 
114
114
  ---
115
115
 
116
- ## 6. 리스크 식별
116
+ ## 6. Risk Identification
117
117
 
118
- | ID | 리스크 | 영향도 | 확률 | 완화 전략 |
119
- |----|--------|--------|------|-----------|
118
+ | ID | Risk | Impact | Probability | Mitigation Strategy |
119
+ |----|------|--------|-------------|---------------------|
120
120
  | R-001 | | High | Medium | |
121
121
  | R-002 | | Medium | Low | |
122
122
 
123
123
  ---
124
124
 
125
- ## 7. 다음 단계
125
+ ## 7. Next Steps
126
126
 
127
- 1. [ ] Research 스테이지에서 기술적 실현 가능성 검토
128
- 2. [ ] Planning 스테이지에서 아키텍처 설계
129
- 3. [ ] 이해관계자 리뷰 승인
127
+ 1. [ ] Validate technical feasibility in Research stage
128
+ 2. [ ] Design architecture in Planning stage
129
+ 3. [ ] Stakeholder review and approval
@@ -1,101 +1,97 @@
1
1
  # Stage 02: Research
2
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
- ## 입력 파일
3
+ Technical research and market analysis stage
4
+
5
+ ## Persona: Analytical Investigator
6
+
7
+ > You are an Analytical Investigator.
8
+ > Provide evidence for all claims and investigate from multiple perspectives.
9
+ > Clarify trade-offs and provide objective analysis.
10
+
11
+ ### Characteristics
12
+ - Systematic investigation
13
+ - Evidence-based analysis
14
+ - Comparative evaluation
15
+ - Comprehensive judgment
16
+
17
+ ### Recommended Actions
18
+ - Research multiple sources
19
+ - Data-driven analysis
20
+ - Trade-off comparison
21
+ - Clear evidence presentation
22
+
23
+ ### Actions to Avoid
24
+ - Relying on speculation
25
+ - Single source dependency
26
+ - Emotional judgment
27
+
28
+ ### AI Settings
29
+ - **Temperature**: 0.4 (high accuracy)
30
+ - **Rigor**: High
31
+
32
+ ## Execution Model
33
+ - **Primary**: Claude (in-depth analysis, document synthesis)
34
+ - **Mode**: Plan Mode - structured research
35
+
36
+ ## Goals
37
+ 1. Technical stack feasibility review
38
+ 2. Market analysis and competitive landscape
39
+ 3. External API/service research
40
+ 4. Technical risk identification
41
+
42
+ ## Input Files
43
43
  - `../01-brainstorm/outputs/ideas.md`
44
44
  - `../01-brainstorm/outputs/requirements_analysis.md`
45
45
  - `../01-brainstorm/HANDOFF.md`
46
46
 
47
- ## 출력 파일
48
- - `outputs/tech_research.md` - 기술 리서치 결과
49
- - `outputs/market_analysis.md` - 시장 분석
50
- - `outputs/feasibility_report.md` - 실현 가능성 보고서
51
- - `HANDOFF.md` - 다음 스테이지 인계 문서
47
+ ## Output Files
48
+ - `outputs/tech_research.md` - Technical research results
49
+ - `outputs/market_analysis.md` - Market analysis
50
+ - `outputs/feasibility_report.md` - Feasibility report
51
+ - `HANDOFF.md` - Handoff document for next stage
52
52
 
53
- ## MCP 서버 활용
53
+ ## MCP Server Usage
54
54
 
55
55
  ### firecrawl
56
- 크롤링 데이터 수집
56
+ Web crawling and data collection
57
57
  ```
58
- firecrawl로 경쟁사 웹사이트 분석
58
+ Analyze competitor websites with firecrawl
59
59
  ```
60
60
 
61
61
  ### exa
62
- AI 기반 검색
62
+ AI-powered search
63
63
  ```
64
- 최신 기술 트렌드 베스트 프랙티스 검색
64
+ Search for latest technology trends and best practices
65
65
  ```
66
66
 
67
67
  ### context7
68
- 문서 검색
68
+ Documentation search
69
69
  ```
70
- 라이브러리/프레임워크 공식 문서 조회
70
+ Query official library/framework documentation
71
71
  ```
72
72
 
73
- ## 워크플로우
73
+ ## Workflow
74
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**: 시스템 아키텍처 및 기술 스택 결정
75
+ ### 1. Technology Stack Research
76
+ - Research optimal tech stack for each MVP feature
77
+ - Compare pros and cons of each technology
78
+ - Evaluate learning curve and community support
98
79
 
80
+ ### 2. Market Analysis
81
+ - Detailed competitor analysis
82
+ - Market size and trends
83
+ - Entry barrier analysis
99
84
 
85
+ ### 3. Feasibility Assessment
86
+ - Technical feasibility
87
+ - Time/resource requirements
88
+ - Risk assessment
100
89
 
90
+ ## Completion Criteria
91
+ - [ ] Complete technology stack comparison analysis
92
+ - [ ] In-depth analysis of 3+ competitors
93
+ - [ ] Write feasibility report
94
+ - [ ] Generate HANDOFF.md
101
95
 
96
+ ## Next Stage
97
+ → **03-planning**: System architecture and technology stack decisions
@@ -3,7 +3,7 @@
3
3
  stage:
4
4
  id: "02-research"
5
5
  name: "Research"
6
- description: "기술 리서치 시장 분석"
6
+ description: "Technical research and market analysis"
7
7
 
8
8
  models:
9
9
  primary: "claude"
@@ -24,23 +24,23 @@ mcp_servers:
24
24
  inputs:
25
25
  required:
26
26
  - name: "../01-brainstorm/outputs/requirements_analysis.md"
27
- description: "요구사항 분석 결과"
27
+ description: "Requirements analysis results"
28
28
  - name: "../01-brainstorm/HANDOFF.md"
29
- description: "이전 스테이지 핸드오프"
29
+ description: "Previous stage handoff"
30
30
  optional:
31
31
  - name: "../01-brainstorm/outputs/ideas.md"
32
- description: "브레인스토밍 아이디어"
32
+ description: "Brainstorming ideas"
33
33
 
34
34
  outputs:
35
35
  required:
36
36
  - name: "tech_research.md"
37
- description: "기술 리서치 결과"
37
+ description: "Technical research results"
38
38
  - name: "market_analysis.md"
39
- description: "시장 분석"
39
+ description: "Market analysis"
40
40
  - name: "feasibility_report.md"
41
- description: "실현 가능성 보고서"
41
+ description: "Feasibility report"
42
42
  - name: "HANDOFF.md"
43
- description: "다음 스테이지 인계 문서"
43
+ description: "Handoff document for next stage"
44
44
 
45
45
  prompts:
46
46
  - name: "tech_stack"
@@ -55,10 +55,10 @@ prompts:
55
55
 
56
56
  completion:
57
57
  checklist:
58
- - "기술 스택 비교 분석 완료"
59
- - "경쟁사 3개 이상 심층 분석"
60
- - "실현 가능성 보고서 작성"
61
- - "HANDOFF.md 생성"
58
+ - "Complete technology stack comparison analysis"
59
+ - "In-depth analysis of 3+ competitors"
60
+ - "Write feasibility report"
61
+ - "Generate HANDOFF.md"
62
62
 
63
63
  transition:
64
64
  next_stage: "03-planning"
@@ -1,51 +1,51 @@
1
- # AI 협업 프롬프트 - Research
1
+ # AI Collaboration Prompt - Research
2
2
 
3
- ## 협업 모드: Parallel + Sequential
3
+ ## Collaboration Mode: Parallel + Sequential
4
4
 
5
- 스테이지에서는 **병렬 리서치** **순차적 통합**을 진행합니다.
5
+ This stage uses **parallel research** followed by **sequential integration**.
6
6
 
7
- ### 참여 모델
8
- - **Claude**: 심층 분석, 기술 문서 합성
9
- - **Gemini**: 시장 트렌드, 경쟁사 분석
7
+ ### Participating Models
8
+ - **Claude**: In-depth analysis, technical document synthesis
9
+ - **Gemini**: Market trends, competitor analysis
10
10
 
11
- ### 협업 프롬프트
11
+ ### Collaboration Prompt
12
12
 
13
13
  ```
14
- # 병렬 리서치
15
- /collaborate --mode parallel --models claude,gemini --task "기술 시장 리서치"
14
+ # Parallel Research
15
+ /collaborate --mode parallel --models claude,gemini --task "technology and market research"
16
16
 
17
- # 순차적 통합 (Claude Gemini 결과 검토)
17
+ # Sequential Integration (Claude reviews Gemini results)
18
18
  /collaborate --mode sequential --chain "gemini:market_research -> claude:synthesis"
19
19
  ```
20
20
 
21
- ### 작업 분담
21
+ ### Task Distribution
22
22
 
23
- | AI | 담당 영역 | 출력 |
24
- |----|----------|------|
25
- | Gemini | 시장 분석, 경쟁사 조사 | market_analysis.md |
26
- | Claude | 기술 스택 분석, 실현 가능성 | tech_research.md, feasibility_report.md |
23
+ | AI | Responsibility | Output |
24
+ |----|----------------|--------|
25
+ | Gemini | Market analysis, competitor research | market_analysis.md |
26
+ | Claude | Tech stack analysis, feasibility | tech_research.md, feasibility_report.md |
27
27
 
28
- ### MCP 서버 활용
28
+ ### MCP Server Usage
29
29
 
30
- - **firecrawl**: 크롤링 (Gemini 활용)
31
- - **exa**: AI 검색 (Claude 활용)
32
- - **context7**: 문서 검색 (Claude 활용)
30
+ - **firecrawl**: Web crawling (Gemini usage)
31
+ - **exa**: AI search (Claude usage)
32
+ - **context7**: Document search (Claude usage)
33
33
 
34
- ### 출력 형식
34
+ ### Output Format
35
35
 
36
36
  ```markdown
37
- ## AI 협업 결과
37
+ ## AI Collaboration Results
38
38
 
39
- ### Gemini 리서치 (시장)
40
- - 경쟁사 분석
41
- - 시장 트렌드
39
+ ### Gemini Research (Market)
40
+ - Competitor analysis
41
+ - Market trends
42
42
  ...
43
43
 
44
- ### Claude 리서치 (기술)
45
- - 기술 스택 비교
46
- - 실현 가능성 평가
44
+ ### Claude Research (Technology)
45
+ - Tech stack comparison
46
+ - Feasibility assessment
47
47
  ...
48
48
 
49
- ### 통합 인사이트
50
- - [핵심 발견]
49
+ ### Integrated Insights
50
+ - [Key findings]
51
51
  ```
@@ -1,73 +1,73 @@
1
1
  # Feasibility Analysis Prompt
2
2
 
3
- ## 사용 모델
3
+ ## Model
4
4
  Claude
5
5
 
6
- ## 프롬프트
6
+ ## Prompt
7
7
 
8
8
  ```
9
- 당신은 프로젝트 실현 가능성 평가 전문가입니다.
9
+ You are a project feasibility assessment expert.
10
10
 
11
- 다음 자료를 바탕으로 종합적인 실현 가능성 평가를 수행해주세요:
11
+ Please perform a comprehensive feasibility evaluation based on the following materials:
12
12
 
13
13
  ---
14
- ## 기술 리서치
14
+ ## Technical Research
15
15
  {{TECH_RESEARCH}}
16
16
 
17
- ## 시장 분석
17
+ ## Market Analysis
18
18
  {{MARKET_ANALYSIS}}
19
19
 
20
- ## 요구사항
20
+ ## Requirements
21
21
  {{REQUIREMENTS}}
22
22
  ---
23
23
 
24
- ## 평가 항목
24
+ ## Evaluation Criteria
25
25
 
26
- ### 1. 기술적 실현 가능성
27
- - 기술 스택 성숙도
28
- - 역량 대비 복잡도
29
- - 기술적 리스크
26
+ ### 1. Technical Feasibility
27
+ - Technology stack maturity
28
+ - Complexity relative to team capabilities
29
+ - Technical risks
30
30
 
31
- 점수: /10
31
+ Score: /10
32
32
 
33
- ### 2. 경제적 실현 가능성
34
- - 예상 개발 비용
35
- - 운영 비용 (인프라, 유지보수)
36
- - ROI 예측
33
+ ### 2. Economic Feasibility
34
+ - Estimated development costs
35
+ - Operational costs (infrastructure, maintenance)
36
+ - ROI projection
37
37
 
38
- 점수: /10
38
+ Score: /10
39
39
 
40
- ### 3. 일정 실현 가능성
41
- - MVP 개발 예상 기간
42
- - 전체 개발 예상 기간
43
- - 일정 리스크
40
+ ### 3. Schedule Feasibility
41
+ - Estimated MVP development period
42
+ - Estimated total development period
43
+ - Schedule risks
44
44
 
45
- 점수: /10
45
+ Score: /10
46
46
 
47
- ### 4. 시장 실현 가능성
48
- - 시장 진입 가능성
49
- - 차별화 가능성
50
- - 성장 가능성
47
+ ### 4. Market Feasibility
48
+ - Market entry potential
49
+ - Differentiation potential
50
+ - Growth potential
51
51
 
52
- 점수: /10
52
+ Score: /10
53
53
 
54
- ### 5. 리스크 매트릭스
54
+ ### 5. Risk Matrix
55
55
 
56
- | 리스크 | 영향도 | 발생확률 | 완화전략 | 담당 |
57
- |--------|--------|----------|----------|------|
56
+ | Risk | Impact | Probability | Mitigation Strategy | Owner |
57
+ |------|--------|-------------|---------------------|-------|
58
58
 
59
- ### 6. Go/No-Go 권고
59
+ ### 6. Go/No-Go Recommendation
60
60
 
61
- 종합 점수: /40
61
+ Total Score: /40
62
62
 
63
- 권고: GO / CONDITIONAL GO / NO-GO
63
+ Recommendation: GO / CONDITIONAL GO / NO-GO
64
64
 
65
- 조건 (CONDITIONAL일 경우):
65
+ Conditions (if CONDITIONAL):
66
66
  -
67
67
 
68
- ## 출력 형식
69
- 실현 가능성 보고서 (경영진 요약 포함)
68
+ ## Output Format
69
+ Feasibility report (including executive summary)
70
70
  ```
71
71
 
72
- ## 기대 출력
72
+ ## Expected Output
73
73
  `outputs/feasibility_report.md`