claude-symphony 0.0.1 → 0.0.3

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 (150) hide show
  1. package/README.md +16 -12
  2. package/assets/claude_symphony.webp +0 -0
  3. package/assets/claude_symphony_ascii.txt +8 -0
  4. package/bin/create.js +80 -69
  5. package/package.json +3 -2
  6. package/template/.claude/commands/benchmark.md +32 -32
  7. package/template/.claude/commands/brainstorm.md +33 -33
  8. package/template/.claude/commands/checkpoint.md +42 -42
  9. package/template/.claude/commands/codex.md +52 -52
  10. package/template/.claude/commands/collaborate.md +47 -47
  11. package/template/.claude/commands/context.md +77 -77
  12. package/template/.claude/commands/deploy.md +50 -50
  13. package/template/.claude/commands/fork.md +46 -46
  14. package/template/.claude/commands/gemini.md +43 -43
  15. package/template/.claude/commands/handoff.md +42 -42
  16. package/template/.claude/commands/implement.md +42 -42
  17. package/template/.claude/commands/init-project.md +25 -25
  18. package/template/.claude/commands/next.md +67 -67
  19. package/template/.claude/commands/planning.md +38 -38
  20. package/template/.claude/commands/qa.md +47 -47
  21. package/template/.claude/commands/refactor.md +50 -50
  22. package/template/.claude/commands/research.md +31 -31
  23. package/template/.claude/commands/restore.md +53 -53
  24. package/template/.claude/commands/run-stage.md +45 -45
  25. package/template/.claude/commands/stages.md +49 -49
  26. package/template/.claude/commands/status.md +41 -41
  27. package/template/.claude/commands/tasks.md +33 -33
  28. package/template/.claude/commands/test.md +45 -45
  29. package/template/.claude/commands/ui-ux.md +31 -31
  30. package/template/.claude/commands/validate.md +81 -81
  31. package/template/.claude/hooks/ai-selector.sh +39 -39
  32. package/template/.claude/hooks/auto-checkpoint.sh +30 -30
  33. package/template/.claude/hooks/output-validator.sh +45 -45
  34. package/template/.claude/hooks/post-stage.sh +28 -28
  35. package/template/.claude/hooks/pre-stage.sh +47 -47
  36. package/template/.claude/hooks/session-start.sh +27 -27
  37. package/template/.claude/hooks/statusline.sh +24 -24
  38. package/template/.claude/hooks/stop.sh +26 -26
  39. package/template/.claude/settings.json +32 -32
  40. package/template/.claude/skills/ai-collaboration/README.md +31 -31
  41. package/template/.claude/skills/ai-collaboration/debate.md +66 -66
  42. package/template/.claude/skills/ai-collaboration/parallel.md +34 -34
  43. package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +59 -63
  44. package/template/.claude/skills/auto-checkpoint/README.md +46 -46
  45. package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +68 -72
  46. package/template/.claude/skills/auto-checkpoint/rollback.md +95 -95
  47. package/template/.claude/skills/auto-checkpoint/trigger.md +37 -37
  48. package/template/.claude/skills/context-compression/README.md +69 -69
  49. package/template/.claude/skills/context-compression/analyze.md +74 -74
  50. package/template/.claude/skills/context-compression/compress.md +103 -103
  51. package/template/.claude/skills/context-compression/prompts/compression.md +78 -78
  52. package/template/.claude/skills/output-validator/README.md +33 -33
  53. package/template/.claude/skills/output-validator/prompts/CLAUDE.md +74 -78
  54. package/template/.claude/skills/output-validator/validate.md +76 -76
  55. package/template/.claude/skills/smart-handoff/README.md +35 -35
  56. package/template/.claude/skills/smart-handoff/extract.md +42 -42
  57. package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +52 -54
  58. package/template/.claude/skills/smart-handoff/summarize.md +55 -55
  59. package/template/.claude/skills/stage-transition/README.md +50 -50
  60. package/template/.claude/skills/stage-transition/handoff-gen.md +89 -89
  61. package/template/.claude/skills/stage-transition/prompts/transition.md +74 -74
  62. package/template/.claude/skills/stage-transition/validate.md +41 -41
  63. package/template/CLAUDE.md +334 -335
  64. package/template/config/ai_benchmarking.yaml +22 -22
  65. package/template/config/ai_collaboration.yaml +18 -18
  66. package/template/config/ai_logging.yaml +50 -50
  67. package/template/config/auto_checkpoint.yaml +32 -32
  68. package/template/config/context.yaml +20 -20
  69. package/template/config/git.yaml +51 -51
  70. package/template/config/handoff_intelligence.yaml +23 -23
  71. package/template/config/mcp_fallbacks.yaml +71 -71
  72. package/template/config/memory_integration.yaml +23 -23
  73. package/template/config/model_enforcement.yaml +53 -53
  74. package/template/config/models.yaml +24 -24
  75. package/template/config/output_validation.yaml +44 -44
  76. package/template/config/pipeline.yaml +25 -25
  77. package/template/config/pipeline_forking.yaml +40 -40
  78. package/template/config/qa_logging.yaml +67 -67
  79. package/template/config/smart_rollback.yaml +48 -48
  80. package/template/config/stage_personas.yaml +154 -154
  81. package/template/config/workflow.yaml +16 -16
  82. package/template/scripts/ai-benchmark.sh +41 -41
  83. package/template/scripts/codex-wrapper.sh +32 -32
  84. package/template/scripts/context-manager.sh +136 -136
  85. package/template/scripts/create-checkpoint.sh +34 -34
  86. package/template/scripts/gemini-wrapper.sh +31 -31
  87. package/template/scripts/init-project.sh +40 -40
  88. package/template/scripts/list-stages.sh +30 -30
  89. package/template/scripts/next-stage.sh +67 -67
  90. package/template/scripts/output-validate.sh +2 -2
  91. package/template/scripts/pipeline-fork.sh +68 -68
  92. package/template/scripts/pre-run-check.sh +84 -84
  93. package/template/scripts/restore-checkpoint.sh +50 -50
  94. package/template/scripts/run-stage.sh +44 -44
  95. package/template/scripts/show-status.sh +30 -30
  96. package/template/scripts/smart-handoff.sh +70 -70
  97. package/template/stages/01-brainstorm/CLAUDE.md +70 -74
  98. package/template/stages/01-brainstorm/README.md +54 -54
  99. package/template/stages/01-brainstorm/config.yaml +18 -18
  100. package/template/stages/01-brainstorm/prompts/collaboration.md +24 -24
  101. package/template/stages/01-brainstorm/prompts/ideation.md +41 -41
  102. package/template/stages/01-brainstorm/prompts/persona.md +50 -50
  103. package/template/stages/01-brainstorm/prompts/requirements.md +55 -55
  104. package/template/stages/01-brainstorm/prompts/validation.md +28 -28
  105. package/template/stages/01-brainstorm/templates/ideas.md +47 -47
  106. package/template/stages/01-brainstorm/templates/requirements_analysis.md +61 -61
  107. package/template/stages/02-research/CLAUDE.md +72 -76
  108. package/template/stages/02-research/config.yaml +12 -12
  109. package/template/stages/02-research/prompts/collaboration.md +29 -29
  110. package/template/stages/02-research/prompts/feasibility.md +38 -38
  111. package/template/stages/02-research/prompts/market_analysis.md +29 -29
  112. package/template/stages/02-research/prompts/tech_stack.md +34 -34
  113. package/template/stages/02-research/prompts/validation.md +29 -29
  114. package/template/stages/03-planning/CLAUDE.md +88 -92
  115. package/template/stages/03-planning/config.yaml +10 -10
  116. package/template/stages/03-planning/prompts/architecture.md +43 -43
  117. package/template/stages/03-planning/prompts/collaboration.md +34 -34
  118. package/template/stages/03-planning/prompts/validation.md +34 -34
  119. package/template/stages/04-ui-ux/CLAUDE.md +68 -72
  120. package/template/stages/04-ui-ux/config.yaml +5 -5
  121. package/template/stages/04-ui-ux/prompts/collaboration.md +35 -35
  122. package/template/stages/04-ui-ux/prompts/validation.md +30 -30
  123. package/template/stages/05-task-management/CLAUDE.md +81 -85
  124. package/template/stages/05-task-management/config.yaml +17 -17
  125. package/template/stages/05-task-management/prompts/collaboration.md +30 -30
  126. package/template/stages/05-task-management/prompts/validation.md +33 -33
  127. package/template/stages/05-task-management/templates/notion_integration.md +70 -70
  128. package/template/stages/05-task-management/templates/parallel_groups.yaml +64 -64
  129. package/template/stages/05-task-management/templates/task_schema.yaml +33 -33
  130. package/template/stages/06-implementation/CLAUDE.md +117 -121
  131. package/template/stages/06-implementation/config.yaml +10 -10
  132. package/template/stages/06-implementation/prompts/collaboration.md +29 -29
  133. package/template/stages/06-implementation/prompts/validation.md +36 -36
  134. package/template/stages/07-refactoring/CLAUDE.md +120 -124
  135. package/template/stages/07-refactoring/config.yaml +11 -11
  136. package/template/stages/07-refactoring/prompts/collaboration.md +36 -36
  137. package/template/stages/07-refactoring/prompts/validation.md +40 -40
  138. package/template/stages/08-qa/CLAUDE.md +80 -84
  139. package/template/stages/08-qa/config.yaml +7 -7
  140. package/template/stages/08-qa/prompts/collaboration.md +34 -34
  141. package/template/stages/08-qa/prompts/validation.md +41 -41
  142. package/template/stages/09-testing/CLAUDE.md +86 -90
  143. package/template/stages/09-testing/config.yaml +10 -10
  144. package/template/stages/09-testing/prompts/collaboration.md +38 -38
  145. package/template/stages/09-testing/prompts/validation.md +41 -41
  146. package/template/stages/10-deployment/CLAUDE.md +86 -90
  147. package/template/stages/10-deployment/config.yaml +11 -11
  148. package/template/stages/10-deployment/prompts/collaboration.md +37 -37
  149. package/template/stages/10-deployment/prompts/validation.md +54 -54
  150. package/template/stages/10-deployment/templates/github-actions-cd.yaml +1 -1
@@ -20,12 +20,12 @@ models:
20
20
  headless: "CI/CD headless mode"
21
21
  context_limit: 200000
22
22
 
23
- # AI Specialization (신규)
23
+ # AI Specialization (new)
24
24
  strengths:
25
- - "정확한 코드 생성"
26
- - "복잡한 로직 분석"
27
- - "에러 디버깅"
28
- - "MCP 통합"
25
+ - "Accurate code generation"
26
+ - "Complex logic analysis"
27
+ - "Error debugging"
28
+ - "MCP integration"
29
29
  best_for:
30
30
  - "06-implementation"
31
31
  - "08-qa"
@@ -49,12 +49,12 @@ models:
49
49
  plan: "Plan mode with structured research"
50
50
  context_limit: 200000
51
51
 
52
- # AI Specialization (신규)
52
+ # AI Specialization (new)
53
53
  strengths:
54
- - "심층 리서치"
55
- - "문서 분석 요약"
56
- - "기술 타당성 검토"
57
- - "구조화된 보고서 작성"
54
+ - "In-depth research"
55
+ - "Document analysis and summarization"
56
+ - "Technical feasibility review"
57
+ - "Structured report writing"
58
58
  best_for:
59
59
  - "02-research"
60
60
  temperature_range:
@@ -78,12 +78,12 @@ models:
78
78
  invocation: "tmux"
79
79
  wrapper_script: "scripts/gemini-wrapper.sh"
80
80
 
81
- # AI Specialization (신규)
81
+ # AI Specialization (new)
82
82
  strengths:
83
- - "창의적 아이디어 생성"
84
- - "다양한 관점 탐색"
85
- - "빠른 아이디어 발산"
86
- - "시각적 콘텐츠 분석"
83
+ - "Creative idea generation"
84
+ - "Diverse perspective exploration"
85
+ - "Rapid idea divergence"
86
+ - "Visual content analysis"
87
87
  best_for:
88
88
  - "01-brainstorm"
89
89
  - "03-planning"
@@ -109,12 +109,12 @@ models:
109
109
  invocation: "tmux"
110
110
  wrapper_script: "scripts/codex-wrapper.sh"
111
111
 
112
- # AI Specialization (신규)
112
+ # AI Specialization (new)
113
113
  strengths:
114
- - "깊이 있는 코드 분석"
115
- - "리팩토링 최적화"
116
- - "테스트 생성"
117
- - "기술 부채 해소"
114
+ - "Deep code analysis"
115
+ - "Refactoring and optimization"
116
+ - "Test generation"
117
+ - "Technical debt resolution"
118
118
  best_for:
119
119
  - "07-refactoring"
120
120
  - "09-testing"
@@ -123,10 +123,10 @@ models:
123
123
  max: 0.6
124
124
  default: 0.5
125
125
 
126
- # 동적 모델 선택 설정 (신규)
126
+ # Dynamic model selection settings (new)
127
127
  dynamic_selection:
128
128
  enabled: true
129
- description: "태스크 특성에 따른 최적 AI 모델 자동 선택"
129
+ description: "Automatic selection of optimal AI model based on task characteristics"
130
130
 
131
131
  criteria:
132
132
  task_type:
@@ -163,9 +163,9 @@ dynamic_selection:
163
163
  min_samples: 3
164
164
 
165
165
  override_rules:
166
- # Stage assignment 우선
166
+ # Stage assignment priority
167
167
  stage_assignment_priority: true
168
- # 사용자 지정 우선
168
+ # User preference priority
169
169
  user_preference_priority: true
170
170
 
171
171
  fallback:
@@ -3,12 +3,12 @@
3
3
 
4
4
  validation:
5
5
  enabled: true
6
- description: "스테이지별 산출물 검증 품질 보증"
6
+ description: "Per-stage output verification and quality assurance"
7
7
 
8
- # 스테이지별 검증 규칙
8
+ # Per-stage validation rules
9
9
  per_stage:
10
10
  "01-brainstorm":
11
- description: "아이디어 요구사항 산출물 검증"
11
+ description: "Ideas and requirements output validation"
12
12
 
13
13
  required_outputs:
14
14
  ideas.md:
@@ -16,25 +16,25 @@ validation:
16
16
  min_size_bytes: 500
17
17
  content_checks:
18
18
  min_ideas: 5
19
- has_sections: ["아이디어 목록", "평가 기준"]
19
+ has_sections: ["Idea List", "Evaluation Criteria"]
20
20
 
21
21
  requirements_analysis.md:
22
22
  exists: true
23
23
  min_size_bytes: 1000
24
24
  content_checks:
25
25
  sections:
26
- - "기능 요구사항"
27
- - "비기능 요구사항"
26
+ - "Functional Requirements"
27
+ - "Non-Functional Requirements"
28
28
  has_priorities: true
29
29
 
30
30
  validation_commands: []
31
31
 
32
32
  quality_metrics:
33
- idea_diversity: 0.7 # 아이디어 다양성 점수
33
+ idea_diversity: 0.7 # Idea diversity score
34
34
  requirement_completeness: 0.8
35
35
 
36
36
  "02-research":
37
- description: "리서치 산출물 검증"
37
+ description: "Research output validation"
38
38
 
39
39
  required_outputs:
40
40
  tech_research.md:
@@ -48,9 +48,9 @@ validation:
48
48
  exists: true
49
49
  content_checks:
50
50
  sections:
51
- - "기술적 타당성"
52
- - "리스크 분석"
53
- - "결론"
51
+ - "Technical Feasibility"
52
+ - "Risk Analysis"
53
+ - "Conclusion"
54
54
 
55
55
  validation_commands: []
56
56
 
@@ -59,7 +59,7 @@ validation:
59
59
  analysis_depth: 0.7
60
60
 
61
61
  "03-planning":
62
- description: "계획 산출물 검증"
62
+ description: "Planning output validation"
63
63
 
64
64
  required_outputs:
65
65
  architecture.md:
@@ -68,9 +68,9 @@ validation:
68
68
  content_checks:
69
69
  has_diagrams: true
70
70
  sections:
71
- - "시스템 구조"
72
- - "컴포넌트 설계"
73
- - "데이터 흐름"
71
+ - "System Architecture"
72
+ - "Component Design"
73
+ - "Data Flow"
74
74
 
75
75
  tech_stack.md:
76
76
  exists: true
@@ -86,7 +86,7 @@ validation:
86
86
  validation_commands: []
87
87
 
88
88
  "04-ui-ux":
89
- description: "UI/UX 설계 산출물 검증"
89
+ description: "UI/UX design output validation"
90
90
 
91
91
  required_outputs:
92
92
  wireframes.md:
@@ -103,14 +103,14 @@ validation:
103
103
  exists: true
104
104
  content_checks:
105
105
  sections:
106
- - "색상"
107
- - "타이포그래피"
108
- - "컴포넌트"
106
+ - "Colors"
107
+ - "Typography"
108
+ - "Components"
109
109
 
110
110
  validation_commands: []
111
111
 
112
112
  "05-task-management":
113
- description: "태스크 관리 산출물 검증"
113
+ description: "Task management output validation"
114
114
 
115
115
  required_outputs:
116
116
  tasks.md:
@@ -128,7 +128,7 @@ validation:
128
128
  validation_commands: []
129
129
 
130
130
  "06-implementation":
131
- description: "구현 산출물 검증"
131
+ description: "Implementation output validation"
132
132
 
133
133
  required_outputs:
134
134
  "source_code/":
@@ -158,7 +158,7 @@ validation:
158
158
  type_coverage: 0.95
159
159
 
160
160
  "07-refactoring":
161
- description: "리팩토링 산출물 검증"
161
+ description: "Refactoring output validation"
162
162
 
163
163
  required_outputs:
164
164
  "refactored_code/":
@@ -169,9 +169,9 @@ validation:
169
169
  exists: true
170
170
  content_checks:
171
171
  sections:
172
- - "변경 사항"
173
- - "개선 내용"
174
- - "성능 비교"
172
+ - "Changes"
173
+ - "Improvements"
174
+ - "Performance Comparison"
175
175
 
176
176
  validation_commands:
177
177
  - name: "lint"
@@ -187,16 +187,16 @@ validation:
187
187
  no_regression: true
188
188
 
189
189
  "08-qa":
190
- description: "QA 산출물 검증"
190
+ description: "QA output validation"
191
191
 
192
192
  required_outputs:
193
193
  qa_report.md:
194
194
  exists: true
195
195
  content_checks:
196
196
  sections:
197
- - "발견된 이슈"
198
- - "해결된 이슈"
199
- - "품질 평가"
197
+ - "Issues Found"
198
+ - "Issues Resolved"
199
+ - "Quality Assessment"
200
200
 
201
201
  bug_fixes.md:
202
202
  exists: true
@@ -216,7 +216,7 @@ validation:
216
216
  bug_resolution_rate: 0.9
217
217
 
218
218
  "09-testing":
219
- description: "테스트 산출물 검증"
219
+ description: "Testing output validation"
220
220
 
221
221
  required_outputs:
222
222
  "tests/":
@@ -251,7 +251,7 @@ validation:
251
251
  all_tests_pass: true
252
252
 
253
253
  "10-deployment":
254
- description: "배포 산출물 검증"
254
+ description: "Deployment output validation"
255
255
 
256
256
  required_outputs:
257
257
  ".github/workflows/":
@@ -274,27 +274,27 @@ validation:
274
274
  ci_configured: true
275
275
  deployment_documented: true
276
276
 
277
- # 검증 프로세스
277
+ # Validation process
278
278
  validation_process:
279
279
  steps:
280
280
  - name: "check_required_files"
281
- description: "필수 파일 존재 확인"
281
+ description: "Check required files exist"
282
282
  required: true
283
283
 
284
284
  - name: "validate_file_content"
285
- description: "파일 내용 검증"
285
+ description: "Validate file content"
286
286
  required: true
287
287
 
288
288
  - name: "run_validation_commands"
289
- description: "검증 명령어 실행"
289
+ description: "Run validation commands"
290
290
  required: false
291
291
 
292
292
  - name: "calculate_quality_score"
293
- description: "품질 점수 계산"
293
+ description: "Calculate quality score"
294
294
  required: false
295
295
 
296
296
  - name: "generate_report"
297
- description: "검증 리포트 생성"
297
+ description: "Generate validation report"
298
298
  required: true
299
299
 
300
300
  on_failure:
@@ -302,7 +302,7 @@ validation_process:
302
302
  allow_override: true
303
303
  require_justification: true
304
304
 
305
- # 리포트 설정
305
+ # Report settings
306
306
  reporting:
307
307
  format: "markdown"
308
308
  output_path: "state/validations/"
@@ -316,19 +316,19 @@ reporting:
316
316
 
317
317
  severity_levels:
318
318
  error:
319
- description: "스테이지 전환 차단"
319
+ description: "Block stage transition"
320
320
  icon: "❌"
321
321
  warning:
322
- description: "경고만 표시"
322
+ description: "Show warning only"
323
323
  icon: "⚠️"
324
324
  info:
325
- description: "정보 제공"
325
+ description: "Informational"
326
326
  icon: "ℹ️"
327
327
  pass:
328
- description: "검증 통과"
328
+ description: "Validation passed"
329
329
  icon: "✅"
330
330
 
331
- # 자동 수정 제안
331
+ # Auto-fix suggestions
332
332
  auto_fix:
333
333
  enabled: true
334
334
  suggest_fixes: true
@@ -339,7 +339,7 @@ auto_fix:
339
339
  - format_errors
340
340
  - lint_errors
341
341
 
342
- # 통합 설정
342
+ # Integration settings
343
343
  integration:
344
344
  handoff:
345
345
  include_validation_status: true
@@ -9,7 +9,7 @@ pipeline:
9
9
  stages:
10
10
  - id: "01-brainstorm"
11
11
  name: "Brainstorming"
12
- description: "발산적 아이디어 생성 요구사항 탐색"
12
+ description: "Divergent idea generation and requirements exploration"
13
13
  models: ["gemini", "claudecode"]
14
14
  mode: "yolo"
15
15
  container: true
@@ -24,7 +24,7 @@ stages:
24
24
 
25
25
  - id: "02-research"
26
26
  name: "Research"
27
- description: "기술 리서치 시장 분석"
27
+ description: "Technical research and market analysis"
28
28
  models: ["claude"]
29
29
  mode: "plan"
30
30
  mcp_servers: ["firecrawl", "exa", "context7"]
@@ -39,7 +39,7 @@ stages:
39
39
 
40
40
  - id: "03-planning"
41
41
  name: "Planning"
42
- description: "시스템 아키텍처 기술 스택 결정"
42
+ description: "System architecture and tech stack decisions"
43
43
  models: ["gemini"]
44
44
  mode: "plan"
45
45
  inputs:
@@ -54,7 +54,7 @@ stages:
54
54
 
55
55
  - id: "04-ui-ux"
56
56
  name: "UI/UX Planning"
57
- description: "사용자 인터페이스 경험 설계"
57
+ description: "User interface and experience design"
58
58
  models: ["gemini"]
59
59
  mode: "plan"
60
60
  inputs:
@@ -69,7 +69,7 @@ stages:
69
69
 
70
70
  - id: "05-task-management"
71
71
  name: "Task Management"
72
- description: "태스크 분해 스프린트 계획"
72
+ description: "Task breakdown and sprint planning"
73
73
  models: ["claudecode"]
74
74
  mode: "plan"
75
75
  inputs:
@@ -84,7 +84,7 @@ stages:
84
84
 
85
85
  - id: "06-implementation"
86
86
  name: "Implementation"
87
- description: "핵심 기능 구현"
87
+ description: "Core feature implementation"
88
88
  models: ["claudecode"]
89
89
  mode: "plan_sandbox"
90
90
  sandbox: true
@@ -101,7 +101,7 @@ stages:
101
101
 
102
102
  - id: "07-refactoring"
103
103
  name: "Refactoring"
104
- description: "코드 품질 개선 최적화"
104
+ description: "Code quality improvement and optimization"
105
105
  models: ["codex"]
106
106
  mode: "deep_dive"
107
107
  inputs:
@@ -116,7 +116,7 @@ stages:
116
116
 
117
117
  - id: "08-qa"
118
118
  name: "QA"
119
- description: "품질 보증 코드 리뷰"
119
+ description: "Quality assurance and code review"
120
120
  models: ["claudecode"]
121
121
  mode: "plan_sandbox"
122
122
  sandbox: true
@@ -131,7 +131,7 @@ stages:
131
131
 
132
132
  - id: "09-testing"
133
133
  name: "Testing & E2E"
134
- description: "테스트 코드 작성 E2E 테스트"
134
+ description: "Test code writing and E2E testing"
135
135
  models: ["codex"]
136
136
  mode: "sandbox_playwright"
137
137
  sandbox: true
@@ -148,7 +148,7 @@ stages:
148
148
 
149
149
  - id: "10-deployment"
150
150
  name: "CI/CD & Deployment"
151
- description: "배포 파이프라인 설정 배포"
151
+ description: "Deployment pipeline setup and deployment"
152
152
  models: ["claudecode"]
153
153
  mode: "headless"
154
154
  inputs:
@@ -234,7 +234,7 @@ transitions:
234
234
  # Ensures tests are run at key stages to catch bugs early
235
235
  test_first_flow:
236
236
  enabled: true
237
- description: "구현/리팩토링 단계 즉시 테스트 실행으로 버그 조기 발견"
237
+ description: "Run tests immediately after implementation/refactoring stages for early bug detection"
238
238
 
239
239
  # Stages requiring tests after completion
240
240
  test_gates:
@@ -242,53 +242,53 @@ test_first_flow:
242
242
  required_tests:
243
243
  - type: "smoke"
244
244
  command: "npm run dev"
245
- description: "개발 서버 실행 확인"
245
+ description: "Verify dev server starts"
246
246
  timeout: 60
247
247
  - type: "lint"
248
248
  command: "npm run lint"
249
- description: "정적 분석"
249
+ description: "Static analysis"
250
250
  timeout: 120
251
251
  - type: "typecheck"
252
252
  command: "npm run typecheck"
253
- description: "타입 체크"
253
+ description: "Type checking"
254
254
  timeout: 120
255
255
  - type: "playwright_smoke"
256
256
  command: "npx playwright test --grep @smoke"
257
- description: "UI 기본 동작 확인"
257
+ description: "Verify basic UI functionality"
258
258
  timeout: 180
259
- optional: true # Playwright 설정 없으면 건너뜀
259
+ optional: true # Skip if Playwright not configured
260
260
  on_failure:
261
261
  action: "block_handoff"
262
- message: "테스트 실패 - 문제 해결 HANDOFF 진행"
262
+ message: "Tests failed - resolve issues before proceeding with HANDOFF"
263
263
 
264
264
  - stage: "07-refactoring"
265
265
  required_tests:
266
266
  - type: "regression"
267
267
  command: "npm run test"
268
- description: "기존 테스트 실행 (회귀 방지)"
268
+ description: "Run existing tests (regression prevention)"
269
269
  timeout: 300
270
270
  - type: "lint"
271
271
  command: "npm run lint"
272
- description: "리팩토링 코드 품질 확인"
272
+ description: "Verify code quality after refactoring"
273
273
  timeout: 120
274
274
  on_failure:
275
275
  action: "warn_and_continue"
276
- message: "회귀 테스트 실패 - 주의 필요"
276
+ message: "Regression tests failed - attention required"
277
277
 
278
278
  - stage: "08-qa"
279
279
  required_tests:
280
280
  - type: "full_test"
281
281
  command: "npm run test"
282
- description: "전체 테스트 스위트"
282
+ description: "Full test suite"
283
283
  timeout: 600
284
284
  - type: "e2e"
285
285
  command: "npx playwright test"
286
- description: "E2E 테스트"
286
+ description: "E2E tests"
287
287
  timeout: 600
288
288
  optional: true
289
289
  on_failure:
290
290
  action: "block_handoff"
291
- message: "QA 테스트 실패 - 버그 수정 필요"
291
+ message: "QA tests failed - bug fixes required"
292
292
 
293
293
  # Test result tracking
294
294
  tracking:
@@ -311,11 +311,11 @@ forking:
311
311
  fork_points:
312
312
  - stage: "03-planning"
313
313
  condition: "multiple_architectures_proposed"
314
- description: "아키텍처 대안 탐색용 분기"
314
+ description: "Fork for architecture alternative exploration"
315
315
 
316
316
  - stage: "06-implementation"
317
317
  condition: "technology_alternatives"
318
- description: "기술 스택 대안 탐색용 분기"
318
+ description: "Fork for tech stack alternative exploration"
319
319
 
320
320
  # Fork management
321
321
  management: