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,73 +1,73 @@
1
1
  # Persona Generation Prompt Template
2
2
 
3
- 사용자 페르소나 생성을 위한 프롬프트
3
+ Prompt for generating user personas
4
4
 
5
- ## 사용 모델
5
+ ## Model
6
6
  Gemini
7
7
 
8
- ## 프롬프트
8
+ ## Prompt
9
9
 
10
10
  ```
11
- 당신은 UX 리서처이자 사용자 심리 전문가입니다.
11
+ You are a UX researcher and user psychology expert.
12
12
 
13
- 다음 프로젝트에 대한 상세 사용자 페르소나를 생성해주세요:
13
+ Generate detailed user personas for the following project:
14
14
 
15
15
  ---
16
- 프로젝트: {{PROJECT_NAME}}
17
- 설명: {{PROJECT_DESCRIPTION}}
18
- 대상 시장: {{TARGET_MARKET}}
16
+ Project: {{PROJECT_NAME}}
17
+ Description: {{PROJECT_DESCRIPTION}}
18
+ Target Market: {{TARGET_MARKET}}
19
19
  ---
20
20
 
21
- ## 페르소나 생성 요청
21
+ ## Persona Generation Request
22
22
 
23
- 페르소나에 대해 다음 정보를 포함해주세요:
23
+ Please include the following information for each persona:
24
24
 
25
- ### 기본 정보
26
- - **이름**: (가상의 현실적인 이름)
27
- - **나이**:
28
- - **직업**:
29
- - **위치**:
30
- - **교육 수준**:
25
+ ### Basic Information
26
+ - **Name**: (realistic fictional name)
27
+ - **Age**:
28
+ - **Occupation**:
29
+ - **Location**:
30
+ - **Education Level**:
31
31
 
32
- ### 심리적 프로필
33
- - **성격 유형** (MBTI 참고):
34
- - **가치관**:
35
- - **라이프스타일**:
32
+ ### Psychological Profile
33
+ - **Personality Type** (MBTI reference):
34
+ - **Values**:
35
+ - **Lifestyle**:
36
36
 
37
- ### 목표와 동기
38
- - **주요 목표** ( 제품과 관련하여):
39
- - **숨겨진 동기**:
40
- - **성공의 정의**:
37
+ ### Goals and Motivations
38
+ - **Primary Goals** (related to this product):
39
+ - **Hidden Motivations**:
40
+ - **Definition of Success**:
41
41
 
42
42
  ### Pain Points
43
- - **현재 해결책의 불만**:
44
- - **시간/비용 낭비 요소**:
45
- - **감정적 좌절감**:
46
-
47
- ### 기술 프로필
48
- - **기술 친숙도** (1-5):
49
- - **주로 사용하는 기기**:
50
- - **앱 사용 패턴**:
51
-
52
- ### 사용 시나리오
53
- - **제품을 발견하는 상황**:
54
- - **핵심 사용 사례**:
55
- - **기대하는 결과**:
56
-
57
- ### 인용구
58
- 페르소나가 법한 말:
43
+ - **Frustrations with Current Solutions**:
44
+ - **Time/Cost Waste Factors**:
45
+ - **Emotional Frustrations**:
46
+
47
+ ### Technology Profile
48
+ - **Technology Familiarity** (1-5):
49
+ - **Primary Devices Used**:
50
+ - **App Usage Patterns**:
51
+
52
+ ### Usage Scenarios
53
+ - **Context of Discovering the Product**:
54
+ - **Core Use Cases**:
55
+ - **Expected Outcomes**:
56
+
57
+ ### Quote
58
+ Something this persona would say:
59
59
  > "..."
60
60
 
61
- ## 출력 형식
62
- 3 이상의 페르소나를 마크다운 형식으로 출력해주세요.
63
- 페르소나는 명확히 구분되어야 합니다.
61
+ ## Output Format
62
+ Please output 3 or more personas in markdown format.
63
+ Each persona should be clearly separated.
64
64
  ```
65
65
 
66
- ## 변수 치환
67
- - `{{PROJECT_NAME}}`: 프로젝트 이름
68
- - `{{PROJECT_DESCRIPTION}}`: 프로젝트 설명
69
- - `{{TARGET_MARKET}}`: 대상 시장
66
+ ## Variable Substitution
67
+ - `{{PROJECT_NAME}}`: Project name
68
+ - `{{PROJECT_DESCRIPTION}}`: Project description
69
+ - `{{TARGET_MARKET}}`: Target market
70
70
 
71
- ## 기대 출력
72
- - `outputs/personas.md`로 저장
73
- - 최소 3 이상의 상세 페르소나
71
+ ## Expected Output
72
+ - Save to `outputs/personas.md`
73
+ - At least 3 detailed personas
@@ -1,73 +1,73 @@
1
1
  # Requirements Analysis Prompt Template
2
2
 
3
- 요구사항 분석 구조화를 위한 프롬프트
3
+ Prompt for requirements analysis and structuring
4
4
 
5
- ## 사용 모델
6
- ClaudeCode (구조화 분석에 적합)
5
+ ## Model
6
+ ClaudeCode (suited for structuring and analysis)
7
7
 
8
- ## 프롬프트
8
+ ## Prompt
9
9
 
10
10
  ```
11
- 당신은 시니어 시스템 분석가입니다.
11
+ You are a senior systems analyst.
12
12
 
13
- 다음 브레인스토밍 결과와 프로젝트 브리프를 바탕으로
14
- 체계적인 요구사항 분석을 수행해주세요:
13
+ Based on the following brainstorming results and project brief,
14
+ perform systematic requirements analysis:
15
15
 
16
16
  ---
17
- ## 프로젝트 브리프
17
+ ## Project Brief
18
18
  {{PROJECT_BRIEF}}
19
19
 
20
- ## 브레인스토밍 결과
20
+ ## Brainstorming Results
21
21
  {{BRAINSTORM_IDEAS}}
22
22
 
23
- ## 사용자 페르소나
23
+ ## User Personas
24
24
  {{PERSONAS}}
25
25
  ---
26
26
 
27
- ## 분석 요청
28
-
29
- ### 1. 기능적 요구사항 (Functional Requirements)
30
- 카테고리별로 분류:
31
- - 사용자 관리
32
- - 핵심 기능
33
- - 데이터 관리
34
- - 통합/연동
35
- - 보고/분석
36
-
37
- 요구사항에 대해:
38
- | ID | 요구사항 | 우선순위 | 복잡도 | 의존성 |
39
- |----|----------|----------|--------|--------|
40
-
41
- ### 2. 비기능적 요구사항 (Non-Functional Requirements)
42
- - **성능**: 응답 시간, 처리량
43
- - **확장성**: 사용자 수, 데이터 볼륨
44
- - **보안**: 인증, 권한, 데이터 보호
45
- - **가용성**: 업타임 목표
46
- - **사용성**: 접근성, UX 기준
47
-
48
- ### 3. 제약조건 (Constraints)
49
- - 기술적 제약
50
- - 비즈니스 제약
51
- - 시간/예산 제약
52
- - 규제/법적 제약
53
-
54
- ### 4. 가정사항 (Assumptions)
55
- 검증이 필요한 가정들
56
-
57
- ### 5. MVP 범위 제안
58
- - **필수 기능** (Must Have)
59
- - **있으면 좋은 기능** (Nice to Have)
60
- - **향후 버전** (Future)
61
-
62
- ### 6. 리스크 식별
63
- | 리스크 | 영향도 | 발생 확률 | 완화 전략 |
64
- |--------|--------|-----------|-----------|
65
-
66
- ## 출력 형식
67
- 구조화된 마크다운 문서로 출력해주세요.
27
+ ## Analysis Request
28
+
29
+ ### 1. Functional Requirements
30
+ Categorize by:
31
+ - User Management
32
+ - Core Features
33
+ - Data Management
34
+ - Integration
35
+ - Reporting/Analytics
36
+
37
+ For each requirement:
38
+ | ID | Requirement | Priority | Complexity | Dependencies |
39
+ |----|-------------|----------|------------|--------------|
40
+
41
+ ### 2. Non-Functional Requirements
42
+ - **Performance**: Response time, throughput
43
+ - **Scalability**: User count, data volume
44
+ - **Security**: Authentication, authorization, data protection
45
+ - **Availability**: Uptime target
46
+ - **Usability**: Accessibility, UX standards
47
+
48
+ ### 3. Constraints
49
+ - Technical constraints
50
+ - Business constraints
51
+ - Time/budget constraints
52
+ - Regulatory/legal constraints
53
+
54
+ ### 4. Assumptions
55
+ Assumptions that need verification
56
+
57
+ ### 5. MVP Scope Proposal
58
+ - **Must Have**
59
+ - **Nice to Have**
60
+ - **Future Version**
61
+
62
+ ### 6. Risk Identification
63
+ | Risk | Impact | Probability | Mitigation Strategy |
64
+ |------|--------|-------------|---------------------|
65
+
66
+ ## Output Format
67
+ Please output as a structured markdown document.
68
68
  ```
69
69
 
70
- ## 기대 출력
71
- - `outputs/requirements_analysis.md`로 저장
72
- - MoSCoW 우선순위가 적용된 요구사항 목록
73
- - MVP 범위 명확히 정의
70
+ ## Expected Output
71
+ - Save to `outputs/requirements_analysis.md`
72
+ - Requirements list with MoSCoW prioritization
73
+ - Clearly defined MVP scope
@@ -1,50 +1,50 @@
1
- # 산출물 검증 프롬프트 - Brainstorming
1
+ # Output Validation Prompt - Brainstorming
2
2
 
3
- ## 검증 대상
3
+ ## Validation Targets
4
4
 
5
- | 산출물 | 필수 조건 | 검증 방법 |
6
- |--------|----------|----------|
7
- | `ideas.md` | 최소 10 아이디어 | 수량 확인 |
8
- | `requirements_analysis.md` | 기능/비기능 섹션 포함 | 구조 확인 |
9
- | `HANDOFF.md` | 완료 체크리스트 | 항목 확인 |
5
+ | Output | Required Conditions | Validation Method |
6
+ |--------|---------------------|-------------------|
7
+ | `ideas.md` | At least 10 ideas | Count verification |
8
+ | `requirements_analysis.md` | Includes functional/non-functional sections | Structure verification |
9
+ | `HANDOFF.md` | Completion checklist | Item verification |
10
10
 
11
- ## 검증 명령
11
+ ## Validation Command
12
12
 
13
13
  ```bash
14
14
  /validate --stage 01-brainstorm
15
15
  ```
16
16
 
17
- ## 품질 기준
17
+ ## Quality Criteria
18
18
 
19
19
  ### ideas.md
20
- - [ ] 최소 10 아이디어 존재
21
- - [ ] 아이디어에 장단점 분석
22
- - [ ] 우선순위 또는 카테고리 분류
23
- - [ ] 실현 가능성 초기 평가
20
+ - [ ] At least 10 ideas exist
21
+ - [ ] Pros and cons analysis for each idea
22
+ - [ ] Priority or category classification
23
+ - [ ] Initial feasibility assessment
24
24
 
25
25
  ### requirements_analysis.md
26
- - [ ] 기능적 요구사항 섹션
27
- - [ ] 비기능적 요구사항 섹션
28
- - [ ] 제약조건 식별
29
- - [ ] MVP 범위 제안
26
+ - [ ] Functional requirements section
27
+ - [ ] Non-functional requirements section
28
+ - [ ] Constraints identified
29
+ - [ ] MVP scope proposal
30
30
 
31
31
  ### HANDOFF.md
32
- - [ ] 완료된 작업 체크리스트
33
- - [ ] 핵심 결정사항
34
- - [ ] 다음 스테이지 준비 항목
32
+ - [ ] Completed work checklist
33
+ - [ ] Key decisions
34
+ - [ ] Next stage preparation items
35
35
 
36
- ## 자동 검증 스크립트
36
+ ## Automated Validation Script
37
37
 
38
38
  ```bash
39
- # ideas.md 아이디어 수 확인
39
+ # Check idea count in ideas.md
40
40
  grep -c "^## " outputs/ideas.md
41
41
 
42
- # requirements_analysis.md 섹션 확인
43
- grep -E "^## (기능|비기능)" outputs/requirements_analysis.md
42
+ # Check sections in requirements_analysis.md
43
+ grep -E "^## (Functional|Non-Functional)" outputs/requirements_analysis.md
44
44
  ```
45
45
 
46
- ## 실패 조치
46
+ ## Actions on Failure
47
47
 
48
- 1. 부족한 항목 식별
49
- 2. 추가 아이디어 생성 또는 분석 보완
50
- 3. 재검증 실행
48
+ 1. Identify insufficient items
49
+ 2. Generate additional ideas or supplement analysis
50
+ 3. Re-run validation
@@ -1,91 +1,91 @@
1
1
  # Brainstorming Ideas
2
2
 
3
- **프로젝트**: {{PROJECT_NAME}}
4
- **생성일**: {{DATE}}
5
- **생성자**: {{MODEL}} (Gemini + ClaudeCode)
3
+ **Project**: {{PROJECT_NAME}}
4
+ **Created**: {{DATE}}
5
+ **Created By**: {{MODEL}} (Gemini + ClaudeCode)
6
6
 
7
7
  ---
8
8
 
9
- ## 핵심 기능 아이디어
9
+ ## Core Feature Ideas
10
10
 
11
- ### 아이디어 요약 테이블
11
+ ### Idea Summary Table
12
12
 
13
- | # | 기능명 | 설명 | 사용자 가치 | 복잡도 | 혁신성 |
14
- |---|--------|------|-------------|--------|--------|
13
+ | # | Feature Name | Description | User Value | Complexity | Innovation |
14
+ |---|--------------|-------------|------------|------------|------------|
15
15
  | 1 | | | | | |
16
16
  | 2 | | | | | |
17
17
  | 3 | | | | | |
18
18
  | ... | | | | | |
19
19
 
20
- ### 상세 아이디어
20
+ ### Detailed Ideas
21
21
 
22
- #### 아이디어 1: [기능명]
23
- - **설명**:
24
- - **사용자 가치**:
25
- - **구현 복잡도**: Low / Medium / High
26
- - **혁신성 점수**: ⭐⭐⭐⭐⭐ (5/5)
27
- - **비고**:
22
+ #### Idea 1: [Feature Name]
23
+ - **Description**:
24
+ - **User Value**:
25
+ - **Implementation Complexity**: Low / Medium / High
26
+ - **Innovation Score**: ⭐⭐⭐⭐⭐ (5/5)
27
+ - **Notes**:
28
28
 
29
29
  ---
30
30
 
31
- ## 발산적 아이디어 ("미친" 아이디어)
31
+ ## Divergent Ideas ("Crazy" Ideas)
32
32
 
33
- ### 🚀 아이디어 A: [이름]
34
- - **설명**:
35
- - **성공 임팩트**:
36
- - **실현 장벽**:
33
+ ### 🚀 Idea A: [Name]
34
+ - **Description**:
35
+ - **Impact if Successful**:
36
+ - **Realization Barriers**:
37
37
 
38
- ### 🚀 아이디어 B: [이름]
39
- - **설명**:
40
- - **성공 임팩트**:
41
- - **실현 장벽**:
38
+ ### 🚀 Idea B: [Name]
39
+ - **Description**:
40
+ - **Impact if Successful**:
41
+ - **Realization Barriers**:
42
42
 
43
- ### 🚀 아이디어 C: [이름]
44
- - **설명**:
45
- - **성공 임팩트**:
46
- - **실현 장벽**:
43
+ ### 🚀 Idea C: [Name]
44
+ - **Description**:
45
+ - **Impact if Successful**:
46
+ - **Realization Barriers**:
47
47
 
48
48
  ---
49
49
 
50
- ## 경쟁사/유사 서비스 분석
50
+ ## Competitor/Similar Service Analysis
51
51
 
52
- ### 식별된 서비스
52
+ ### Identified Services
53
53
 
54
- | 서비스 | 유형 | 강점 | 약점 | 차별화 기회 |
55
- |--------|------|------|------|-------------|
54
+ | Service | Type | Strengths | Weaknesses | Differentiation Opportunity |
55
+ |---------|------|-----------|------------|----------------------------|
56
56
  | | | | | |
57
57
 
58
- ### 상세 분석
58
+ ### Detailed Analysis
59
59
 
60
- #### [서비스 1]
60
+ #### [Service 1]
61
61
  - **URL**:
62
- - **핵심 기능**:
63
- - **가격 모델**:
64
- - **타겟 사용자**:
65
- - **우리의 차별화 포인트**:
62
+ - **Core Features**:
63
+ - **Pricing Model**:
64
+ - **Target Users**:
65
+ - **Our Differentiation Points**:
66
66
 
67
67
  ---
68
68
 
69
- ## 아이디어 우선순위 매트릭스
69
+ ## Idea Priority Matrix
70
70
 
71
71
  ```
72
- 높은 임팩트
72
+ High Impact
73
73
 
74
74
  │ ⭐ Quick Wins │ 🎯 Big Bets
75
- │ (아이디어 #) │ (아이디어 #)
75
+ │ (Idea #) │ (Idea #)
76
76
  │ │
77
77
  ────┼────────────────────┼────────────────
78
78
  │ │
79
79
  │ ❌ Not Worth It │ 🔬 Experiments
80
- │ (아이디어 #) │ (아이디어 #)
80
+ │ (Idea #) │ (Idea #)
81
81
 
82
- 낮은 임팩트
83
- 낮은 노력 높은 노력
82
+ Low Impact
83
+ Low Effort High Effort
84
84
  ```
85
85
 
86
86
  ---
87
87
 
88
- ## 다음 단계
89
- 1. Research 스테이지에서 기술적 실현 가능성 검토
90
- 2. Quick Wins 아이디어 우선 검증
91
- 3. Big Bets 아이디어 심층 분석
88
+ ## Next Steps
89
+ 1. Validate technical feasibility in Research stage
90
+ 2. Prioritize Quick Wins ideas for validation
91
+ 3. Deep dive analysis on Big Bets ideas