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,35 +1,35 @@
1
1
  # /stages
2
2
 
3
- 10단계 파이프라인의 모든 스테이지 목록과 상세 정보를 표시합니다.
3
+ Display all stage list and details for the 10-stage pipeline.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /stages
8
8
  /stages [stage-id]
9
9
  ```
10
10
 
11
- ## 동작
11
+ ## Actions
12
12
 
13
- 1. **스테이지 목록 표시** (`/stages`)
14
- - 모든 스테이지 번호/이름
15
- - 담당 AI 모델
16
- - 현재 상태
17
- - 실행 모드
13
+ 1. **Display Stage List** (`/stages`)
14
+ - All stage numbers/names
15
+ - Assigned AI model
16
+ - Current status
17
+ - Execution mode
18
18
 
19
- 2. **특정 스테이지 상세** (`/stages [id]`)
20
- - 스테이지 config.yaml 정보
21
- - 입출력 파일 목록
22
- - 완료 조건
19
+ 2. **Specific Stage Details** (`/stages [id]`)
20
+ - Stage config.yaml information
21
+ - Input/output file list
22
+ - Completion criteria
23
23
 
24
- ## 실행 스크립트
24
+ ## Execution Script
25
25
 
26
26
  ```bash
27
27
  scripts/list-stages.sh "$ARGUMENTS"
28
28
  ```
29
29
 
30
- ## 출력 예시
30
+ ## Output Examples
31
31
 
32
- ### 목록 보기 (`/stages`)
32
+ ### View List (`/stages`)
33
33
 
34
34
  ```
35
35
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
@@ -48,11 +48,11 @@ scripts/list-stages.sh "$ARGUMENTS"
48
48
  09 testing Codex Playwright ⏳
49
49
  10 deployment ClaudeCode Headless ⏳
50
50
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
51
- 현재: 04-ui-ux | 다음: /run-stage 05 또는 /tasks
51
+ Current: 04-ui-ux | Next: /run-stage 05 or /tasks
52
52
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
53
53
  ```
54
54
 
55
- ### 상세 보기 (`/stages 06`)
55
+ ### View Details (`/stages 06`)
56
56
 
57
57
  ```
58
58
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
@@ -60,8 +60,8 @@ scripts/list-stages.sh "$ARGUMENTS"
60
60
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
61
61
  AI Model: ClaudeCode
62
62
  Mode: Plan Mode + Sandbox
63
- Timeout: 240 (가장 긴 스테이지)
64
- Checkpoint: 필수
63
+ Timeout: 240 minutes (longest stage)
64
+ Checkpoint: Required
65
65
 
66
66
  [Inputs]
67
67
  • 05-task-management/outputs/tasks.json
@@ -69,41 +69,41 @@ Checkpoint: 필수
69
69
  • 04-ui-ux/outputs/wireframes/
70
70
 
71
71
  [Outputs]
72
- • src/ (구현된 소스코드)
73
- • tests/ (단위 테스트)
72
+ • src/ (implemented source code)
73
+ • tests/ (unit tests)
74
74
  • implementation-notes.md
75
75
 
76
76
  [Completion Criteria]
77
- 모든 태스크 구현 완료
78
- 단위 테스트 통과
79
- 린트/타입 체크 통과
80
- 체크포인트 생성 완료
77
+ All tasks implemented
78
+ Unit tests passed
79
+ Lint/type check passed
80
+ Checkpoint created
81
81
 
82
82
  [Quick Commands]
83
- • /implement - 스테이지 바로 시작
84
- • /run-stage 06 - 전제조건 확인 시작
83
+ • /implement - Start this stage directly
84
+ • /run-stage 06 - Start after prerequisite check
85
85
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
86
86
  ```
87
87
 
88
- ## 스테이지 정보 참조
89
-
90
- | 스테이지 | 입력 | 출력 | 특징 |
91
- |----------|------|------|------|
92
- | 01-brainstorm | (없음) | ideas.md, decisions.md | YOLO 모드, 병렬 AI |
93
- | 02-research | ideas.md | research.md, tech-stack.md | MCP 도구 활용 |
94
- | 03-planning | research.md | PRD.md, architecture.md | 기획 문서화 |
95
- | 04-ui-ux | PRD.md | wireframes/, components.md | 시각 설계 |
96
- | 05-task-mgmt | PRD, wireframes | tasks.json, sprints.md | 태스크 분해 |
97
- | 06-implementation | tasks.json | src/, tests/ | 핵심 구현 |
98
- | 07-refactoring | src/ | src/ (개선) | 코드 품질 |
99
- | 08-qa | src/ | qa-report.md | 품질 검증 |
100
- | 09-testing | src/, qa | test-results.md | E2E 테스트 |
101
- | 10-deployment | all | CI/CD, deploy | 배포 자동화 |
102
-
103
- ## 옵션
104
-
105
- | 옵션 | 설명 |
106
- |------|------|
107
- | `--json` | JSON 형식으로 출력 |
108
- | `--pending` | 대기 중인 스테이지만 표시 |
109
- | `--completed` | 완료된 스테이지만 표시 |
88
+ ## Stage Information Reference
89
+
90
+ | Stage | Input | Output | Features |
91
+ |-------|-------|--------|----------|
92
+ | 01-brainstorm | (none) | ideas.md, decisions.md | YOLO mode, parallel AI |
93
+ | 02-research | ideas.md | research.md, tech-stack.md | MCP tools |
94
+ | 03-planning | research.md | PRD.md, architecture.md | Planning documentation |
95
+ | 04-ui-ux | PRD.md | wireframes/, components.md | Visual design |
96
+ | 05-task-mgmt | PRD, wireframes | tasks.json, sprints.md | Task breakdown |
97
+ | 06-implementation | tasks.json | src/, tests/ | Core implementation |
98
+ | 07-refactoring | src/ | src/ (improved) | Code quality |
99
+ | 08-qa | src/ | qa-report.md | Quality verification |
100
+ | 09-testing | src/, qa | test-results.md | E2E testing |
101
+ | 10-deployment | all | CI/CD, deploy | Deployment automation |
102
+
103
+ ## Options
104
+
105
+ | Option | Description |
106
+ |--------|-------------|
107
+ | `--json` | Output in JSON format |
108
+ | `--pending` | Show only pending stages |
109
+ | `--completed` | Show only completed stages |
@@ -1,31 +1,31 @@
1
1
  # /status
2
2
 
3
- 파이프라인 전체 상태를 한눈에 확인합니다.
3
+ Check the overall pipeline status at a glance.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /status
8
8
  ```
9
9
 
10
- ## 동작
10
+ ## Actions
11
11
 
12
- 1. **progress.json 읽기**
13
- - 현재 스테이지 확인
14
- - 스테이지 완료 상태
12
+ 1. **Read progress.json**
13
+ - Check current stage
14
+ - Check completion status for each stage
15
15
 
16
- 2. **시각적 상태 표시**
17
- - 진행률 바 (프로그레스)
18
- - 스테이지 상태 아이콘
19
- - 체크포인트
20
- - 토큰 사용량 (컨텍스트)
16
+ 2. **Display Visual Status**
17
+ - Progress bar
18
+ - Status icon for each stage
19
+ - Checkpoint count
20
+ - Token usage (context)
21
21
 
22
- ## 실행 스크립트
22
+ ## Execution Script
23
23
 
24
24
  ```bash
25
25
  scripts/show-status.sh
26
26
  ```
27
27
 
28
- ## 출력 예시
28
+ ## Output Example
29
29
 
30
30
  ```
31
31
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
@@ -33,41 +33,41 @@ scripts/show-status.sh
33
33
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
34
34
  Progress: [████████░░░░░░░░░░░░] 40% (4/10)
35
35
 
36
- 01 ✅ brainstorm 완료 [Gemini+Claude]
37
- 02 ✅ research 완료 [Claude+MCP]
38
- 03 ✅ planning 완료 [Gemini]
39
- 04 🔄 ui-ux 진행중 [Gemini]
40
- 05 ⏳ task-mgmt 대기 [ClaudeCode]
41
- 06 ⏳ implementation 대기 [ClaudeCode]
42
- 07 ⏳ refactoring 대기 [Codex]
43
- 08 ⏳ qa 대기 [ClaudeCode]
44
- 09 ⏳ testing 대기 [Codex]
45
- 10 ⏳ deployment 대기 [ClaudeCode]
36
+ 01 ✅ brainstorm completed [Gemini+Claude]
37
+ 02 ✅ research completed [Claude+MCP]
38
+ 03 ✅ planning completed [Gemini]
39
+ 04 🔄 ui-ux in progress [Gemini]
40
+ 05 ⏳ task-mgmt pending [ClaudeCode]
41
+ 06 ⏳ implementation pending [ClaudeCode]
42
+ 07 ⏳ refactoring pending [Codex]
43
+ 08 ⏳ qa pending [ClaudeCode]
44
+ 09 ⏳ testing pending [Codex]
45
+ 10 ⏳ deployment pending [ClaudeCode]
46
46
 
47
47
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
48
- 체크포인트: 2 | 마지막 핸드오프: 03-planning
48
+ Checkpoints: 2 | Last handoff: 03-planning
49
49
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
50
50
  ```
51
51
 
52
- ## 상태 아이콘
52
+ ## Status Icons
53
53
 
54
- | 아이콘 | 의미 |
55
- |--------|------|
56
- | ✅ | 완료 (completed) |
57
- | 🔄 | 진행중 (in_progress) |
58
- | ⏳ | 대기 (pending) |
59
- | ❌ | 실패 (failed) |
60
- | ⏸️ | 일시중지 (paused) |
54
+ | Icon | Meaning |
55
+ |------|---------|
56
+ | ✅ | Completed |
57
+ | 🔄 | In Progress |
58
+ | ⏳ | Pending |
59
+ | ❌ | Failed |
60
+ | ⏸️ | Paused |
61
61
 
62
- ## 옵션
62
+ ## Options
63
63
 
64
- | 옵션 | 설명 |
65
- |------|------|
66
- | `--json` | JSON 형식으로 출력 |
67
- | `--brief` | 간략한 상태만 출력 |
64
+ | Option | Description |
65
+ |--------|-------------|
66
+ | `--json` | Output in JSON format |
67
+ | `--brief` | Output brief single-line status only |
68
68
 
69
- ## 사용 사례
69
+ ## Use Cases
70
70
 
71
- - 세션 시작 현재 상태 파악
72
- - 작업 진행 상황 확인
73
- - 팀원에게 현재 상태 공유
71
+ - Check current status when starting new session
72
+ - Verify progress before starting work
73
+ - Share current status with team members
@@ -1,61 +1,61 @@
1
1
  # /tasks
2
2
 
3
- 05-task-management 스테이지를 바로 시작합니다.
3
+ Start the 05-task-management stage directly.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /tasks
8
8
  ```
9
9
 
10
- ## 스테이지 정보
10
+ ## Stage Information
11
11
 
12
- | 항목 | |
13
- |------|-----|
14
- | 스테이지 | 05-task-management |
15
- | AI 모델 | ClaudeCode |
16
- | 실행 모드 | Plan Mode |
17
- | 체크포인트 | 선택 |
12
+ | Item | Value |
13
+ |------|-------|
14
+ | Stage | 05-task-management |
15
+ | AI Model | ClaudeCode |
16
+ | Execution Mode | Plan Mode |
17
+ | Checkpoint | Optional |
18
18
 
19
- ## 동작
19
+ ## Actions
20
20
 
21
- 1. **전제 조건 확인**
22
- - 04-ui-ux 완료 여부
23
- - wireframes/, component-spec.md 존재
21
+ 1. **Prerequisite Check**
22
+ - 04-ui-ux completion status
23
+ - wireframes/, component-spec.md exist
24
24
 
25
- 2. **태스크 분해**
26
- - PRD 기반 태스크 추출
27
- - 의존성 분석
28
- - 스프린트 계획
25
+ 2. **Task Breakdown**
26
+ - Extract tasks from PRD
27
+ - Dependency analysis
28
+ - Sprint planning
29
29
 
30
- 3. **산출물 생성**
31
- - tasks.json - 태스크 목록 (구조화)
32
- - sprints.md - 스프린트 계획
30
+ 3. **Output Generation**
31
+ - tasks.json - Task list (structured)
32
+ - sprints.md - Sprint plan
33
33
 
34
- ## 실행
34
+ ## Execution
35
35
 
36
36
  ```bash
37
37
  scripts/run-stage.sh 05-task-management "$ARGUMENTS"
38
38
  ```
39
39
 
40
- ## 입력 파일
40
+ ## Input Files
41
41
 
42
42
  - `stages/03-planning/outputs/PRD.md`
43
43
  - `stages/04-ui-ux/outputs/wireframes/`
44
44
  - `stages/04-ui-ux/outputs/component-spec.md`
45
45
 
46
- ## 출력 파일
46
+ ## Output Files
47
47
 
48
48
  - `stages/05-task-management/outputs/tasks.json`
49
49
  - `stages/05-task-management/outputs/sprints.md`
50
50
 
51
- ## tasks.json 구조
51
+ ## tasks.json Structure
52
52
 
53
53
  ```json
54
54
  {
55
55
  "tasks": [
56
56
  {
57
57
  "id": "T001",
58
- "title": "사용자 인증 구현",
58
+ "title": "Implement user authentication",
59
59
  "sprint": 1,
60
60
  "priority": "high",
61
61
  "dependencies": [],
@@ -66,15 +66,15 @@ scripts/run-stage.sh 05-task-management "$ARGUMENTS"
66
66
  }
67
67
  ```
68
68
 
69
- ## 관련 명령어
69
+ ## Related Commands
70
70
 
71
- - `/run-stage 05` - 전제조건 확인 시작
72
- - `/next` - 다음 스테이지 (06-implementation)
73
- - `/ui-ux` - 이전 스테이지
74
- - `/implement` - 구현 바로 시작
71
+ - `/run-stage 05` - Start after prerequisite check
72
+ - `/next` - Next stage (06-implementation)
73
+ - `/ui-ux` - Previous stage
74
+ - `/implement` - Start implementation directly
75
75
 
76
76
  ## Tips
77
77
 
78
- - 태스크는 4시간 이내로 분해
79
- - 의존성 명확히 표시
80
- - 스프린트당 5-7 태스크 권장
78
+ - Break tasks into 4-hour or less units
79
+ - Mark dependencies clearly
80
+ - Recommend 5-7 tasks per sprint
@@ -1,93 +1,93 @@
1
1
  # /test
2
2
 
3
- 09-testing 스테이지를 바로 시작합니다.
3
+ Start the 09-testing stage directly.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /test [test-type]
8
8
  ```
9
9
 
10
- ## 스테이지 정보
10
+ ## Stage Information
11
11
 
12
- | 항목 | |
13
- |------|-----|
14
- | 스테이지 | 09-testing |
15
- | AI 모델 | Codex |
16
- | 실행 모드 | Sandbox + Playwright MCP |
17
- | 체크포인트 | 선택 |
12
+ | Item | Value |
13
+ |------|-------|
14
+ | Stage | 09-testing |
15
+ | AI Model | Codex |
16
+ | Execution Mode | Sandbox + Playwright MCP |
17
+ | Checkpoint | Optional |
18
18
 
19
- ## 동작
19
+ ## Actions
20
20
 
21
- 1. **전제 조건 확인**
22
- - 08-qa 완료 여부
23
- - qa-report.md 존재
21
+ 1. **Prerequisite Check**
22
+ - 08-qa completion status
23
+ - qa-report.md exists
24
24
 
25
- 2. **테스팅 실행**
26
- - 통합 테스트
27
- - E2E 테스트 (Playwright)
28
- - 회귀 테스트
25
+ 2. **Execute Testing**
26
+ - Integration tests
27
+ - E2E tests (Playwright)
28
+ - Regression tests
29
29
 
30
- 3. **산출물 생성**
31
- - test-results.md - 테스트 결과
32
- - coverage-report.html - 커버리지
30
+ 3. **Output Generation**
31
+ - test-results.md - Test results
32
+ - coverage-report.html - Coverage
33
33
 
34
- ## 실행
34
+ ## Execution
35
35
 
36
36
  ```bash
37
37
  scripts/run-stage.sh 09-testing "$ARGUMENTS"
38
38
  ```
39
39
 
40
- ## 입력 파일
40
+ ## Input Files
41
41
 
42
42
  - `stages/06-implementation/outputs/src/`
43
43
  - `stages/06-implementation/outputs/tests/`
44
44
  - `stages/08-qa/outputs/qa-report.md`
45
45
 
46
- ## 출력 파일
46
+ ## Output Files
47
47
 
48
48
  - `stages/09-testing/outputs/test-results.md`
49
49
  - `stages/09-testing/outputs/e2e-results/`
50
50
  - `stages/09-testing/outputs/coverage/`
51
51
 
52
- ## 테스트 유형
52
+ ## Test Types
53
53
 
54
- | 유형 | 도구 | 설명 |
55
- |------|------|------|
56
- | Unit | Jest/Vitest | 단위 테스트 |
57
- | Integration | Testing Library | 통합 테스트 |
58
- | E2E | Playwright | 엔드투엔드 |
59
- | Visual | Playwright | 스크린샷 비교 |
54
+ | Type | Tool | Description |
55
+ |------|------|-------------|
56
+ | Unit | Jest/Vitest | Unit tests |
57
+ | Integration | Testing Library | Integration tests |
58
+ | E2E | Playwright | End-to-end |
59
+ | Visual | Playwright | Screenshot comparison |
60
60
 
61
- ## Playwright MCP 활용
61
+ ## Playwright MCP Usage
62
62
 
63
63
  ```bash
64
- # 브라우저 스냅샷
64
+ # Browser snapshot
65
65
  mcp__playwright__browser_snapshot
66
66
 
67
- # 스크린샷
67
+ # Screenshot
68
68
  mcp__playwright__browser_take_screenshot
69
69
 
70
- # 테스트
70
+ # Form testing
71
71
  mcp__playwright__browser_fill_form
72
72
  ```
73
73
 
74
- ## 관련 명령어
74
+ ## Related Commands
75
75
 
76
- - `/run-stage 09` - 전제조건 확인 시작
77
- - `/next` - 다음 스테이지 (10-deployment)
78
- - `/qa` - 이전 스테이지
79
- - `/deploy` - 배포 바로 시작
76
+ - `/run-stage 09` - Start after prerequisite check
77
+ - `/next` - Next stage (10-deployment)
78
+ - `/qa` - Previous stage
79
+ - `/deploy` - Start deployment directly
80
80
 
81
- ## 커버리지 목표
81
+ ## Coverage Targets
82
82
 
83
- | 메트릭 | 목표 |
84
- |--------|------|
83
+ | Metric | Target |
84
+ |--------|--------|
85
85
  | Line | ≥ 80% |
86
86
  | Branch | ≥ 70% |
87
87
  | Function | ≥ 80% |
88
88
 
89
89
  ## Tips
90
90
 
91
- - E2E 핵심 플로우 중심
92
- - 실패 스크린샷 자동 저장
93
- - CI에서 headless 모드 실행
91
+ - E2E focuses on critical flows
92
+ - Auto-save screenshots on failure
93
+ - Run headless mode in CI
@@ -1,61 +1,61 @@
1
1
  # /ui-ux
2
2
 
3
- 04-ui-ux 스테이지를 바로 시작합니다.
3
+ Start the 04-ui-ux stage directly.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /ui-ux
8
8
  ```
9
9
 
10
- ## 스테이지 정보
10
+ ## Stage Information
11
11
 
12
- | 항목 | |
13
- |------|-----|
14
- | 스테이지 | 04-ui-ux |
15
- | AI 모델 | Gemini |
16
- | 실행 모드 | Plan Mode |
17
- | 체크포인트 | 선택 |
12
+ | Item | Value |
13
+ |------|-------|
14
+ | Stage | 04-ui-ux |
15
+ | AI Model | Gemini |
16
+ | Execution Mode | Plan Mode |
17
+ | Checkpoint | Optional |
18
18
 
19
- ## 동작
19
+ ## Actions
20
20
 
21
- 1. **전제 조건 확인**
22
- - 03-planning 완료 여부
23
- - PRD.md 존재
21
+ 1. **Prerequisite Check**
22
+ - 03-planning completion status
23
+ - PRD.md exists
24
24
 
25
- 2. **UI/UX 설계**
26
- - 와이어프레임 설계
27
- - 컴포넌트 명세
28
- - 디자인 시스템
25
+ 2. **UI/UX Design**
26
+ - Wireframe design
27
+ - Component specification
28
+ - Design system
29
29
 
30
- 3. **산출물 생성**
31
- - wireframes/ - 와이어프레임 파일
32
- - component-spec.md - 컴포넌트 명세
33
- - design-system.md - 디자인 시스템
30
+ 3. **Output Generation**
31
+ - wireframes/ - Wireframe files
32
+ - component-spec.md - Component specification
33
+ - design-system.md - Design system
34
34
 
35
- ## 실행
35
+ ## Execution
36
36
 
37
37
  ```bash
38
38
  scripts/run-stage.sh 04-ui-ux "$ARGUMENTS"
39
39
  ```
40
40
 
41
- ## 입력 파일
41
+ ## Input Files
42
42
 
43
43
  - `stages/03-planning/outputs/PRD.md`
44
44
  - `stages/03-planning/outputs/architecture.md`
45
45
 
46
- ## 출력 파일
46
+ ## Output Files
47
47
 
48
48
  - `stages/04-ui-ux/outputs/wireframes/`
49
49
  - `stages/04-ui-ux/outputs/component-spec.md`
50
50
  - `stages/04-ui-ux/outputs/design-system.md`
51
51
 
52
- ## 관련 명령어
52
+ ## Related Commands
53
53
 
54
- - `/run-stage 04` - 전제조건 확인 시작
55
- - `/next` - 다음 스테이지 (05-task-management)
56
- - `/planning` - 이전 스테이지
54
+ - `/run-stage 04` - Start after prerequisite check
55
+ - `/next` - Next stage (05-task-management)
56
+ - `/planning` - Previous stage
57
57
 
58
- ## 도구 활용
58
+ ## Tool Utilization
59
59
 
60
- - Figma MCP - 디자인 컨텍스트 (설정 )
61
- - 21st Magic - UI 컴포넌트 영감
60
+ - Figma MCP - Design context (if configured)
61
+ - 21st Magic - UI component inspiration