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,56 @@
|
|
|
1
|
+
# AI 협업 프롬프트 - UI/UX Planning
|
|
2
|
+
|
|
3
|
+
## 협업 모드: Debate + Parallel
|
|
4
|
+
|
|
5
|
+
이 스테이지에서는 **토론 모드**로 UX 방향성을 결정하고, **병렬 모드**로 세부 설계를 진행합니다.
|
|
6
|
+
|
|
7
|
+
### 참여 모델
|
|
8
|
+
- **Gemini**: 창의적 UI 설계, 와이어프레임 생성
|
|
9
|
+
- **Claude**: 사용성 검토, 접근성 평가
|
|
10
|
+
|
|
11
|
+
### 협업 프롬프트
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
# UX 방향 토론
|
|
15
|
+
/collaborate --mode debate --topic "사용자 경험 방향성" --rounds 2
|
|
16
|
+
|
|
17
|
+
# 병렬 설계
|
|
18
|
+
/collaborate --mode parallel --models gemini,claude --task "UI 컴포넌트 설계"
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### 토론 주제
|
|
22
|
+
|
|
23
|
+
1. **인터랙션 패턴**: 전통적 vs 혁신적
|
|
24
|
+
2. **정보 아키텍처**: 평면 vs 계층
|
|
25
|
+
3. **디자인 시스템**: 기존 사용 vs 커스텀
|
|
26
|
+
|
|
27
|
+
### 작업 분담
|
|
28
|
+
|
|
29
|
+
| AI | 담당 영역 | 출력 |
|
|
30
|
+
|----|----------|------|
|
|
31
|
+
| Gemini | 와이어프레임, 시각 설계 | wireframes.md |
|
|
32
|
+
| Claude | 사용자 플로우, 접근성 검토 | user_flows.md |
|
|
33
|
+
|
|
34
|
+
### 디자인 검토 체크리스트
|
|
35
|
+
|
|
36
|
+
- [ ] 사용자 시나리오 기반 설계
|
|
37
|
+
- [ ] 반응형 고려
|
|
38
|
+
- [ ] 접근성 (WCAG 2.1)
|
|
39
|
+
- [ ] 일관된 디자인 언어
|
|
40
|
+
|
|
41
|
+
### 출력 형식
|
|
42
|
+
|
|
43
|
+
```markdown
|
|
44
|
+
## AI 협업 결과
|
|
45
|
+
|
|
46
|
+
### Gemini 설계
|
|
47
|
+
- 와이어프레임 (ASCII/Mermaid)
|
|
48
|
+
- 색상/타이포그래피 제안
|
|
49
|
+
|
|
50
|
+
### Claude 검토
|
|
51
|
+
- 사용성 평가
|
|
52
|
+
- 접근성 개선점
|
|
53
|
+
|
|
54
|
+
### 통합 디자인 시스템
|
|
55
|
+
- [최종 컴포넌트 목록]
|
|
56
|
+
```
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# 산출물 검증 프롬프트 - UI/UX Planning
|
|
2
|
+
|
|
3
|
+
## 검증 대상
|
|
4
|
+
|
|
5
|
+
| 산출물 | 필수 조건 | 검증 방법 |
|
|
6
|
+
|--------|----------|----------|
|
|
7
|
+
| `wireframes.md` | 주요 화면 5개+ | 수량 확인 |
|
|
8
|
+
| `user_flows.md` | 핵심 플로우 3개+ | 수량 확인 |
|
|
9
|
+
| `design_system.md` | 색상/타이포/스페이싱 | 구조 확인 |
|
|
10
|
+
| `HANDOFF.md` | 컴포넌트 목록 | 항목 확인 |
|
|
11
|
+
|
|
12
|
+
## 검증 명령
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
/validate --stage 04-ui-ux
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## 품질 기준
|
|
19
|
+
|
|
20
|
+
### wireframes.md
|
|
21
|
+
- [ ] 주요 화면 5개 이상
|
|
22
|
+
- [ ] 각 화면 설명
|
|
23
|
+
- [ ] 반응형 breakpoint 고려
|
|
24
|
+
- [ ] 상호작용 설명
|
|
25
|
+
|
|
26
|
+
### user_flows.md
|
|
27
|
+
- [ ] 핵심 사용자 플로우 3개 이상
|
|
28
|
+
- [ ] 각 플로우 다이어그램
|
|
29
|
+
- [ ] 엣지 케이스 처리
|
|
30
|
+
- [ ] 에러 상태 정의
|
|
31
|
+
|
|
32
|
+
### design_system.md
|
|
33
|
+
- [ ] 색상 팔레트 (Primary, Secondary, Neutral)
|
|
34
|
+
- [ ] 타이포그래피 스케일
|
|
35
|
+
- [ ] 스페이싱 시스템
|
|
36
|
+
- [ ] 컴포넌트 목록 및 변형
|
|
37
|
+
|
|
38
|
+
### HANDOFF.md
|
|
39
|
+
- [ ] 구현할 컴포넌트 목록
|
|
40
|
+
- [ ] 우선순위 지정
|
|
41
|
+
- [ ] 기술적 고려사항
|
|
42
|
+
|
|
43
|
+
## 자동 검증 스크립트
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
# 와이어프레임 수 확인
|
|
47
|
+
grep -c "^### " outputs/wireframes.md
|
|
48
|
+
|
|
49
|
+
# 사용자 플로우 수 확인
|
|
50
|
+
grep -c "^## Flow" outputs/user_flows.md
|
|
51
|
+
|
|
52
|
+
# 디자인 시스템 섹션 확인
|
|
53
|
+
grep -E "^## (색상|Color|타이포|Typography|스페이싱|Spacing)" outputs/design_system.md
|
|
54
|
+
```
|
|
File without changes
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# Stage 05: Task Management
|
|
2
|
+
|
|
3
|
+
> ⚠️ **Notion 태스크 생성 규칙**
|
|
4
|
+
> - 태스크는 반드시 **하나씩 순차적으로** 생성하세요
|
|
5
|
+
> - 모든 태스크에 **Status** 필드 필수 (기본값: To Do)
|
|
6
|
+
> - **Order** 필드로 순서 지정 (View 정렬은 수동 설정)
|
|
7
|
+
> - 스키마: `templates/task_schema.yaml` | 가이드: `templates/notion_integration.md`
|
|
8
|
+
|
|
9
|
+
태스크 분해 및 스프린트 계획 단계
|
|
10
|
+
|
|
11
|
+
## 🎭 페르소나: Project Organizer
|
|
12
|
+
|
|
13
|
+
> 당신은 Project Organizer입니다.
|
|
14
|
+
> 모든 작업을 실행 가능한 작은 단위로 분해하세요.
|
|
15
|
+
> 각 태스크는 명확한 완료 조건과 의존성을 가져야 합니다.
|
|
16
|
+
|
|
17
|
+
### 특성
|
|
18
|
+
- 체계적 분해
|
|
19
|
+
- 의존성 분석
|
|
20
|
+
- 우선순위 설정
|
|
21
|
+
- 실행 가능성
|
|
22
|
+
|
|
23
|
+
### 권장 행동
|
|
24
|
+
- 작은 단위로 분해
|
|
25
|
+
- 명확한 완료 조건
|
|
26
|
+
- 의존성 명시
|
|
27
|
+
- 실행 가능한 태스크
|
|
28
|
+
|
|
29
|
+
### 지양 행동
|
|
30
|
+
- 모호한 태스크
|
|
31
|
+
- 거대한 단위
|
|
32
|
+
- 의존성 무시
|
|
33
|
+
|
|
34
|
+
### AI 설정
|
|
35
|
+
- **Temperature**: 0.3 (높은 정밀도)
|
|
36
|
+
- **정밀도**: High
|
|
37
|
+
|
|
38
|
+
## 실행 모델
|
|
39
|
+
- **Primary**: ClaudeCode (구조화된 태스크 분해)
|
|
40
|
+
- **Mode**: Plan Mode
|
|
41
|
+
|
|
42
|
+
## 목표
|
|
43
|
+
1. 기능별 태스크 분해
|
|
44
|
+
2. 의존성 맵핑
|
|
45
|
+
3. 스프린트 계획 수립
|
|
46
|
+
4. 마일스톤별 산출물 정의
|
|
47
|
+
|
|
48
|
+
## 입력 파일
|
|
49
|
+
- `../03-planning/outputs/project_plan.md`
|
|
50
|
+
- `../03-planning/outputs/architecture.md`
|
|
51
|
+
- `../04-ui-ux/outputs/design_system.md`
|
|
52
|
+
- `../04-ui-ux/HANDOFF.md`
|
|
53
|
+
|
|
54
|
+
## 출력 파일
|
|
55
|
+
- `outputs/tasks.md` - 태스크 목록
|
|
56
|
+
- `outputs/sprint_plan.md` - 스프린트 계획
|
|
57
|
+
- `outputs/milestones.md` - 마일스톤 정의
|
|
58
|
+
- `HANDOFF.md` - 다음 스테이지 인계 문서
|
|
59
|
+
|
|
60
|
+
## 워크플로우
|
|
61
|
+
|
|
62
|
+
### 1. 태스크 분해
|
|
63
|
+
- 기능 → 에픽 → 스토리 → 태스크
|
|
64
|
+
- 예상 작업량 산정
|
|
65
|
+
- 기술적 의존성 파악
|
|
66
|
+
|
|
67
|
+
### 2. 우선순위 결정
|
|
68
|
+
- MoSCoW 분류
|
|
69
|
+
- 비즈니스 가치 vs 기술 복잡도
|
|
70
|
+
- 리스크 기반 우선순위
|
|
71
|
+
|
|
72
|
+
### 3. 스프린트 계획
|
|
73
|
+
- 스프린트 길이 결정
|
|
74
|
+
- 용량 기반 할당
|
|
75
|
+
- 버퍼 포함
|
|
76
|
+
|
|
77
|
+
### 4. 마일스톤 정의
|
|
78
|
+
- 체크포인트별 산출물
|
|
79
|
+
- 성공 기준
|
|
80
|
+
- 검증 방법
|
|
81
|
+
|
|
82
|
+
## 태스크 형식
|
|
83
|
+
```markdown
|
|
84
|
+
## TASK-XXX: [태스크명]
|
|
85
|
+
- **에픽**: [에픽명]
|
|
86
|
+
- **스토리**: [유저스토리]
|
|
87
|
+
- **우선순위**: Must/Should/Could
|
|
88
|
+
- **예상 시간**: Xh
|
|
89
|
+
- **의존성**: [TASK-YYY, TASK-ZZZ]
|
|
90
|
+
- **담당 스테이지**: 06-implementation
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
## 완료 조건
|
|
94
|
+
- [ ] 전체 태스크 목록 작성
|
|
95
|
+
- [ ] 의존성 그래프 생성
|
|
96
|
+
- [ ] 스프린트 3개 이상 계획
|
|
97
|
+
- [ ] 마일스톤 산출물 정의
|
|
98
|
+
- [ ] HANDOFF.md 생성
|
|
99
|
+
|
|
100
|
+
## 다음 스테이지
|
|
101
|
+
→ **06-implementation**: 핵심 기능 구현
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# Stage Handoff: 05-task-management → 06-implementation
|
|
2
|
+
|
|
3
|
+
**생성일**: {{TIMESTAMP}}
|
|
4
|
+
**생성자**: ClaudeCode
|
|
5
|
+
**소요 시간**: {{DURATION}}
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 완료된 작업
|
|
10
|
+
|
|
11
|
+
- [ ] 태스크 분해 (총 {{TASK_COUNT}}개)
|
|
12
|
+
- [ ] 의존성 맵핑
|
|
13
|
+
- [ ] 스프린트 계획 ({{SPRINT_COUNT}}개)
|
|
14
|
+
- [ ] 마일스톤 정의
|
|
15
|
+
- [ ] HANDOFF.md 생성
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## 다음 에이전트를 위한 컨텍스트
|
|
20
|
+
|
|
21
|
+
### 스프린트 1 태스크 (즉시 시작)
|
|
22
|
+
|
|
23
|
+
| ID | 태스크 | 우선순위 | 의존성 |
|
|
24
|
+
|----|--------|----------|--------|
|
|
25
|
+
| {{TASK_1_ID}} | {{TASK_1}} | Must | - |
|
|
26
|
+
| {{TASK_2_ID}} | {{TASK_2}} | Must | {{DEP_2}} |
|
|
27
|
+
| {{TASK_3_ID}} | {{TASK_3}} | Should | {{DEP_3}} |
|
|
28
|
+
|
|
29
|
+
### 의존성 요약
|
|
30
|
+
```mermaid
|
|
31
|
+
graph TD
|
|
32
|
+
{{DEPENDENCY_GRAPH}}
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### 마일스톤
|
|
36
|
+
|
|
37
|
+
| 마일스톤 | 목표 | 완료 기준 |
|
|
38
|
+
|----------|------|-----------|
|
|
39
|
+
| M1 | {{M1_GOAL}} | {{M1_CRITERIA}} |
|
|
40
|
+
| M2 | {{M2_GOAL}} | {{M2_CRITERIA}} |
|
|
41
|
+
|
|
42
|
+
### 기술적 주의사항
|
|
43
|
+
- {{TECH_NOTE_1}}
|
|
44
|
+
- {{TECH_NOTE_2}}
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## 생성된 산출물
|
|
49
|
+
|
|
50
|
+
| 파일 | 설명 |
|
|
51
|
+
|------|------|
|
|
52
|
+
| tasks.md | 전체 태스크 목록 |
|
|
53
|
+
| sprint_plan.md | 스프린트 계획 |
|
|
54
|
+
| milestones.md | 마일스톤 정의 |
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## 06-implementation 스테이지 가이드
|
|
59
|
+
|
|
60
|
+
### 즉시 실행할 작업
|
|
61
|
+
1. 프로젝트 초기화 (scaffolding)
|
|
62
|
+
2. 공통 컴포넌트 구현
|
|
63
|
+
3. {{FIRST_FEATURE}} 구현 시작
|
|
64
|
+
|
|
65
|
+
### 구현 순서 권장
|
|
66
|
+
1. {{IMPL_ORDER_1}}
|
|
67
|
+
2. {{IMPL_ORDER_2}}
|
|
68
|
+
3. {{IMPL_ORDER_3}}
|
|
69
|
+
|
|
70
|
+
### 체크포인트 트리거
|
|
71
|
+
- 스프린트 1 완료 시
|
|
72
|
+
- 핵심 기능 구현 완료 시
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## AI 호출 기록
|
|
77
|
+
|
|
78
|
+
| AI | 호출 시간 | 프롬프트 | 결과 | 상태 |
|
|
79
|
+
|----|----------|---------|------|------|
|
|
80
|
+
| {{AI_1}} | {{TIME_1}} | {{PROMPT_1}} | {{OUTPUT_1}} | {{STATUS_1}} |
|
|
81
|
+
| {{AI_2}} | {{TIME_2}} | {{PROMPT_2}} | {{OUTPUT_2}} | {{STATUS_2}} |
|
|
82
|
+
|
|
83
|
+
> 설정: `config/ai_logging.yaml`
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## 메타데이터
|
|
88
|
+
|
|
89
|
+
```yaml
|
|
90
|
+
stage: "05-task-management"
|
|
91
|
+
status: "completed"
|
|
92
|
+
next_stage: "06-implementation"
|
|
93
|
+
models_used:
|
|
94
|
+
- claudecode
|
|
95
|
+
total_tasks: {{TASK_COUNT}}
|
|
96
|
+
total_sprints: {{SPRINT_COUNT}}
|
|
97
|
+
```
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# Stage 05: Task Management Configuration
|
|
2
|
+
|
|
3
|
+
stage:
|
|
4
|
+
id: "05-task-management"
|
|
5
|
+
name: "Task Management"
|
|
6
|
+
description: "태스크 분해 및 스프린트 계획"
|
|
7
|
+
|
|
8
|
+
models:
|
|
9
|
+
primary: "claudecode"
|
|
10
|
+
secondary: null
|
|
11
|
+
collaboration: null
|
|
12
|
+
|
|
13
|
+
execution:
|
|
14
|
+
mode: "plan"
|
|
15
|
+
container: false
|
|
16
|
+
sandbox: false
|
|
17
|
+
timeout: 1800 # 30 minutes
|
|
18
|
+
|
|
19
|
+
inputs:
|
|
20
|
+
required:
|
|
21
|
+
- name: "../03-planning/outputs/project_plan.md"
|
|
22
|
+
- name: "../03-planning/outputs/architecture.md"
|
|
23
|
+
- name: "../04-ui-ux/HANDOFF.md"
|
|
24
|
+
optional:
|
|
25
|
+
- name: "../04-ui-ux/outputs/design_system.md"
|
|
26
|
+
- name: "../01-brainstorm/outputs/requirements_analysis.md"
|
|
27
|
+
|
|
28
|
+
outputs:
|
|
29
|
+
required:
|
|
30
|
+
- name: "tasks.md"
|
|
31
|
+
description: "태스크 목록"
|
|
32
|
+
- name: "sprint_plan.md"
|
|
33
|
+
description: "스프린트 계획"
|
|
34
|
+
- name: "milestones.md"
|
|
35
|
+
description: "마일스톤 정의"
|
|
36
|
+
- name: "HANDOFF.md"
|
|
37
|
+
|
|
38
|
+
# Notion 연동 설정 (Issue #4, #5, #6, #8, #16 해결)
|
|
39
|
+
notion_integration:
|
|
40
|
+
enabled: true
|
|
41
|
+
schema: "templates/task_schema.yaml"
|
|
42
|
+
guide: "templates/notion_integration.md"
|
|
43
|
+
|
|
44
|
+
# 태스크 생성 규칙
|
|
45
|
+
task_creation:
|
|
46
|
+
mode: "sequential" # 순차 생성 필수!
|
|
47
|
+
batch_size: 1 # 한 번에 하나씩
|
|
48
|
+
delay_ms: 100 # 생성 간 딜레이
|
|
49
|
+
|
|
50
|
+
# 필수 필드
|
|
51
|
+
required_fields:
|
|
52
|
+
- "Task Name"
|
|
53
|
+
- "Status" # Issue #16: 필수!
|
|
54
|
+
- "Order" # Issue #5: 정렬용!
|
|
55
|
+
|
|
56
|
+
# 기본값
|
|
57
|
+
defaults:
|
|
58
|
+
status: "To Do"
|
|
59
|
+
priority: "Medium"
|
|
60
|
+
|
|
61
|
+
prompts:
|
|
62
|
+
- name: "task_breakdown"
|
|
63
|
+
file: "prompts/task_breakdown.md"
|
|
64
|
+
model: "claudecode"
|
|
65
|
+
- name: "sprint_planning"
|
|
66
|
+
file: "prompts/sprint_planning.md"
|
|
67
|
+
model: "claudecode"
|
|
68
|
+
|
|
69
|
+
completion:
|
|
70
|
+
checklist:
|
|
71
|
+
- "전체 태스크 목록 작성"
|
|
72
|
+
- "의존성 그래프 생성"
|
|
73
|
+
- "스프린트 3개 이상 계획"
|
|
74
|
+
- "마일스톤 산출물 정의"
|
|
75
|
+
|
|
76
|
+
transition:
|
|
77
|
+
next_stage: "06-implementation"
|
|
78
|
+
prerequisites:
|
|
79
|
+
- "04-ui-ux"
|
|
80
|
+
handoff_required: true
|
|
81
|
+
checkpoint_required: false
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# AI 협업 프롬프트 - Task Management
|
|
2
|
+
|
|
3
|
+
## 협업 모드: Sequential Review
|
|
4
|
+
|
|
5
|
+
이 스테이지에서는 **순차적 리뷰** 모드를 사용하여 태스크 분해의 완전성을 보장합니다.
|
|
6
|
+
|
|
7
|
+
### 참여 모델
|
|
8
|
+
- **ClaudeCode**: 태스크 분해, 의존성 분석
|
|
9
|
+
|
|
10
|
+
### 협업 프롬프트
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
# 단일 모델이지만 반복 검토
|
|
14
|
+
/collaborate --mode sequential --chain "claudecode:decompose -> claudecode:review"
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### 작업 흐름
|
|
18
|
+
|
|
19
|
+
1. **초기 분해**: 기능 → 에픽 → 스토리 → 태스크
|
|
20
|
+
2. **의존성 분석**: 태스크 간 관계 파악
|
|
21
|
+
3. **검토 및 조정**: 누락/중복 태스크 식별
|
|
22
|
+
|
|
23
|
+
### 태스크 품질 기준
|
|
24
|
+
|
|
25
|
+
| 기준 | 설명 |
|
|
26
|
+
|------|------|
|
|
27
|
+
| 원자성 | 더 이상 분해 불가 |
|
|
28
|
+
| 명확성 | 완료 조건 명확 |
|
|
29
|
+
| 독립성 | 최소한의 의존성 |
|
|
30
|
+
| 추정 가능 | 시간 추정 가능 |
|
|
31
|
+
|
|
32
|
+
### Notion 통합
|
|
33
|
+
|
|
34
|
+
태스크 생성 시 반드시 준수:
|
|
35
|
+
- 하나씩 순차적으로 생성
|
|
36
|
+
- Status 필드 필수 (기본값: To Do)
|
|
37
|
+
- Order 필드로 순서 지정
|
|
38
|
+
|
|
39
|
+
### 출력 형식
|
|
40
|
+
|
|
41
|
+
```markdown
|
|
42
|
+
## 태스크 분해 결과
|
|
43
|
+
|
|
44
|
+
### 에픽 1: [에픽명]
|
|
45
|
+
#### 스토리 1.1: [스토리명]
|
|
46
|
+
- TASK-001: [태스크] (2h)
|
|
47
|
+
- TASK-002: [태스크] (4h)
|
|
48
|
+
...
|
|
49
|
+
|
|
50
|
+
### 의존성 그래프
|
|
51
|
+
TASK-001 → TASK-003
|
|
52
|
+
TASK-002 → TASK-004
|
|
53
|
+
...
|
|
54
|
+
```
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# 산출물 검증 프롬프트 - Task Management
|
|
2
|
+
|
|
3
|
+
## 검증 대상
|
|
4
|
+
|
|
5
|
+
| 산출물 | 필수 조건 | 검증 방법 |
|
|
6
|
+
|--------|----------|----------|
|
|
7
|
+
| `tasks.md` | 전체 태스크 목록 | 구조 확인 |
|
|
8
|
+
| `sprint_plan.md` | 스프린트 3개+ | 수량 확인 |
|
|
9
|
+
| `milestones.md` | 산출물 정의 | 구조 확인 |
|
|
10
|
+
| `HANDOFF.md` | 첫 스프린트 태스크 | 항목 확인 |
|
|
11
|
+
|
|
12
|
+
## 검증 명령
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
/validate --stage 05-task-management
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## 품질 기준
|
|
19
|
+
|
|
20
|
+
### tasks.md
|
|
21
|
+
- [ ] MoSCoW 분류 적용
|
|
22
|
+
- [ ] 각 태스크에 예상 시간
|
|
23
|
+
- [ ] 의존성 명시
|
|
24
|
+
- [ ] 담당 스테이지 지정
|
|
25
|
+
|
|
26
|
+
### sprint_plan.md
|
|
27
|
+
- [ ] 스프린트 3개 이상
|
|
28
|
+
- [ ] 각 스프린트 용량 계산
|
|
29
|
+
- [ ] 버퍼 시간 포함
|
|
30
|
+
- [ ] 우선순위 기반 할당
|
|
31
|
+
|
|
32
|
+
### milestones.md
|
|
33
|
+
- [ ] 마일스톤별 산출물 정의
|
|
34
|
+
- [ ] 성공 기준 명시
|
|
35
|
+
- [ ] 검증 방법 포함
|
|
36
|
+
|
|
37
|
+
### HANDOFF.md
|
|
38
|
+
- [ ] 스프린트 1 태스크 목록
|
|
39
|
+
- [ ] 의존성 그래프
|
|
40
|
+
- [ ] 우선 구현 항목
|
|
41
|
+
|
|
42
|
+
## 자동 검증 스크립트
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
# 태스크 수 확인
|
|
46
|
+
grep -c "^- TASK-" outputs/tasks.md
|
|
47
|
+
|
|
48
|
+
# 스프린트 수 확인
|
|
49
|
+
grep -c "^## Sprint" outputs/sprint_plan.md
|
|
50
|
+
|
|
51
|
+
# 마일스톤 수 확인
|
|
52
|
+
grep -c "^## Milestone" outputs/milestones.md
|
|
53
|
+
|
|
54
|
+
# 의존성 그래프 존재 확인
|
|
55
|
+
grep -c "→" outputs/tasks.md
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## 태스크 품질 체크
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
# 예상 시간 누락 확인
|
|
62
|
+
grep -E "^- TASK-" outputs/tasks.md | grep -v -E "\([0-9]+h\)"
|
|
63
|
+
|
|
64
|
+
# 의존성 누락 확인
|
|
65
|
+
grep -E "^- TASK-" outputs/tasks.md | grep -v "의존성"
|
|
66
|
+
```
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
# Notion 연동 가이드
|
|
2
|
+
|
|
3
|
+
> claude-symphony 태스크 관리 - Notion 데이터베이스 연동
|
|
4
|
+
|
|
5
|
+
## 주의사항 (Issue #5, #6, #8, #16 해결)
|
|
6
|
+
|
|
7
|
+
### ⚠️ 순차 생성 필수
|
|
8
|
+
|
|
9
|
+
Notion API로 태스크를 생성할 때 **반드시 하나씩 순차적으로** 생성해야 합니다.
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
❌ 잘못된 방식 (병렬 생성)
|
|
13
|
+
Promise.all([
|
|
14
|
+
createTask("태스크 1"),
|
|
15
|
+
createTask("태스크 2"),
|
|
16
|
+
createTask("태스크 3")
|
|
17
|
+
])
|
|
18
|
+
|
|
19
|
+
✅ 올바른 방식 (순차 생성)
|
|
20
|
+
await createTask("태스크 1", { order: 1 })
|
|
21
|
+
await createTask("태스크 2", { order: 2 })
|
|
22
|
+
await createTask("태스크 3", { order: 3 })
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### ⚠️ Status 필드 필수
|
|
26
|
+
|
|
27
|
+
모든 태스크는 반드시 `Status` 필드를 포함해야 합니다.
|
|
28
|
+
- 기본값: `To Do`
|
|
29
|
+
- 생성 시 명시적으로 지정
|
|
30
|
+
|
|
31
|
+
### ⚠️ Order 필드로 정렬
|
|
32
|
+
|
|
33
|
+
Notion 데이터베이스 View 정렬은 수동으로 설정해야 합니다:
|
|
34
|
+
|
|
35
|
+
1. 데이터베이스 View 열기
|
|
36
|
+
2. `Sort` 클릭
|
|
37
|
+
3. `Order` 필드 선택
|
|
38
|
+
4. `Ascending` 정렬
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
## 데이터베이스 생성 절차
|
|
43
|
+
|
|
44
|
+
### 1. 데이터베이스 생성
|
|
45
|
+
|
|
46
|
+
```javascript
|
|
47
|
+
// MCP Notion 도구 사용 예시
|
|
48
|
+
await notion.createDatabase({
|
|
49
|
+
parent: { page_id: "프로젝트_페이지_ID" },
|
|
50
|
+
title: [{ text: { content: "프로젝트명 Tasks" } }],
|
|
51
|
+
properties: {
|
|
52
|
+
"Task Name": { title: {} },
|
|
53
|
+
"Status": {
|
|
54
|
+
select: {
|
|
55
|
+
options: [
|
|
56
|
+
{ name: "To Do", color: "gray" },
|
|
57
|
+
{ name: "In Progress", color: "blue" },
|
|
58
|
+
{ name: "Review", color: "yellow" },
|
|
59
|
+
{ name: "Done", color: "green" },
|
|
60
|
+
{ name: "Blocked", color: "red" }
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"Priority": {
|
|
65
|
+
select: {
|
|
66
|
+
options: [
|
|
67
|
+
{ name: "High", color: "red" },
|
|
68
|
+
{ name: "Medium", color: "yellow" },
|
|
69
|
+
{ name: "Low", color: "green" }
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"Order": { number: { format: "number" } },
|
|
74
|
+
"Sprint": {
|
|
75
|
+
select: {
|
|
76
|
+
options: [
|
|
77
|
+
{ name: "Sprint 1" },
|
|
78
|
+
{ name: "Sprint 2" },
|
|
79
|
+
{ name: "Sprint 3" }
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"Assignee": { rich_text: {} },
|
|
84
|
+
"Estimate": { rich_text: {} },
|
|
85
|
+
"Due Date": { date: {} },
|
|
86
|
+
"Depends On": { rich_text: {} },
|
|
87
|
+
"Stage": {
|
|
88
|
+
select: {
|
|
89
|
+
options: [
|
|
90
|
+
{ name: "06-implementation" },
|
|
91
|
+
{ name: "07-refactoring" },
|
|
92
|
+
{ name: "08-qa" },
|
|
93
|
+
{ name: "09-testing" }
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
})
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### 2. 태스크 생성 (순차적)
|
|
102
|
+
|
|
103
|
+
```javascript
|
|
104
|
+
// 태스크 목록
|
|
105
|
+
const tasks = [
|
|
106
|
+
{ name: "프로젝트 초기 설정", priority: "High" },
|
|
107
|
+
{ name: "기본 UI 컴포넌트 구현", priority: "High" },
|
|
108
|
+
{ name: "API 연동", priority: "Medium" },
|
|
109
|
+
// ...
|
|
110
|
+
];
|
|
111
|
+
|
|
112
|
+
// 순차 생성 (중요!)
|
|
113
|
+
for (let i = 0; i < tasks.length; i++) {
|
|
114
|
+
await notion.createPage({
|
|
115
|
+
parent: { database_id: "데이터베이스_ID" },
|
|
116
|
+
properties: {
|
|
117
|
+
"Task Name": { title: [{ text: { content: tasks[i].name } }] },
|
|
118
|
+
"Status": { select: { name: "To Do" } }, // 필수!
|
|
119
|
+
"Priority": { select: { name: tasks[i].priority } },
|
|
120
|
+
"Order": { number: i + 1 } // 순서 보장!
|
|
121
|
+
}
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
// 순서 보장을 위한 짧은 대기
|
|
125
|
+
await new Promise(resolve => setTimeout(resolve, 100));
|
|
126
|
+
}
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## View 설정 (수동)
|
|
132
|
+
|
|
133
|
+
Notion UI에서 직접 설정해야 합니다:
|
|
134
|
+
|
|
135
|
+
### Board View 설정
|
|
136
|
+
1. `+ Add a view` 클릭
|
|
137
|
+
2. `Board` 선택
|
|
138
|
+
3. `Group by` → `Status` 선택
|
|
139
|
+
|
|
140
|
+
### List View 정렬 설정
|
|
141
|
+
1. View에서 `...` 클릭
|
|
142
|
+
2. `Sort` 선택
|
|
143
|
+
3. `+ Add a sort`
|
|
144
|
+
4. `Order` → `Ascending` 선택
|
|
145
|
+
|
|
146
|
+
### 필터 설정 (선택)
|
|
147
|
+
1. `Filter` 클릭
|
|
148
|
+
2. `Status` `is not` `Done` 추가
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## 체크리스트
|
|
153
|
+
|
|
154
|
+
- [ ] 데이터베이스 생성 완료
|
|
155
|
+
- [ ] Status 필드 포함 확인
|
|
156
|
+
- [ ] Order 필드 포함 확인
|
|
157
|
+
- [ ] 태스크 순차 생성 완료
|
|
158
|
+
- [ ] Board View 설정 (Status 그룹화)
|
|
159
|
+
- [ ] List View 정렬 설정 (Order 오름차순)
|
|
160
|
+
|
|
161
|
+
---
|
|
162
|
+
|
|
163
|
+
## 문제 해결
|
|
164
|
+
|
|
165
|
+
### 태스크 순서가 뒤죽박죽인 경우
|
|
166
|
+
1. List View에서 `Order` 정렬 확인
|
|
167
|
+
2. Order 값이 누락된 태스크 수정
|
|
168
|
+
3. 필요시 Order 값 재할당
|
|
169
|
+
|
|
170
|
+
### Status 필드가 없는 경우
|
|
171
|
+
1. 데이터베이스 속성에서 `Status` 추가
|
|
172
|
+
2. 기존 태스크에 Status 값 할당
|
|
173
|
+
|
|
174
|
+
### View 정렬이 저장되지 않는 경우
|
|
175
|
+
1. 해당 View가 저장된 View인지 확인
|
|
176
|
+
2. `...` → `Lock database` 해제 확인
|