create-ax-project 1.0.0
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 +193 -0
- package/package.json +38 -0
- package/template/.claude/CLAUDE.md +7 -0
- package/template/.claude/commands/CLAUDE.md +0 -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/CLAUDE.md +0 -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/CLAUDE.md +0 -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/CLAUDE.md +0 -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/CLAUDE.md +0 -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/CLAUDE.md +0 -0
- package/template/.claude/skills/context-compression/prompts/compression.md +172 -0
- package/template/.claude/skills/output-validator/CLAUDE.md +0 -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/CLAUDE.md +0 -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/CLAUDE.md +0 -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/CLAUDE.md +0 -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/CLAUDE.md +0 -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/CLAUDE.md +0 -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 +110 -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/inputs/CLAUDE.md +0 -0
- package/template/stages/01-brainstorm/inputs/project_brief.md +40 -0
- package/template/stages/01-brainstorm/outputs/.gitkeep +0 -0
- package/template/stages/01-brainstorm/outputs/CLAUDE.md +0 -0
- package/template/stages/01-brainstorm/outputs/ideas.md +159 -0
- package/template/stages/01-brainstorm/outputs/requirements_analysis.md +222 -0
- package/template/stages/01-brainstorm/prompts/CLAUDE.md +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/CLAUDE.md +0 -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 +158 -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/outputs/CLAUDE.md +0 -0
- package/template/stages/02-research/outputs/feasibility_report.md +176 -0
- package/template/stages/02-research/outputs/tech_research.md +403 -0
- package/template/stages/02-research/prompts/CLAUDE.md +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 +168 -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/outputs/CLAUDE.md +0 -0
- package/template/stages/03-planning/outputs/architecture.md +400 -0
- package/template/stages/03-planning/outputs/implementation.yaml +209 -0
- package/template/stages/03-planning/outputs/project_plan.md +204 -0
- package/template/stages/03-planning/outputs/tech_stack.md +176 -0
- package/template/stages/03-planning/prompts/CLAUDE.md +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 +165 -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/outputs/CLAUDE.md +0 -0
- package/template/stages/04-ui-ux/outputs/design_system.md +449 -0
- package/template/stages/04-ui-ux/outputs/user_flows.md +321 -0
- package/template/stages/04-ui-ux/outputs/wireframes.md +241 -0
- package/template/stages/04-ui-ux/prompts/.gitkeep +0 -0
- package/template/stages/04-ui-ux/prompts/CLAUDE.md +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 +187 -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/outputs/CLAUDE.md +0 -0
- package/template/stages/05-task-management/outputs/milestones.md +253 -0
- package/template/stages/05-task-management/outputs/sprint_plan.md +203 -0
- package/template/stages/05-task-management/outputs/tasks.md +402 -0
- package/template/stages/05-task-management/prompts/.gitkeep +0 -0
- package/template/stages/05-task-management/prompts/CLAUDE.md +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/CLAUDE.md +0 -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 +184 -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/CLAUDE.md +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 +82 -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/outputs/refactoring_report.md +102 -0
- package/template/stages/07-refactoring/prompts/.gitkeep +0 -0
- package/template/stages/07-refactoring/prompts/CLAUDE.md +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 +114 -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/outputs/qa_report.md +138 -0
- package/template/stages/08-qa/prompts/.gitkeep +0 -0
- package/template/stages/08-qa/prompts/CLAUDE.md +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 +118 -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/outputs/test_report.md +146 -0
- package/template/stages/09-testing/prompts/.gitkeep +0 -0
- package/template/stages/09-testing/prompts/CLAUDE.md +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 +141 -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/CLAUDE.md +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/CLAUDE.md +0 -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/CLAUDE.md +0 -0
- package/template/state/templates/handoff_base.md.template +187 -0
- package/template/state/templates/phase_state.md.template +97 -0
|
@@ -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,187 @@
|
|
|
1
|
+
# HANDOFF: 05-task-management → 06-implementation
|
|
2
|
+
|
|
3
|
+
> 생성일: 2026-01-21
|
|
4
|
+
> 프로젝트: snake-game
|
|
5
|
+
> 현재 스테이지: 05-task-management (완료)
|
|
6
|
+
> 다음 스테이지: 06-implementation
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## ✅ 완료된 작업
|
|
11
|
+
|
|
12
|
+
- [x] 25개 태스크 분해 (6개 에픽)
|
|
13
|
+
- [x] 4개 스프린트 계획
|
|
14
|
+
- [x] 4개 마일스톤 정의
|
|
15
|
+
- [x] 의존성 그래프 작성
|
|
16
|
+
- [x] 우선순위 지정 (MoSCoW)
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## 📁 생성된 산출물
|
|
21
|
+
|
|
22
|
+
| 파일 | 설명 |
|
|
23
|
+
|------|------|
|
|
24
|
+
| `outputs/tasks.md` | 25개 태스크 상세 목록 |
|
|
25
|
+
| `outputs/sprint_plan.md` | 4개 스프린트 계획 |
|
|
26
|
+
| `outputs/milestones.md` | 4개 마일스톤 정의 |
|
|
27
|
+
| `HANDOFF.md` | 이 문서 |
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## 🚀 06-implementation 즉시 실행 태스크
|
|
32
|
+
|
|
33
|
+
### Sprint 1 태스크 (순서대로)
|
|
34
|
+
|
|
35
|
+
| 순서 | ID | 태스크 | 예상 시간 |
|
|
36
|
+
|------|-----|--------|----------|
|
|
37
|
+
| 1 | TASK-001 | Vite + React + TS 프로젝트 초기화 | 10분 |
|
|
38
|
+
| 2 | TASK-002 | 타입 정의 (types/index.ts) | 15분 |
|
|
39
|
+
| 3 | TASK-003 | 상수 정의 (constants/config.ts) | 10분 |
|
|
40
|
+
| 4 | TASK-004 | 글로벌 스타일 (styles/index.css) | 15분 |
|
|
41
|
+
| 5 | TASK-005 | useGameLoop 훅 | 20분 |
|
|
42
|
+
| 6 | TASK-007 | collision.ts | 15분 |
|
|
43
|
+
| 7 | TASK-009 | random.ts | 10분 |
|
|
44
|
+
| 8 | TASK-008 | renderer.ts | 25분 |
|
|
45
|
+
| 9 | TASK-006 | gameReducer | 30분 |
|
|
46
|
+
| 10 | TASK-016 | useKeyboard 훅 | 20분 |
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## 📐 프로젝트 구조 (목표)
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
snake-game/
|
|
54
|
+
├── public/
|
|
55
|
+
│ └── favicon.svg
|
|
56
|
+
├── src/
|
|
57
|
+
│ ├── components/
|
|
58
|
+
│ │ ├── CanvasLayer.tsx
|
|
59
|
+
│ │ ├── CanvasLayer.module.css
|
|
60
|
+
│ │ ├── ScoreBoard.tsx
|
|
61
|
+
│ │ ├── ScoreBoard.module.css
|
|
62
|
+
│ │ ├── StartScreen.tsx
|
|
63
|
+
│ │ ├── GameOverModal.tsx
|
|
64
|
+
│ │ └── MobileControls.tsx
|
|
65
|
+
│ │
|
|
66
|
+
│ ├── hooks/
|
|
67
|
+
│ │ ├── useGameLoop.ts
|
|
68
|
+
│ │ ├── useKeyboard.ts
|
|
69
|
+
│ │ ├── useSwipe.ts
|
|
70
|
+
│ │ └── useHighScore.ts
|
|
71
|
+
│ │
|
|
72
|
+
│ ├── engine/
|
|
73
|
+
│ │ ├── gameReducer.ts
|
|
74
|
+
│ │ ├── collision.ts
|
|
75
|
+
│ │ └── renderer.ts
|
|
76
|
+
│ │
|
|
77
|
+
│ ├── types/
|
|
78
|
+
│ │ └── index.ts
|
|
79
|
+
│ │
|
|
80
|
+
│ ├── constants/
|
|
81
|
+
│ │ └── config.ts
|
|
82
|
+
│ │
|
|
83
|
+
│ ├── utils/
|
|
84
|
+
│ │ └── random.ts
|
|
85
|
+
│ │
|
|
86
|
+
│ ├── styles/
|
|
87
|
+
│ │ └── index.css
|
|
88
|
+
│ │
|
|
89
|
+
│ ├── App.tsx
|
|
90
|
+
│ ├── GameEngine.tsx
|
|
91
|
+
│ └── main.tsx
|
|
92
|
+
│
|
|
93
|
+
├── index.html
|
|
94
|
+
├── package.json
|
|
95
|
+
├── tsconfig.json
|
|
96
|
+
└── vite.config.ts
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
---
|
|
100
|
+
|
|
101
|
+
## 🎯 핵심 구현 사항
|
|
102
|
+
|
|
103
|
+
### 1. 타입 정의 (TASK-002)
|
|
104
|
+
|
|
105
|
+
```typescript
|
|
106
|
+
// 필수 타입
|
|
107
|
+
export interface Point { x: number; y: number; }
|
|
108
|
+
export type Direction = 'UP' | 'DOWN' | 'LEFT' | 'RIGHT';
|
|
109
|
+
export type GameStatus = 'IDLE' | 'PLAYING' | 'PAUSED' | 'GAME_OVER';
|
|
110
|
+
export interface GameState { ... }
|
|
111
|
+
export type GameAction = { type: '...' } | ...;
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
### 2. 게임 설정 (TASK-003)
|
|
115
|
+
|
|
116
|
+
```typescript
|
|
117
|
+
export const GAME_CONFIG = {
|
|
118
|
+
boardSize: 20,
|
|
119
|
+
cellSize: 20,
|
|
120
|
+
initialSpeed: 150,
|
|
121
|
+
speedDecrement: 10,
|
|
122
|
+
minSpeed: 50,
|
|
123
|
+
pointsPerFood: 10,
|
|
124
|
+
pointsForLevelUp: 50,
|
|
125
|
+
};
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### 3. 디자인 토큰 (TASK-004)
|
|
129
|
+
|
|
130
|
+
```css
|
|
131
|
+
:root {
|
|
132
|
+
--color-primary: #00ff88;
|
|
133
|
+
--color-secondary: #ff6b6b;
|
|
134
|
+
--color-bg: #1a1a2e;
|
|
135
|
+
--color-surface: #16213e;
|
|
136
|
+
}
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
---
|
|
140
|
+
|
|
141
|
+
## ⚠️ 주의사항
|
|
142
|
+
|
|
143
|
+
1. **순서 준수**: 의존성 순서대로 구현
|
|
144
|
+
2. **타입 우선**: 모든 코드에 타입 적용
|
|
145
|
+
3. **함수형 컴포넌트**: Class 컴포넌트 금지
|
|
146
|
+
4. **CSS Modules**: 스타일 스코프 격리
|
|
147
|
+
5. **외부 엔진 금지**: 순수 React + Canvas
|
|
148
|
+
|
|
149
|
+
---
|
|
150
|
+
|
|
151
|
+
## 📊 예상 시간
|
|
152
|
+
|
|
153
|
+
| 항목 | 시간 |
|
|
154
|
+
|------|------|
|
|
155
|
+
| Sprint 1 (MVP 기반) | ~2시간 50분 |
|
|
156
|
+
| Sprint 2 (MVP 완성) | ~2시간 25분 |
|
|
157
|
+
| **06-implementation 총계** | ~5시간 15분 |
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## 🔗 참조 문서
|
|
162
|
+
|
|
163
|
+
| 문서 | 경로 |
|
|
164
|
+
|------|------|
|
|
165
|
+
| 아키텍처 | `stages/03-planning/outputs/architecture.md` |
|
|
166
|
+
| 기술 스택 | `stages/03-planning/outputs/tech_stack.md` |
|
|
167
|
+
| 구현 규칙 | `stages/03-planning/outputs/implementation.yaml` |
|
|
168
|
+
| 와이어프레임 | `stages/04-ui-ux/outputs/wireframes.md` |
|
|
169
|
+
| 디자인 시스템 | `stages/04-ui-ux/outputs/design_system.md` |
|
|
170
|
+
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
## 🚀 다음 단계
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
# 다음 스테이지 실행
|
|
177
|
+
/run-stage 06-implementation
|
|
178
|
+
|
|
179
|
+
# 또는
|
|
180
|
+
/implement
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
---
|
|
184
|
+
|
|
185
|
+
**생성자**: ClaudeCode
|
|
186
|
+
**검토자**: -
|
|
187
|
+
**승인**: 대기
|
|
@@ -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
|