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,98 @@
|
|
|
1
|
+
# Stage 03: Planning
|
|
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
|
+
## 입력 파일
|
|
43
|
+
- `../02-research/outputs/tech_research.md`
|
|
44
|
+
- `../02-research/outputs/feasibility_report.md`
|
|
45
|
+
- `../02-research/HANDOFF.md`
|
|
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
|
+
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
# Stage Handoff: 03-planning → 04-ui-ux
|
|
2
|
+
|
|
3
|
+
**생성일**: {{TIMESTAMP}}
|
|
4
|
+
**생성자**: Gemini
|
|
5
|
+
**소요 시간**: {{DURATION}}
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 완료된 작업
|
|
10
|
+
|
|
11
|
+
- [ ] 시스템 아키텍처 설계
|
|
12
|
+
- [ ] 기술 스택 최종 결정
|
|
13
|
+
- [ ] 프로젝트 계획 수립
|
|
14
|
+
- [ ] 마일스톤 정의
|
|
15
|
+
- [ ] HANDOFF.md 생성
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 다음 에이전트를 위한 컨텍스트
|
|
20
|
+
|
|
21
|
+
### 아키텍처 요약
|
|
22
|
+
- **스타일**: {{ARCH_STYLE}}
|
|
23
|
+
- **주요 컴포넌트**: {{COMPONENTS}}
|
|
24
|
+
|
|
25
|
+
### 확정 기술 스택
|
|
26
|
+
|
|
27
|
+
| 영역 | 기술 | 버전 |
|
|
28
|
+
|------|------|------|
|
|
29
|
+
| Frontend | {{FRONTEND}} | |
|
|
30
|
+
| Backend | {{BACKEND}} | |
|
|
31
|
+
| Database | {{DATABASE}} | |
|
|
32
|
+
| Auth | {{AUTH}} | |
|
|
33
|
+
| Hosting | {{HOSTING}} | |
|
|
34
|
+
|
|
35
|
+
### 마일스톤
|
|
36
|
+
|
|
37
|
+
| # | 이름 | 목표 | 산출물 |
|
|
38
|
+
|---|------|------|--------|
|
|
39
|
+
| M1 | {{M1_NAME}} | {{M1_GOAL}} | |
|
|
40
|
+
| M2 | {{M2_NAME}} | {{M2_GOAL}} | |
|
|
41
|
+
| M3 | {{M3_NAME}} | {{M3_GOAL}} | |
|
|
42
|
+
|
|
43
|
+
### UI/UX 고려사항
|
|
44
|
+
- {{UI_CONSIDERATION_1}}
|
|
45
|
+
- {{UI_CONSIDERATION_2}}
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## 생성된 산출물
|
|
50
|
+
|
|
51
|
+
| 파일 | 설명 |
|
|
52
|
+
|------|------|
|
|
53
|
+
| architecture.md | 시스템 아키텍처 |
|
|
54
|
+
| tech_stack.md | 기술 스택 결정 |
|
|
55
|
+
| project_plan.md | 프로젝트 계획 |
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 04-ui-ux 스테이지 가이드
|
|
60
|
+
|
|
61
|
+
### 즉시 실행할 작업
|
|
62
|
+
1. 아키텍처 기반 화면 구조 설계
|
|
63
|
+
2. 사용자 플로우 정의
|
|
64
|
+
3. 디자인 시스템 기초 수립
|
|
65
|
+
|
|
66
|
+
### 참조 문서
|
|
67
|
+
- `architecture.md` - 컴포넌트 구조
|
|
68
|
+
- `../01-brainstorm/outputs/personas.md` - 사용자 페르소나
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
## AI 호출 기록
|
|
73
|
+
|
|
74
|
+
| AI | 호출 시간 | 프롬프트 | 결과 | 상태 |
|
|
75
|
+
|----|----------|---------|------|------|
|
|
76
|
+
| {{AI_1}} | {{TIME_1}} | {{PROMPT_1}} | {{OUTPUT_1}} | {{STATUS_1}} |
|
|
77
|
+
| {{AI_2}} | {{TIME_2}} | {{PROMPT_2}} | {{OUTPUT_2}} | {{STATUS_2}} |
|
|
78
|
+
|
|
79
|
+
> 설정: `config/ai_logging.yaml`
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## 메타데이터
|
|
84
|
+
|
|
85
|
+
```yaml
|
|
86
|
+
stage: "03-planning"
|
|
87
|
+
status: "completed"
|
|
88
|
+
next_stage: "04-ui-ux"
|
|
89
|
+
models_used:
|
|
90
|
+
- gemini
|
|
91
|
+
```
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Stage 03: Planning Configuration
|
|
2
|
+
|
|
3
|
+
stage:
|
|
4
|
+
id: "03-planning"
|
|
5
|
+
name: "Planning"
|
|
6
|
+
description: "시스템 아키텍처 및 기술 스택 결정"
|
|
7
|
+
|
|
8
|
+
models:
|
|
9
|
+
primary: "gemini"
|
|
10
|
+
secondary: null
|
|
11
|
+
collaboration: null
|
|
12
|
+
|
|
13
|
+
execution:
|
|
14
|
+
mode: "plan"
|
|
15
|
+
container: false
|
|
16
|
+
sandbox: false
|
|
17
|
+
timeout: 3600
|
|
18
|
+
|
|
19
|
+
inputs:
|
|
20
|
+
required:
|
|
21
|
+
- name: "../02-research/outputs/tech_research.md"
|
|
22
|
+
- name: "../02-research/outputs/feasibility_report.md"
|
|
23
|
+
- name: "../02-research/HANDOFF.md"
|
|
24
|
+
optional:
|
|
25
|
+
- name: "../01-brainstorm/outputs/requirements_analysis.md"
|
|
26
|
+
|
|
27
|
+
outputs:
|
|
28
|
+
required:
|
|
29
|
+
- name: "architecture.md"
|
|
30
|
+
description: "시스템 아키텍처"
|
|
31
|
+
- name: "tech_stack.md"
|
|
32
|
+
description: "기술 스택 결정"
|
|
33
|
+
- name: "project_plan.md"
|
|
34
|
+
description: "프로젝트 계획"
|
|
35
|
+
- name: "implementation.yaml"
|
|
36
|
+
description: "구현 규칙 설정 (Issue #10)"
|
|
37
|
+
template: "../../config/implementation.yaml.template"
|
|
38
|
+
- name: "HANDOFF.md"
|
|
39
|
+
|
|
40
|
+
prompts:
|
|
41
|
+
- name: "architecture"
|
|
42
|
+
file: "prompts/architecture.md"
|
|
43
|
+
model: "gemini"
|
|
44
|
+
- name: "tech_stack_decision"
|
|
45
|
+
file: "prompts/tech_stack_decision.md"
|
|
46
|
+
model: "gemini"
|
|
47
|
+
- name: "project_plan"
|
|
48
|
+
file: "prompts/project_plan.md"
|
|
49
|
+
model: "gemini"
|
|
50
|
+
|
|
51
|
+
completion:
|
|
52
|
+
checklist:
|
|
53
|
+
- "시스템 아키텍처 문서 작성"
|
|
54
|
+
- "기술 스택 최종 결정"
|
|
55
|
+
- "프로젝트 계획 수립"
|
|
56
|
+
- "마일스톤 3개 이상 정의"
|
|
57
|
+
- "HANDOFF.md 생성"
|
|
58
|
+
|
|
59
|
+
transition:
|
|
60
|
+
next_stage: "04-ui-ux"
|
|
61
|
+
prerequisites:
|
|
62
|
+
- "02-research"
|
|
63
|
+
handoff_required: true
|
|
64
|
+
checkpoint_required: false
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Architecture Design Prompt
|
|
2
|
+
|
|
3
|
+
## 사용 모델
|
|
4
|
+
Gemini
|
|
5
|
+
|
|
6
|
+
## 프롬프트
|
|
7
|
+
|
|
8
|
+
```
|
|
9
|
+
당신은 시니어 소프트웨어 아키텍트입니다.
|
|
10
|
+
|
|
11
|
+
다음 요구사항과 기술 리서치를 바탕으로 시스템 아키텍처를 설계해주세요:
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
## 요구사항
|
|
15
|
+
{{REQUIREMENTS}}
|
|
16
|
+
|
|
17
|
+
## 기술 리서치 결과
|
|
18
|
+
{{TECH_RESEARCH}}
|
|
19
|
+
|
|
20
|
+
## 실현 가능성 평가
|
|
21
|
+
{{FEASIBILITY}}
|
|
22
|
+
---
|
|
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 다이어그램을 포함한 마크다운 문서
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## 기대 출력
|
|
62
|
+
`outputs/architecture.md`
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# AI 협업 프롬프트 - Planning
|
|
2
|
+
|
|
3
|
+
## 협업 모드: Debate
|
|
4
|
+
|
|
5
|
+
이 스테이지에서는 **토론 모드**를 사용하여 최적의 아키텍처와 기술 스택을 결정합니다.
|
|
6
|
+
|
|
7
|
+
### 참여 모델
|
|
8
|
+
- **Gemini**: 아키텍처 설계, 다이어그램 생성
|
|
9
|
+
- **Claude**: 기술적 검증, 실현 가능성 평가
|
|
10
|
+
|
|
11
|
+
### 협업 프롬프트
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
/collaborate --mode debate --topic "시스템 아키텍처 결정" --rounds 3
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### 토론 주제
|
|
18
|
+
|
|
19
|
+
1. **아키텍처 패턴**: Monolith vs Microservices vs Modular Monolith
|
|
20
|
+
2. **기술 스택**: 프레임워크 및 라이브러리 선택
|
|
21
|
+
3. **데이터베이스**: SQL vs NoSQL vs Hybrid
|
|
22
|
+
|
|
23
|
+
### 토론 형식
|
|
24
|
+
|
|
25
|
+
| 라운드 | Gemini | Claude |
|
|
26
|
+
|--------|--------|--------|
|
|
27
|
+
| 1 | 제안 | 반론/대안 |
|
|
28
|
+
| 2 | 보완 | 검증/평가 |
|
|
29
|
+
| 3 | 최종안 | 합의/확인 |
|
|
30
|
+
|
|
31
|
+
### 파이프라인 분기 트리거
|
|
32
|
+
|
|
33
|
+
아키텍처 대안이 2개 이상 유효할 경우:
|
|
34
|
+
```
|
|
35
|
+
/fork create --reason "아키텍처 대안 탐색" --direction "monolith"
|
|
36
|
+
/fork create --reason "아키텍처 대안 탐색" --direction "microservices"
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### 출력 형식
|
|
40
|
+
|
|
41
|
+
```markdown
|
|
42
|
+
## AI 토론 결과
|
|
43
|
+
|
|
44
|
+
### 주제: [아키텍처 결정]
|
|
45
|
+
|
|
46
|
+
### 라운드 1
|
|
47
|
+
- **Gemini**: [제안]
|
|
48
|
+
- **Claude**: [반론/대안]
|
|
49
|
+
|
|
50
|
+
### 라운드 2
|
|
51
|
+
- **Gemini**: [보완]
|
|
52
|
+
- **Claude**: [검증]
|
|
53
|
+
|
|
54
|
+
### 최종 결론
|
|
55
|
+
- [합의된 아키텍처]
|
|
56
|
+
- [근거]
|
|
57
|
+
```
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# 산출물 검증 프롬프트 - Planning
|
|
2
|
+
|
|
3
|
+
## 검증 대상
|
|
4
|
+
|
|
5
|
+
| 산출물 | 필수 조건 | 검증 방법 |
|
|
6
|
+
|--------|----------|----------|
|
|
7
|
+
| `architecture.md` | 다이어그램 4종 | 구조 확인 |
|
|
8
|
+
| `tech_stack.md` | 버전/의존성 명시 | 항목 확인 |
|
|
9
|
+
| `project_plan.md` | 마일스톤 3개+ | 수량 확인 |
|
|
10
|
+
| `implementation.yaml` | 구현 규칙 정의 | 스키마 검증 |
|
|
11
|
+
| `HANDOFF.md` | 다음 단계 지침 | 항목 확인 |
|
|
12
|
+
|
|
13
|
+
## 검증 명령
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
/validate --stage 03-planning
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## 품질 기준
|
|
20
|
+
|
|
21
|
+
### architecture.md
|
|
22
|
+
- [ ] 시스템 컨텍스트 다이어그램
|
|
23
|
+
- [ ] 컨테이너 다이어그램
|
|
24
|
+
- [ ] 컴포넌트 다이어그램
|
|
25
|
+
- [ ] 시퀀스 다이어그램 (핵심 플로우)
|
|
26
|
+
- [ ] 데이터 흐름 설명
|
|
27
|
+
|
|
28
|
+
### tech_stack.md
|
|
29
|
+
- [ ] 프론트엔드 스택 명시
|
|
30
|
+
- [ ] 백엔드 스택 명시
|
|
31
|
+
- [ ] 데이터베이스 선택
|
|
32
|
+
- [ ] 버전 및 의존성 정의
|
|
33
|
+
- [ ] 선택 근거 문서화
|
|
34
|
+
|
|
35
|
+
### project_plan.md
|
|
36
|
+
- [ ] 마일스톤 3개 이상
|
|
37
|
+
- [ ] 각 마일스톤별 산출물
|
|
38
|
+
- [ ] 스프린트 계획
|
|
39
|
+
- [ ] 리소스 할당
|
|
40
|
+
|
|
41
|
+
### implementation.yaml
|
|
42
|
+
- [ ] 컴포넌트 타입 정의
|
|
43
|
+
- [ ] 스타일링 방식 정의
|
|
44
|
+
- [ ] 상태 관리 패턴 정의
|
|
45
|
+
- [ ] 네이밍 규칙 정의
|
|
46
|
+
- [ ] 폴더 구조 정의
|
|
47
|
+
|
|
48
|
+
## 자동 검증 스크립트
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
# 다이어그램 수 확인 (mermaid 블록)
|
|
52
|
+
grep -c "```mermaid" outputs/architecture.md
|
|
53
|
+
|
|
54
|
+
# implementation.yaml 유효성
|
|
55
|
+
yq eval '.' outputs/implementation.yaml
|
|
56
|
+
|
|
57
|
+
# 마일스톤 수 확인
|
|
58
|
+
grep -c "^## Milestone" outputs/project_plan.md
|
|
59
|
+
```
|
|
File without changes
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# Stage 04: UI/UX Planning
|
|
2
|
+
|
|
3
|
+
사용자 인터페이스 및 경험 설계 단계
|
|
4
|
+
|
|
5
|
+
## 🎭 페르소나: User Experience Designer
|
|
6
|
+
|
|
7
|
+
> 당신은 User Experience Designer입니다.
|
|
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.7 (창의적 설계)
|
|
30
|
+
- **사용자 집중도**: High
|
|
31
|
+
|
|
32
|
+
## 실행 모델
|
|
33
|
+
- **Primary**: Gemini (창의적 UI 설계)
|
|
34
|
+
- **Mode**: Plan Mode
|
|
35
|
+
|
|
36
|
+
## 목표
|
|
37
|
+
1. 와이어프레임 설계
|
|
38
|
+
2. 사용자 플로우 정의
|
|
39
|
+
3. 디자인 시스템 기초 수립
|
|
40
|
+
4. 컴포넌트 라이브러리 정의
|
|
41
|
+
|
|
42
|
+
## 입력 파일
|
|
43
|
+
- `../01-brainstorm/outputs/requirements_analysis.md`
|
|
44
|
+
- `../03-planning/outputs/architecture.md`
|
|
45
|
+
- `../03-planning/HANDOFF.md`
|
|
46
|
+
|
|
47
|
+
## 출력 파일
|
|
48
|
+
- `outputs/wireframes.md` - 와이어프레임 (ASCII/Mermaid)
|
|
49
|
+
- `outputs/user_flows.md` - 사용자 플로우
|
|
50
|
+
- `outputs/design_system.md` - 디자인 시스템
|
|
51
|
+
- `HANDOFF.md` - 다음 스테이지 인계 문서
|
|
52
|
+
|
|
53
|
+
## 워크플로우
|
|
54
|
+
|
|
55
|
+
### 1. 정보 아키텍처
|
|
56
|
+
- 화면 구조 정의
|
|
57
|
+
- 네비게이션 설계
|
|
58
|
+
- 콘텐츠 계층
|
|
59
|
+
|
|
60
|
+
### 2. 와이어프레임
|
|
61
|
+
- 주요 화면 와이어프레임
|
|
62
|
+
- 반응형 고려사항
|
|
63
|
+
- 상호작용 정의
|
|
64
|
+
|
|
65
|
+
### 3. 사용자 플로우
|
|
66
|
+
- 핵심 사용자 여정
|
|
67
|
+
- 엣지 케이스 처리
|
|
68
|
+
- 에러 상태
|
|
69
|
+
|
|
70
|
+
### 4. 디자인 시스템
|
|
71
|
+
- 색상 팔레트
|
|
72
|
+
- 타이포그래피
|
|
73
|
+
- 스페이싱 시스템
|
|
74
|
+
- 컴포넌트 목록
|
|
75
|
+
|
|
76
|
+
## 완료 조건
|
|
77
|
+
- [ ] 주요 화면 와이어프레임 (5개 이상)
|
|
78
|
+
- [ ] 핵심 사용자 플로우 3개 이상
|
|
79
|
+
- [ ] 디자인 시스템 기초 정의
|
|
80
|
+
- [ ] 컴포넌트 목록 작성
|
|
81
|
+
- [ ] HANDOFF.md 생성
|
|
82
|
+
|
|
83
|
+
## 다음 스테이지
|
|
84
|
+
→ **05-task-management**: 태스크 분해 및 스프린트 계획
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# Stage Handoff: 04-ui-ux → 05-task-management
|
|
2
|
+
|
|
3
|
+
**생성일**: {{TIMESTAMP}}
|
|
4
|
+
**생성자**: Gemini
|
|
5
|
+
**소요 시간**: {{DURATION}}
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 완료된 작업
|
|
10
|
+
|
|
11
|
+
- [ ] 정보 아키텍처 정의
|
|
12
|
+
- [ ] 와이어프레임 작성 ({{SCREEN_COUNT}}개 화면)
|
|
13
|
+
- [ ] 사용자 플로우 정의 ({{FLOW_COUNT}}개)
|
|
14
|
+
- [ ] 디자인 시스템 기초 수립
|
|
15
|
+
- [ ] HANDOFF.md 생성
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 다음 에이전트를 위한 컨텍스트
|
|
20
|
+
|
|
21
|
+
### 화면 목록
|
|
22
|
+
|
|
23
|
+
| # | 화면 | 우선순위 | 복잡도 |
|
|
24
|
+
|---|------|----------|--------|
|
|
25
|
+
| 1 | {{SCREEN_1}} | Must | |
|
|
26
|
+
| 2 | {{SCREEN_2}} | Must | |
|
|
27
|
+
| 3 | {{SCREEN_3}} | Should | |
|
|
28
|
+
|
|
29
|
+
### 컴포넌트 목록
|
|
30
|
+
|
|
31
|
+
| 컴포넌트 | 변형 | 재사용성 |
|
|
32
|
+
|----------|------|----------|
|
|
33
|
+
| Button | Primary, Secondary, Ghost | High |
|
|
34
|
+
| Input | Text, Password, Search | High |
|
|
35
|
+
| Card | Default, Compact | Medium |
|
|
36
|
+
|
|
37
|
+
### 디자인 토큰 요약
|
|
38
|
+
- **Primary Color**: {{PRIMARY_COLOR}}
|
|
39
|
+
- **Font Family**: {{FONT_FAMILY}}
|
|
40
|
+
- **Base Spacing**: {{SPACING}}
|
|
41
|
+
|
|
42
|
+
### 핵심 사용자 플로우
|
|
43
|
+
1. {{FLOW_1}}
|
|
44
|
+
2. {{FLOW_2}}
|
|
45
|
+
3. {{FLOW_3}}
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## 생성된 산출물
|
|
50
|
+
|
|
51
|
+
| 파일 | 설명 |
|
|
52
|
+
|------|------|
|
|
53
|
+
| wireframes.md | 화면 와이어프레임 |
|
|
54
|
+
| user_flows.md | 사용자 플로우 |
|
|
55
|
+
| design_system.md | 디자인 시스템 |
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 05-task-management 스테이지 가이드
|
|
60
|
+
|
|
61
|
+
### 즉시 실행할 작업
|
|
62
|
+
1. 화면/컴포넌트 기반 태스크 분해
|
|
63
|
+
2. 의존성 파악
|
|
64
|
+
3. 스프린트 할당
|
|
65
|
+
|
|
66
|
+
### 구현 우선순위 제안
|
|
67
|
+
1. 공통 컴포넌트 (Button, Input, Card)
|
|
68
|
+
2. 레이아웃 컴포넌트
|
|
69
|
+
3. 핵심 화면 구현
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## AI 호출 기록
|
|
74
|
+
|
|
75
|
+
| AI | 호출 시간 | 프롬프트 | 결과 | 상태 |
|
|
76
|
+
|----|----------|---------|------|------|
|
|
77
|
+
| {{AI_1}} | {{TIME_1}} | {{PROMPT_1}} | {{OUTPUT_1}} | {{STATUS_1}} |
|
|
78
|
+
| {{AI_2}} | {{TIME_2}} | {{PROMPT_2}} | {{OUTPUT_2}} | {{STATUS_2}} |
|
|
79
|
+
|
|
80
|
+
> 설정: `config/ai_logging.yaml`
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## 메타데이터
|
|
85
|
+
|
|
86
|
+
```yaml
|
|
87
|
+
stage: "04-ui-ux"
|
|
88
|
+
status: "completed"
|
|
89
|
+
next_stage: "05-task-management"
|
|
90
|
+
models_used:
|
|
91
|
+
- gemini
|
|
92
|
+
```
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Stage 04: UI/UX Planning Configuration
|
|
2
|
+
|
|
3
|
+
stage:
|
|
4
|
+
id: "04-ui-ux"
|
|
5
|
+
name: "UI/UX Planning"
|
|
6
|
+
description: "사용자 인터페이스 및 경험 설계"
|
|
7
|
+
|
|
8
|
+
models:
|
|
9
|
+
primary: "gemini"
|
|
10
|
+
secondary: null
|
|
11
|
+
collaboration: null
|
|
12
|
+
|
|
13
|
+
execution:
|
|
14
|
+
mode: "plan"
|
|
15
|
+
container: false
|
|
16
|
+
sandbox: false
|
|
17
|
+
timeout: 3600
|
|
18
|
+
|
|
19
|
+
inputs:
|
|
20
|
+
required:
|
|
21
|
+
- name: "../01-brainstorm/outputs/requirements_analysis.md"
|
|
22
|
+
- name: "../03-planning/outputs/architecture.md"
|
|
23
|
+
- name: "../03-planning/HANDOFF.md"
|
|
24
|
+
optional:
|
|
25
|
+
- name: "../01-brainstorm/outputs/personas.md"
|
|
26
|
+
|
|
27
|
+
outputs:
|
|
28
|
+
required:
|
|
29
|
+
- name: "wireframes.md"
|
|
30
|
+
- name: "user_flows.md"
|
|
31
|
+
- name: "design_system.md"
|
|
32
|
+
- name: "HANDOFF.md"
|
|
33
|
+
|
|
34
|
+
prompts:
|
|
35
|
+
- name: "wireframes"
|
|
36
|
+
file: "prompts/wireframes.md"
|
|
37
|
+
model: "gemini"
|
|
38
|
+
- name: "user_flows"
|
|
39
|
+
file: "prompts/user_flows.md"
|
|
40
|
+
model: "gemini"
|
|
41
|
+
- name: "design_system"
|
|
42
|
+
file: "prompts/design_system.md"
|
|
43
|
+
model: "gemini"
|
|
44
|
+
|
|
45
|
+
completion:
|
|
46
|
+
checklist:
|
|
47
|
+
- "주요 화면 와이어프레임 5개 이상"
|
|
48
|
+
- "핵심 사용자 플로우 3개 이상"
|
|
49
|
+
- "디자인 시스템 기초 정의"
|
|
50
|
+
- "컴포넌트 목록 작성"
|
|
51
|
+
|
|
52
|
+
transition:
|
|
53
|
+
next_stage: "05-task-management"
|
|
54
|
+
prerequisites:
|
|
55
|
+
- "03-planning"
|
|
56
|
+
handoff_required: true
|
|
57
|
+
checkpoint_required: false
|
|
File without changes
|
|
File without changes
|
|
File without changes
|