claude-symphony 0.0.1 → 0.0.2

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 (148) hide show
  1. package/README.md +16 -12
  2. package/bin/create.js +80 -69
  3. package/package.json +1 -1
  4. package/template/.claude/commands/benchmark.md +32 -32
  5. package/template/.claude/commands/brainstorm.md +33 -33
  6. package/template/.claude/commands/checkpoint.md +42 -42
  7. package/template/.claude/commands/codex.md +52 -52
  8. package/template/.claude/commands/collaborate.md +47 -47
  9. package/template/.claude/commands/context.md +77 -77
  10. package/template/.claude/commands/deploy.md +50 -50
  11. package/template/.claude/commands/fork.md +46 -46
  12. package/template/.claude/commands/gemini.md +43 -43
  13. package/template/.claude/commands/handoff.md +42 -42
  14. package/template/.claude/commands/implement.md +42 -42
  15. package/template/.claude/commands/init-project.md +25 -25
  16. package/template/.claude/commands/next.md +67 -67
  17. package/template/.claude/commands/planning.md +38 -38
  18. package/template/.claude/commands/qa.md +47 -47
  19. package/template/.claude/commands/refactor.md +50 -50
  20. package/template/.claude/commands/research.md +31 -31
  21. package/template/.claude/commands/restore.md +53 -53
  22. package/template/.claude/commands/run-stage.md +45 -45
  23. package/template/.claude/commands/stages.md +49 -49
  24. package/template/.claude/commands/status.md +41 -41
  25. package/template/.claude/commands/tasks.md +33 -33
  26. package/template/.claude/commands/test.md +45 -45
  27. package/template/.claude/commands/ui-ux.md +31 -31
  28. package/template/.claude/commands/validate.md +81 -81
  29. package/template/.claude/hooks/ai-selector.sh +39 -39
  30. package/template/.claude/hooks/auto-checkpoint.sh +30 -30
  31. package/template/.claude/hooks/output-validator.sh +45 -45
  32. package/template/.claude/hooks/post-stage.sh +28 -28
  33. package/template/.claude/hooks/pre-stage.sh +47 -47
  34. package/template/.claude/hooks/session-start.sh +27 -27
  35. package/template/.claude/hooks/statusline.sh +24 -24
  36. package/template/.claude/hooks/stop.sh +26 -26
  37. package/template/.claude/settings.json +32 -32
  38. package/template/.claude/skills/ai-collaboration/README.md +31 -31
  39. package/template/.claude/skills/ai-collaboration/debate.md +66 -66
  40. package/template/.claude/skills/ai-collaboration/parallel.md +34 -34
  41. package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +59 -63
  42. package/template/.claude/skills/auto-checkpoint/README.md +46 -46
  43. package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +68 -72
  44. package/template/.claude/skills/auto-checkpoint/rollback.md +95 -95
  45. package/template/.claude/skills/auto-checkpoint/trigger.md +37 -37
  46. package/template/.claude/skills/context-compression/README.md +69 -69
  47. package/template/.claude/skills/context-compression/analyze.md +74 -74
  48. package/template/.claude/skills/context-compression/compress.md +103 -103
  49. package/template/.claude/skills/context-compression/prompts/compression.md +78 -78
  50. package/template/.claude/skills/output-validator/README.md +33 -33
  51. package/template/.claude/skills/output-validator/prompts/CLAUDE.md +74 -78
  52. package/template/.claude/skills/output-validator/validate.md +76 -76
  53. package/template/.claude/skills/smart-handoff/README.md +35 -35
  54. package/template/.claude/skills/smart-handoff/extract.md +42 -42
  55. package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +52 -54
  56. package/template/.claude/skills/smart-handoff/summarize.md +55 -55
  57. package/template/.claude/skills/stage-transition/README.md +50 -50
  58. package/template/.claude/skills/stage-transition/handoff-gen.md +89 -89
  59. package/template/.claude/skills/stage-transition/prompts/transition.md +74 -74
  60. package/template/.claude/skills/stage-transition/validate.md +41 -41
  61. package/template/CLAUDE.md +334 -335
  62. package/template/config/ai_benchmarking.yaml +22 -22
  63. package/template/config/ai_collaboration.yaml +18 -18
  64. package/template/config/ai_logging.yaml +50 -50
  65. package/template/config/auto_checkpoint.yaml +32 -32
  66. package/template/config/context.yaml +20 -20
  67. package/template/config/git.yaml +51 -51
  68. package/template/config/handoff_intelligence.yaml +23 -23
  69. package/template/config/mcp_fallbacks.yaml +71 -71
  70. package/template/config/memory_integration.yaml +23 -23
  71. package/template/config/model_enforcement.yaml +53 -53
  72. package/template/config/models.yaml +24 -24
  73. package/template/config/output_validation.yaml +44 -44
  74. package/template/config/pipeline.yaml +25 -25
  75. package/template/config/pipeline_forking.yaml +40 -40
  76. package/template/config/qa_logging.yaml +67 -67
  77. package/template/config/smart_rollback.yaml +48 -48
  78. package/template/config/stage_personas.yaml +154 -154
  79. package/template/config/workflow.yaml +16 -16
  80. package/template/scripts/ai-benchmark.sh +41 -41
  81. package/template/scripts/codex-wrapper.sh +32 -32
  82. package/template/scripts/context-manager.sh +136 -136
  83. package/template/scripts/create-checkpoint.sh +34 -34
  84. package/template/scripts/gemini-wrapper.sh +31 -31
  85. package/template/scripts/init-project.sh +40 -40
  86. package/template/scripts/list-stages.sh +30 -30
  87. package/template/scripts/next-stage.sh +67 -67
  88. package/template/scripts/output-validate.sh +2 -2
  89. package/template/scripts/pipeline-fork.sh +68 -68
  90. package/template/scripts/pre-run-check.sh +84 -84
  91. package/template/scripts/restore-checkpoint.sh +50 -50
  92. package/template/scripts/run-stage.sh +44 -44
  93. package/template/scripts/show-status.sh +30 -30
  94. package/template/scripts/smart-handoff.sh +70 -70
  95. package/template/stages/01-brainstorm/CLAUDE.md +70 -74
  96. package/template/stages/01-brainstorm/README.md +54 -54
  97. package/template/stages/01-brainstorm/config.yaml +18 -18
  98. package/template/stages/01-brainstorm/prompts/collaboration.md +24 -24
  99. package/template/stages/01-brainstorm/prompts/ideation.md +41 -41
  100. package/template/stages/01-brainstorm/prompts/persona.md +50 -50
  101. package/template/stages/01-brainstorm/prompts/requirements.md +55 -55
  102. package/template/stages/01-brainstorm/prompts/validation.md +28 -28
  103. package/template/stages/01-brainstorm/templates/ideas.md +47 -47
  104. package/template/stages/01-brainstorm/templates/requirements_analysis.md +61 -61
  105. package/template/stages/02-research/CLAUDE.md +72 -76
  106. package/template/stages/02-research/config.yaml +12 -12
  107. package/template/stages/02-research/prompts/collaboration.md +29 -29
  108. package/template/stages/02-research/prompts/feasibility.md +38 -38
  109. package/template/stages/02-research/prompts/market_analysis.md +29 -29
  110. package/template/stages/02-research/prompts/tech_stack.md +34 -34
  111. package/template/stages/02-research/prompts/validation.md +29 -29
  112. package/template/stages/03-planning/CLAUDE.md +88 -92
  113. package/template/stages/03-planning/config.yaml +10 -10
  114. package/template/stages/03-planning/prompts/architecture.md +43 -43
  115. package/template/stages/03-planning/prompts/collaboration.md +34 -34
  116. package/template/stages/03-planning/prompts/validation.md +34 -34
  117. package/template/stages/04-ui-ux/CLAUDE.md +68 -72
  118. package/template/stages/04-ui-ux/config.yaml +5 -5
  119. package/template/stages/04-ui-ux/prompts/collaboration.md +35 -35
  120. package/template/stages/04-ui-ux/prompts/validation.md +30 -30
  121. package/template/stages/05-task-management/CLAUDE.md +81 -85
  122. package/template/stages/05-task-management/config.yaml +17 -17
  123. package/template/stages/05-task-management/prompts/collaboration.md +30 -30
  124. package/template/stages/05-task-management/prompts/validation.md +33 -33
  125. package/template/stages/05-task-management/templates/notion_integration.md +70 -70
  126. package/template/stages/05-task-management/templates/parallel_groups.yaml +64 -64
  127. package/template/stages/05-task-management/templates/task_schema.yaml +33 -33
  128. package/template/stages/06-implementation/CLAUDE.md +117 -121
  129. package/template/stages/06-implementation/config.yaml +10 -10
  130. package/template/stages/06-implementation/prompts/collaboration.md +29 -29
  131. package/template/stages/06-implementation/prompts/validation.md +36 -36
  132. package/template/stages/07-refactoring/CLAUDE.md +120 -124
  133. package/template/stages/07-refactoring/config.yaml +11 -11
  134. package/template/stages/07-refactoring/prompts/collaboration.md +36 -36
  135. package/template/stages/07-refactoring/prompts/validation.md +40 -40
  136. package/template/stages/08-qa/CLAUDE.md +80 -84
  137. package/template/stages/08-qa/config.yaml +7 -7
  138. package/template/stages/08-qa/prompts/collaboration.md +34 -34
  139. package/template/stages/08-qa/prompts/validation.md +41 -41
  140. package/template/stages/09-testing/CLAUDE.md +86 -90
  141. package/template/stages/09-testing/config.yaml +10 -10
  142. package/template/stages/09-testing/prompts/collaboration.md +38 -38
  143. package/template/stages/09-testing/prompts/validation.md +41 -41
  144. package/template/stages/10-deployment/CLAUDE.md +86 -90
  145. package/template/stages/10-deployment/config.yaml +11 -11
  146. package/template/stages/10-deployment/prompts/collaboration.md +37 -37
  147. package/template/stages/10-deployment/prompts/validation.md +54 -54
  148. package/template/stages/10-deployment/templates/github-actions-cd.yaml +1 -1
@@ -1,58 +1,58 @@
1
1
  # Market Analysis Prompt
2
2
 
3
- ## 사용 모델
4
- Claude (MCP 서버 연동)
3
+ ## Model
4
+ Claude (with MCP server integration)
5
5
 
6
- ## 프롬프트
6
+ ## Prompt
7
7
 
8
8
  ```
9
- 당신은 시장 분석 전문가입니다.
9
+ You are a market analysis expert.
10
10
 
11
- 다음 프로젝트의 시장 분석을 수행해주세요:
11
+ Please perform a market analysis for the following project:
12
12
 
13
13
  ---
14
- ## 프로젝트 개요
14
+ ## Project Overview
15
15
  {{PROJECT_OVERVIEW}}
16
16
 
17
- ## 타겟 시장
17
+ ## Target Market
18
18
  {{TARGET_MARKET}}
19
19
  ---
20
20
 
21
- ## 분석 항목
21
+ ## Analysis Items
22
22
 
23
- ### 1. 시장 규모
23
+ ### 1. Market Size
24
24
  - TAM (Total Addressable Market)
25
25
  - SAM (Serviceable Addressable Market)
26
26
  - SOM (Serviceable Obtainable Market)
27
27
 
28
- ### 2. 경쟁사 분석
29
- 최소 3 경쟁사에 대해:
28
+ ### 2. Competitor Analysis
29
+ For at least 3 competitors:
30
30
 
31
- | 경쟁사 | 강점 | 약점 | 가격 | 타겟 | 차별점 |
32
- |--------|------|------|------|------|--------|
31
+ | Competitor | Strengths | Weaknesses | Pricing | Target | Differentiation |
32
+ |------------|-----------|------------|---------|--------|-----------------|
33
33
 
34
- ### 3. 시장 트렌드
35
- - 성장 트렌드
36
- - 기술 트렌드
37
- - 사용자 행동 변화
34
+ ### 3. Market Trends
35
+ - Growth trends
36
+ - Technology trends
37
+ - User behavior changes
38
38
 
39
- ### 4. 진입 장벽
40
- - 기술적 장벽
41
- - 자본 장벽
42
- - 네트워크 효과
43
- - 규제 장벽
39
+ ### 4. Entry Barriers
40
+ - Technical barriers
41
+ - Capital barriers
42
+ - Network effects
43
+ - Regulatory barriers
44
44
 
45
- ### 5. 기회와 위협 (SWOT 일부)
45
+ ### 5. Opportunities and Threats (partial SWOT)
46
46
  - Opportunities
47
47
  - Threats
48
48
 
49
- ## MCP 활용
50
- - firecrawl: 경쟁사 웹사이트 크롤링
51
- - exa: 시장 리포트 뉴스 검색
49
+ ## MCP Usage
50
+ - firecrawl: Competitor website crawling
51
+ - exa: Market report and news search
52
52
 
53
- ## 출력 형식
54
- 구조화된 시장 분석 보고서
53
+ ## Output Format
54
+ Structured market analysis report
55
55
  ```
56
56
 
57
- ## 기대 출력
57
+ ## Expected Output
58
58
  `outputs/market_analysis.md`
@@ -1,60 +1,60 @@
1
1
  # Tech Stack Research Prompt
2
2
 
3
- ## 사용 모델
4
- Claude (MCP 서버 연동)
3
+ ## Model
4
+ Claude (with MCP server integration)
5
5
 
6
- ## 프롬프트
6
+ ## Prompt
7
7
 
8
8
  ```
9
- 당신은 시니어 솔루션 아키텍트입니다.
9
+ You are a senior solutions architect.
10
10
 
11
- 다음 요구사항을 바탕으로 최적의 기술 스택을 조사해주세요:
11
+ Please research the optimal technology stack based on the following requirements:
12
12
 
13
13
  ---
14
- ## 요구사항
14
+ ## Requirements
15
15
  {{REQUIREMENTS}}
16
16
 
17
- ## MVP 기능
17
+ ## MVP Features
18
18
  {{MVP_FEATURES}}
19
19
  ---
20
20
 
21
- ## 조사 항목
21
+ ## Research Items
22
22
 
23
- ### 1. 프론트엔드
24
- 옵션에 대해:
25
- - 프레임워크/라이브러리 이름
26
- - 장점 / 단점
27
- - 학습 곡선
28
- - 커뮤니티/생태계
29
- - 성능 특성
30
- - 권장 사용 사례
23
+ ### 1. Frontend
24
+ For each option:
25
+ - Framework/library name
26
+ - Pros / Cons
27
+ - Learning curve
28
+ - Community/ecosystem
29
+ - Performance characteristics
30
+ - Recommended use cases
31
31
 
32
- 비교 대상: React, Vue, Svelte, Next.js, Nuxt
32
+ Comparison targets: React, Vue, Svelte, Next.js, Nuxt, etc.
33
33
 
34
- ### 2. 백엔드
35
- 비교 대상: Node.js, Python, Go, Rust
36
- 각각의 프레임워크 포함 (Express, FastAPI, Gin )
34
+ ### 2. Backend
35
+ Comparison targets: Node.js, Python, Go, Rust, etc.
36
+ Including respective frameworks (Express, FastAPI, Gin, etc.)
37
37
 
38
- ### 3. 데이터베이스
39
- - 관계형: PostgreSQL, MySQL
38
+ ### 3. Database
39
+ - Relational: PostgreSQL, MySQL
40
40
  - NoSQL: MongoDB, Redis
41
41
  - NewSQL: CockroachDB, PlanetScale
42
42
 
43
- ### 4. 인프라
44
- - 클라우드: AWS, GCP, Azure, Vercel, Railway
45
- - 컨테이너: Docker, Kubernetes
46
- - 서버리스: Lambda, Cloud Functions
43
+ ### 4. Infrastructure
44
+ - Cloud: AWS, GCP, Azure, Vercel, Railway
45
+ - Containers: Docker, Kubernetes
46
+ - Serverless: Lambda, Cloud Functions
47
47
 
48
- ### 5. 개발 도구
49
- - 버전 관리, CI/CD, 모니터링, 로깅
48
+ ### 5. Development Tools
49
+ - Version control, CI/CD, monitoring, logging
50
50
 
51
- ## MCP 활용
52
- - context7 기술의 공식 문서 확인
53
- - exa 최신 비교 분석 기사 검색
51
+ ## MCP Usage
52
+ - context7: Check official documentation for each technology
53
+ - exa: Search for latest comparison analysis articles
54
54
 
55
- ## 출력 형식
56
- 기술 스택 비교표와 최종 권장안을 마크다운으로 작성
55
+ ## Output Format
56
+ Write technology stack comparison table and final recommendations in markdown
57
57
  ```
58
58
 
59
- ## 기대 출력
59
+ ## Expected Output
60
60
  `outputs/tech_research.md`
@@ -1,51 +1,51 @@
1
- # 산출물 검증 프롬프트 - Research
1
+ # Output Validation Prompt - Research
2
2
 
3
- ## 검증 대상
3
+ ## Validation Targets
4
4
 
5
- | 산출물 | 필수 조건 | 검증 방법 |
6
- |--------|----------|----------|
7
- | `tech_research.md` | 기술 스택 비교표 | 구조 확인 |
8
- | `market_analysis.md` | 경쟁사 3개+ 분석 | 수량 확인 |
9
- | `feasibility_report.md` | 리스크 섹션 포함 | 구조 확인 |
10
- | `HANDOFF.md` | 핵심 결정사항 | 항목 확인 |
5
+ | Output | Required Conditions | Validation Method |
6
+ |--------|---------------------|-------------------|
7
+ | `tech_research.md` | Tech stack comparison table | Structure verification |
8
+ | `market_analysis.md` | 3+ competitor analysis | Count verification |
9
+ | `feasibility_report.md` | Risk section included | Structure verification |
10
+ | `HANDOFF.md` | Key decisions | Item verification |
11
11
 
12
- ## 검증 명령
12
+ ## Validation Command
13
13
 
14
14
  ```bash
15
15
  /validate --stage 02-research
16
16
  ```
17
17
 
18
- ## 품질 기준
18
+ ## Quality Criteria
19
19
 
20
20
  ### tech_research.md
21
- - [ ] 기술 스택 비교표 포함
22
- - [ ] 기술의 장단점 분석
23
- - [ ] 학습 곡선 평가
24
- - [ ] 커뮤니티/생태계 평가
21
+ - [ ] Tech stack comparison table included
22
+ - [ ] Pros and cons analysis for each technology
23
+ - [ ] Learning curve evaluation
24
+ - [ ] Community/ecosystem evaluation
25
25
 
26
26
  ### market_analysis.md
27
- - [ ] 경쟁사 3 이상 분석
28
- - [ ] 시장 규모 트렌드
29
- - [ ] 진입 장벽 분석
30
- - [ ] 차별화 포인트
27
+ - [ ] 3+ competitor analysis
28
+ - [ ] Market size and trends
29
+ - [ ] Entry barrier analysis
30
+ - [ ] Differentiation points
31
31
 
32
32
  ### feasibility_report.md
33
- - [ ] 기술적 실현 가능성
34
- - [ ] 시간/리소스 요구사항
35
- - [ ] 리스크 평가 대응 방안
36
- - [ ] Go/No-Go 권고
33
+ - [ ] Technical feasibility
34
+ - [ ] Time/resource requirements
35
+ - [ ] Risk assessment and mitigation
36
+ - [ ] Go/No-Go recommendation
37
37
 
38
38
  ### HANDOFF.md
39
- - [ ] 완료된 리서치 체크리스트
40
- - [ ] 핵심 발견 사항
41
- - [ ] 권장 기술 스택
39
+ - [ ] Completed research checklist
40
+ - [ ] Key findings
41
+ - [ ] Recommended tech stack
42
42
 
43
- ## 자동 검증 스크립트
43
+ ## Automated Validation Script
44
44
 
45
45
  ```bash
46
- # 경쟁사 분석 확인
46
+ # Check competitor analysis count
47
47
  grep -c "^### " outputs/market_analysis.md
48
48
 
49
- # 리스크 섹션 확인
50
- grep -E "^## 리스크|Risk" outputs/feasibility_report.md
49
+ # Check risk section
50
+ grep -E "^## Risk|Risk" outputs/feasibility_report.md
51
51
  ```
@@ -1,98 +1,94 @@
1
1
  # Stage 03: Planning
2
2
 
3
- 시스템 아키텍처 기술 스택 결정 단계
4
-
5
- ## 🎭 페르소나: Strategic Architect
6
-
7
- > 당신은 Strategic Architect입니다.
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.6 (균형 잡힌 창의성)
30
- - **구조화 강조**: High
31
-
32
- ## 실행 모델
33
- - **Primary**: Gemini (아키텍처 설계, 다이어그램)
34
- - **Mode**: Plan Mode - 구조화된 설계
35
-
36
- ## 목표
37
- 1. 시스템 아키텍처 설계
38
- 2. 기술 스택 최종 결정
39
- 3. 프로젝트 계획 수립
40
- 4. 마일스톤 정의
41
-
42
- ## 입력 파일
3
+ System architecture and technology stack decision stage
4
+
5
+ ## Persona: Strategic Architect
6
+
7
+ > You are a Strategic Architect.
8
+ > Design the big picture and establish systematic plans.
9
+ > Identify risks in advance and prepare alternatives.
10
+
11
+ ### Characteristics
12
+ - Strategic thinking
13
+ - Structuring ability
14
+ - Risk assessment
15
+ - Priority judgment
16
+
17
+ ### Recommended Actions
18
+ - Design overall picture
19
+ - Define milestones
20
+ - Identify risks
21
+ - Propose alternative paths
22
+
23
+ ### Actions to Avoid
24
+ - Focus on detailed implementation
25
+ - Consider only short-term perspective
26
+ - Present single path only
27
+
28
+ ### AI Settings
29
+ - **Temperature**: 0.6 (balanced creativity)
30
+ - **Structuring emphasis**: High
31
+
32
+ ## Execution Model
33
+ - **Primary**: Gemini (architecture design, diagrams)
34
+ - **Mode**: Plan Mode - structured design
35
+
36
+ ## Goals
37
+ 1. System architecture design
38
+ 2. Final technology stack decision
39
+ 3. Project plan establishment
40
+ 4. Milestone definition
41
+
42
+ ## Input Files
43
43
  - `../02-research/outputs/tech_research.md`
44
44
  - `../02-research/outputs/feasibility_report.md`
45
45
  - `../02-research/HANDOFF.md`
46
46
 
47
- ## 출력 파일
48
- - `outputs/architecture.md` - 시스템 아키텍처
49
- - `outputs/tech_stack.md` - 기술 스택 결정
50
- - `outputs/project_plan.md` - 프로젝트 계획
51
- - `outputs/implementation.yaml` - **구현 규칙 설정** (템플릿: `config/implementation.yaml.template`)
52
- - `HANDOFF.md` - 다음 스테이지 인계 문서
53
-
54
- ### ⚠️ implementation.yaml 필수 작성
55
- `config/implementation.yaml.template`를 기반으로 프로젝트 구현 규칙을 정의하세요:
56
- - 컴포넌트 타입 (functional/class)
57
- - 스타일링 방식 (css-modules/tailwind/styled-components)
58
- - 상태 관리 (context/redux/zustand)
59
- - 네이밍 규칙 (PascalCase/kebab-case)
60
- - 폴더 구조 (feature-based/type-based)
61
-
62
- ## 워크플로우
63
-
64
- ### 1. 아키텍처 설계
65
- - 시스템 컴포넌트 정의
66
- - 데이터 흐름 설계
67
- - API 설계 개요
68
- - 인프라 구성
69
-
70
- ### 2. 기술 스택 확정
71
- - Research 단계 권장 스택 검토
72
- - 최종 선택 근거 문서화
73
- - 버전 의존성 정의
74
-
75
- ### 3. 프로젝트 계획
76
- - 스프린트 계획
77
- - 마일스톤 정의
78
- - 리소스 할당
79
-
80
- ## 아키텍처 다이어그램 포함 항목
81
- - 시스템 컨텍스트 다이어그램
82
- - 컨테이너 다이어그램
83
- - 컴포넌트 다이어그램
84
- - 시퀀스 다이어그램 (핵심 플로우)
85
-
86
- ## 완료 조건
87
- - [ ] 시스템 아키텍처 문서 작성
88
- - [ ] 기술 스택 최종 결정
89
- - [ ] 프로젝트 계획 수립
90
- - [ ] 마일스톤 3 이상 정의
91
- - [ ] HANDOFF.md 생성
92
-
93
- ## 다음 스테이지
94
- → **04-ui-ux**: 사용자 인터페이스 경험 설계
95
-
96
-
97
-
98
-
47
+ ## Output Files
48
+ - `outputs/architecture.md` - System architecture
49
+ - `outputs/tech_stack.md` - Technology stack decision
50
+ - `outputs/project_plan.md` - Project plan
51
+ - `outputs/implementation.yaml` - **Implementation rules** (template: `config/implementation.yaml.template`)
52
+ - `HANDOFF.md` - Handoff document for next stage
53
+
54
+ ### implementation.yaml Required
55
+ Based on `config/implementation.yaml.template`, define project implementation rules:
56
+ - Component type (functional/class)
57
+ - Styling approach (css-modules/tailwind/styled-components)
58
+ - State management (context/redux/zustand)
59
+ - Naming conventions (PascalCase/kebab-case)
60
+ - Folder structure (feature-based/type-based)
61
+
62
+ ## Workflow
63
+
64
+ ### 1. Architecture Design
65
+ - Define system components
66
+ - Design data flow
67
+ - API design overview
68
+ - Infrastructure configuration
69
+
70
+ ### 2. Technology Stack Finalization
71
+ - Review Research stage recommended stack
72
+ - Document final selection and rationale
73
+ - Define versions and dependencies
74
+
75
+ ### 3. Project Planning
76
+ - Sprint planning
77
+ - Milestone definition
78
+ - Resource allocation
79
+
80
+ ## Architecture Diagram Inclusions
81
+ - System context diagram
82
+ - Container diagram
83
+ - Component diagram
84
+ - Sequence diagram (core flows)
85
+
86
+ ## Completion Criteria
87
+ - [ ] Write system architecture document
88
+ - [ ] Final technology stack decision
89
+ - [ ] Establish project plan
90
+ - [ ] Define 3+ milestones
91
+ - [ ] Generate HANDOFF.md
92
+
93
+ ## Next Stage
94
+ → **04-ui-ux**: User interface and experience design
@@ -3,7 +3,7 @@
3
3
  stage:
4
4
  id: "03-planning"
5
5
  name: "Planning"
6
- description: "시스템 아키텍처 기술 스택 결정"
6
+ description: "System architecture and technology stack decision"
7
7
 
8
8
  models:
9
9
  primary: "gemini"
@@ -27,13 +27,13 @@ inputs:
27
27
  outputs:
28
28
  required:
29
29
  - name: "architecture.md"
30
- description: "시스템 아키텍처"
30
+ description: "System architecture"
31
31
  - name: "tech_stack.md"
32
- description: "기술 스택 결정"
32
+ description: "Technology stack decision"
33
33
  - name: "project_plan.md"
34
- description: "프로젝트 계획"
34
+ description: "Project plan"
35
35
  - name: "implementation.yaml"
36
- description: "구현 규칙 설정 (Issue #10)"
36
+ description: "Implementation rules configuration (Issue #10)"
37
37
  template: "../../config/implementation.yaml.template"
38
38
  - name: "HANDOFF.md"
39
39
 
@@ -50,11 +50,11 @@ prompts:
50
50
 
51
51
  completion:
52
52
  checklist:
53
- - "시스템 아키텍처 문서 작성"
54
- - "기술 스택 최종 결정"
55
- - "프로젝트 계획 수립"
56
- - "마일스톤 3 이상 정의"
57
- - "HANDOFF.md 생성"
53
+ - "Write system architecture document"
54
+ - "Final technology stack decision"
55
+ - "Establish project plan"
56
+ - "Define 3+ milestones"
57
+ - "Generate HANDOFF.md"
58
58
 
59
59
  transition:
60
60
  next_stage: "04-ui-ux"
@@ -1,62 +1,62 @@
1
1
  # Architecture Design Prompt
2
2
 
3
- ## 사용 모델
3
+ ## Model
4
4
  Gemini
5
5
 
6
- ## 프롬프트
6
+ ## Prompt
7
7
 
8
8
  ```
9
- 당신은 시니어 소프트웨어 아키텍트입니다.
9
+ You are a senior software architect.
10
10
 
11
- 다음 요구사항과 기술 리서치를 바탕으로 시스템 아키텍처를 설계해주세요:
11
+ Please design a system architecture based on the following requirements and technical research:
12
12
 
13
13
  ---
14
- ## 요구사항
14
+ ## Requirements
15
15
  {{REQUIREMENTS}}
16
16
 
17
- ## 기술 리서치 결과
17
+ ## Technical Research Results
18
18
  {{TECH_RESEARCH}}
19
19
 
20
- ## 실현 가능성 평가
20
+ ## Feasibility Assessment
21
21
  {{FEASIBILITY}}
22
22
  ---
23
23
 
24
- ## 설계 항목
25
-
26
- ### 1. 시스템 개요
27
- - 시스템 목적
28
- - 주요 기능
29
- - 비기능적 요구사항 대응
30
-
31
- ### 2. 아키텍처 스타일
32
- - 선택: Monolithic / Microservices / Serverless / Hybrid
33
- - 선택 근거
34
-
35
- ### 3. 컴포넌트 설계
36
- 컴포넌트에 대해:
37
- - 이름
38
- - 책임
39
- - 인터페이스
40
- - 의존성
41
-
42
- ### 4. 데이터 아키텍처
43
- - 데이터 모델 개요
44
- - 데이터 흐름
45
- - 저장소 전략
46
-
47
- ### 5. 통합 포인트
48
- - 외부 API
49
- - 서드파티 서비스
50
- - 인증/인가
51
-
52
- ### 6. 다이어그램 (Mermaid)
53
- - 시스템 컨텍스트
54
- - 컨테이너 다이어그램
55
- - 컴포넌트 다이어그램
56
-
57
- ## 출력 형식
58
- Mermaid 다이어그램을 포함한 마크다운 문서
24
+ ## Design Items
25
+
26
+ ### 1. System Overview
27
+ - System purpose
28
+ - Key features
29
+ - Non-functional requirements response
30
+
31
+ ### 2. Architecture Style
32
+ - Selection: Monolithic / Microservices / Serverless / Hybrid
33
+ - Selection rationale
34
+
35
+ ### 3. Component Design
36
+ For each component:
37
+ - Name
38
+ - Responsibility
39
+ - Interface
40
+ - Dependencies
41
+
42
+ ### 4. Data Architecture
43
+ - Data model overview
44
+ - Data flow
45
+ - Storage strategy
46
+
47
+ ### 5. Integration Points
48
+ - External APIs
49
+ - Third-party services
50
+ - Authentication/Authorization
51
+
52
+ ### 6. Diagrams (Mermaid)
53
+ - System context
54
+ - Container diagram
55
+ - Component diagram
56
+
57
+ ## Output Format
58
+ Markdown document including Mermaid diagrams
59
59
  ```
60
60
 
61
- ## 기대 출력
61
+ ## Expected Output
62
62
  `outputs/architecture.md`