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
@@ -1,34 +1,34 @@
1
1
  # MCP Fallback Configuration
2
- # claude-symphony MCP 도구 폴백 설정 (Issue #3 해결)
2
+ # claude-symphony MCP tool fallback settings (Issue #3 resolution)
3
3
 
4
4
  mcp_fallbacks:
5
- # 활성화 여부
5
+ # Enable/disable
6
6
  enabled: true
7
7
 
8
- # 폴백 트리거 조건
8
+ # Fallback trigger conditions
9
9
  triggers:
10
- - quota_exceeded # 할당량 초과
11
- - service_unavailable # 서비스 불가
12
- - timeout # 타임아웃
13
- - rate_limited # 요청 제한
10
+ - quota_exceeded # Quota exceeded
11
+ - service_unavailable # Service unavailable
12
+ - timeout # Timeout
13
+ - rate_limited # Rate limited
14
14
 
15
- # 검색 도구 우선순위
15
+ # Search tool priority
16
16
  search:
17
- # 코드/문서 검색
17
+ # Code/documentation search
18
18
  code_documentation:
19
19
  primary: "context7"
20
20
  fallbacks:
21
21
  - "exa"
22
22
  - "web_search"
23
23
 
24
- # 폴백 규칙
24
+ # Fallback rules
25
25
  rules:
26
26
  on_quota_exceeded: "use_fallback"
27
27
  on_timeout: "retry_then_fallback"
28
28
  retry_count: 2
29
29
  retry_delay_ms: 1000
30
30
 
31
- # 검색
31
+ # Web search
32
32
  web_search:
33
33
  primary: "exa"
34
34
  fallbacks:
@@ -38,13 +38,13 @@ search:
38
38
  on_quota_exceeded: "use_fallback"
39
39
  on_timeout: "use_fallback"
40
40
 
41
- # Reddit/커뮤니티 검색
41
+ # Reddit/community search
42
42
  community:
43
43
  primary: "exa"
44
44
  fallbacks:
45
45
  - "web_search"
46
46
 
47
- # 커뮤니티 검색 전용 설정
47
+ # Community search specific settings
48
48
  settings:
49
49
  include_domains:
50
50
  - "reddit.com"
@@ -52,7 +52,7 @@ search:
52
52
  - "dev.to"
53
53
  - "stackoverflow.com"
54
54
 
55
- # 브라우저/웹 도구 우선순위
55
+ # Browser/web tool priority
56
56
  browser:
57
57
  primary: "playwright"
58
58
  fallbacks:
@@ -61,146 +61,146 @@ browser:
61
61
  rules:
62
62
  on_connection_failed: "use_fallback"
63
63
 
64
- # Notion 도구 (폴백 없음)
64
+ # Notion tool (no fallback)
65
65
  notion:
66
66
  primary: "notion"
67
67
  fallbacks: []
68
68
 
69
- # Notion 폴백 불가, 에러 알림만
69
+ # Notion has no fallback, notify only on error
70
70
  on_error:
71
71
  action: "notify_user"
72
- message: "Notion 연결 실패. MCP 설정을 확인하세요."
72
+ message: "Notion connection failed. Check MCP settings."
73
73
 
74
- # Figma 도구 (폴백 없음)
74
+ # Figma tool (no fallback)
75
75
  figma:
76
76
  primary: "figma-dev-mode"
77
77
  fallbacks: []
78
78
 
79
79
  on_error:
80
80
  action: "notify_user"
81
- message: "Figma 연결 실패. Dev Mode MCP 설정을 확인하세요."
81
+ message: "Figma connection failed. Check Dev Mode MCP settings."
82
82
 
83
- # 스테이지별 MCP 우선순위
83
+ # Stage-specific MCP priority
84
84
  stage_preferences:
85
85
  "01-brainstorm":
86
- search: ["exa", "web_search"] # 리서치 중심
87
- reason: "커뮤니티/아이디어 검색에 Exa 우선"
86
+ search: ["exa", "web_search"] # Web research focused
87
+ reason: "Exa preferred for community/idea search"
88
88
 
89
89
  "02-research":
90
90
  search: ["context7", "exa", "web_search"]
91
- reason: "기술 문서 검색에 Context7 우선"
91
+ reason: "Context7 preferred for technical documentation search"
92
92
 
93
93
  "03-planning":
94
94
  search: ["context7", "exa"]
95
- reason: "아키텍처 패턴/문서 검색"
95
+ reason: "Architecture pattern/documentation search"
96
96
 
97
97
  "04-ui-ux":
98
98
  browser: ["figma-dev-mode", "playwright"]
99
99
  search: ["exa", "web_search"]
100
- reason: "UI 레퍼런스 검색"
100
+ reason: "UI reference search"
101
101
 
102
102
  "06-implementation":
103
103
  search: ["context7"]
104
- reason: "라이브러리 문서 검색에 Context7 필수"
104
+ reason: "Context7 required for library documentation search"
105
105
 
106
106
  "09-testing":
107
107
  browser: ["playwright", "chrome-devtools"]
108
- reason: "E2E 테스트에 Playwright 필수"
108
+ reason: "Playwright required for E2E testing"
109
109
 
110
- # 상태 모니터링
110
+ # Status monitoring
111
111
  monitoring:
112
- # 할당량 경고
112
+ # Quota warning
113
113
  quota_warning:
114
114
  threshold_percent: 80
115
115
  action: "warn_user"
116
116
 
117
- # 사용량 로깅
117
+ # Usage logging
118
118
  usage_logging:
119
119
  enabled: true
120
120
  log_file: "state/mcp_usage.log"
121
121
 
122
- # 에러 처리
122
+ # Error handling
123
123
  error_handling:
124
- # 모든 폴백 실패
124
+ # When all fallbacks fail
125
125
  all_fallbacks_failed:
126
126
  action: "notify_user_and_continue"
127
127
  message: |
128
- ⚠️ 모든 MCP 검색 도구가 실패했습니다.
129
- - 수동 검색을 진행하거나
130
- - MCP 서버 상태를 확인하세요.
128
+ All MCP search tools have failed.
129
+ - Proceed with manual search or
130
+ - Check MCP server status.
131
131
 
132
- # 복구 불가 에러
132
+ # Fatal error
133
133
  fatal_error:
134
134
  action: "save_state_and_notify"
135
- message: "MCP 치명적 오류. 상태를 저장하고 세션을 재시작하세요."
135
+ message: "MCP fatal error. Save state and restart session."
136
136
 
137
137
  # =============================================================================
138
- # AI 모델 폴백 설정 (외부 AI: Gemini, Codex)
138
+ # AI Model Fallback Settings (External AI: Gemini, Codex)
139
139
  # =============================================================================
140
140
  ai_model_fallbacks:
141
141
  enabled: true
142
- description: "외부 AI CLI 실패 ClaudeCode로 자동 폴백"
142
+ description: "Auto-fallback to ClaudeCode when external AI CLI fails"
143
143
 
144
- # 폴백 트리거 조건
144
+ # Fallback trigger conditions
145
145
  triggers:
146
- - cli_not_installed # CLI 미설치
147
- - authentication_failed # 인증 실패
148
- - api_timeout # API 타임아웃
149
- - rate_limited # 요청 제한
150
- - service_error # 서비스 오류
146
+ - cli_not_installed # CLI not installed
147
+ - authentication_failed # Authentication failed
148
+ - api_timeout # API timeout
149
+ - rate_limited # Rate limited
150
+ - service_error # Service error
151
151
 
152
- # 스테이지별 AI 폴백 설정
152
+ # Stage-specific AI fallback settings
153
153
  stage_fallbacks:
154
154
  "01-brainstorm":
155
155
  primary: "gemini"
156
156
  fallback: "claudecode"
157
- fallback_reason_template: "Gemini CLI 호출 실패: {{ERROR}} - ClaudeCode로 폴백"
157
+ fallback_reason_template: "Gemini CLI call failed: {{ERROR}} - Fallback to ClaudeCode"
158
158
 
159
159
  "03-planning":
160
160
  primary: "gemini"
161
161
  fallback: "claudecode"
162
- fallback_reason_template: "Gemini CLI 호출 실패: {{ERROR}} - ClaudeCode로 폴백"
162
+ fallback_reason_template: "Gemini CLI call failed: {{ERROR}} - Fallback to ClaudeCode"
163
163
 
164
164
  "04-ui-ux":
165
165
  primary: "gemini"
166
166
  fallback: "claudecode"
167
- fallback_reason_template: "Gemini CLI 호출 실패: {{ERROR}} - ClaudeCode로 폴백"
167
+ fallback_reason_template: "Gemini CLI call failed: {{ERROR}} - Fallback to ClaudeCode"
168
168
 
169
169
  "07-refactoring":
170
170
  primary: "codex"
171
171
  fallback: "claudecode"
172
- fallback_reason_template: "Codex CLI 호출 실패: {{ERROR}} - ClaudeCode로 폴백"
172
+ fallback_reason_template: "Codex CLI call failed: {{ERROR}} - Fallback to ClaudeCode"
173
173
 
174
174
  "09-testing":
175
175
  primary: "codex"
176
176
  fallback: "claudecode"
177
- fallback_reason_template: "Codex CLI 호출 실패: {{ERROR}} - ClaudeCode로 폴백"
177
+ fallback_reason_template: "Codex CLI call failed: {{ERROR}} - Fallback to ClaudeCode"
178
178
 
179
- # 폴백 동작 설정
179
+ # Fallback behavior settings
180
180
  behavior:
181
- # 자동 폴백 활성화
181
+ # Auto fallback enabled
182
182
  auto_fallback: true
183
183
 
184
- # 재시도 설정
184
+ # Retry settings
185
185
  retry:
186
186
  enabled: true
187
187
  max_attempts: 2
188
188
  delay_ms: 3000
189
189
 
190
- # 폴백 경고 표시
190
+ # Show warning before fallback
191
191
  show_warning_before_fallback: true
192
192
  warning_message: |
193
- ⚠️ 외부 AI {{PRIMARY_MODEL}} 호출 실패
194
- - 오류: {{ERROR_MESSAGE}}
195
- - 폴백: {{FALLBACK_MODEL}}로 계속 진행
193
+ External AI {{PRIMARY_MODEL}} call failed
194
+ - Error: {{ERROR_MESSAGE}}
195
+ - Fallback: Continuing with {{FALLBACK_MODEL}}
196
196
 
197
- # 폴백 기록 (HANDOFF.md에 포함)
197
+ # Fallback logging (included in HANDOFF.md)
198
198
  logging:
199
199
  enabled: true
200
200
  log_file: "state/ai_fallback.log"
201
201
  include_in_handoff: true
202
202
 
203
- # 기록 형식
203
+ # Recording format
204
204
  format:
205
205
  timestamp: true
206
206
  stage: true
@@ -209,44 +209,44 @@ ai_model_fallbacks:
209
209
  error_reason: true
210
210
  result: true
211
211
 
212
- # HANDOFF.md 폴백 섹션 템플릿
212
+ # HANDOFF.md fallback section template
213
213
  handoff_template: |
214
- ### 폴백 기록
214
+ ### Fallback Log
215
215
 
216
- | 시도한 AI | 실패 시간 | 오류 | 폴백 AI | 결과 |
217
- |----------|----------|------|---------|------|
216
+ | Attempted AI | Failure Time | Error | Fallback AI | Result |
217
+ |--------------|--------------|-------|-------------|--------|
218
218
  {{#each FALLBACK_EVENTS}}
219
219
  | {{this.attempted_model}} | {{this.failure_time}} | {{this.error}} | {{this.fallback_model}} | {{this.result}} |
220
220
  {{/each}}
221
221
 
222
- # 사전 점검 스크립트 통합
222
+ # Pre-run check script integration
223
223
  pre_run_check:
224
224
  enabled: true
225
225
  script: "scripts/pre-run-check.sh"
226
226
 
227
- # 점검 항목
227
+ # Check items
228
228
  checks:
229
229
  - name: "gemini_cli"
230
230
  command: "which gemini"
231
231
  on_failure: "warn"
232
- message: "Gemini CLI 미설치 - 01, 03, 04 스테이지에서 ClaudeCode 폴백 예상"
232
+ message: "Gemini CLI not installed - ClaudeCode fallback expected for stages 01, 03, 04"
233
233
 
234
234
  - name: "codex_cli"
235
235
  command: "which codex"
236
236
  on_failure: "warn"
237
- message: "Codex CLI 미설치 - 07, 09 스테이지에서 ClaudeCode 폴백 예상"
237
+ message: "Codex CLI not installed - ClaudeCode fallback expected for stages 07, 09"
238
238
 
239
239
  - name: "tmux"
240
240
  command: "which tmux"
241
241
  on_failure: "error"
242
- message: "tmux 미설치 - 외부 AI 호출 불가"
242
+ message: "tmux not installed - External AI calls not possible"
243
243
 
244
244
  - name: "gemini_wrapper"
245
245
  command: "test -x scripts/gemini-wrapper.sh"
246
246
  on_failure: "warn"
247
- message: "gemini-wrapper.sh 실행 불가"
247
+ message: "gemini-wrapper.sh not executable"
248
248
 
249
249
  - name: "codex_wrapper"
250
250
  command: "test -x scripts/codex-wrapper.sh"
251
251
  on_failure: "warn"
252
- message: "codex-wrapper.sh 실행 불가"
252
+ message: "codex-wrapper.sh not executable"
@@ -3,22 +3,22 @@
3
3
 
4
4
  memory_integration:
5
5
  enabled: true
6
- description: "AI 메모리 시스템 통합 컨텍스트 동기화"
6
+ description: "AI memory system integration and context synchronization"
7
7
 
8
- # 지원 메모리 프로바이더
8
+ # Supported memory providers
9
9
  providers:
10
10
  claude_mem:
11
11
  enabled: true
12
- description: "Claude Memory MCP 서버 통합"
12
+ description: "Claude Memory MCP server integration"
13
13
 
14
- # 동기화 트리거
14
+ # Sync triggers
15
15
  sync_on:
16
16
  - "stage_complete"
17
17
  - "session_end"
18
18
  - "checkpoint_create"
19
19
  - "critical_decision"
20
20
 
21
- # 저장 설정
21
+ # Storage settings
22
22
  storage:
23
23
  project_prefix: "claude-symphony"
24
24
  observation_types:
@@ -27,17 +27,17 @@ memory_integration:
27
27
  - "feature"
28
28
  - "bugfix"
29
29
 
30
- # 검색 설정
30
+ # Search settings
31
31
  search:
32
32
  default_limit: 10
33
33
  include_timeline: true
34
34
 
35
- # 향후 확장용 다른 프로바이더
35
+ # Other providers for future extension
36
36
  external_memory:
37
37
  enabled: false
38
38
  provider: null
39
39
 
40
- # HANDOFF-메모리 동기화
40
+ # HANDOFF-memory synchronization
41
41
  handoff_memory_sync:
42
42
  on_stage_complete:
43
43
  - action: "save_to_memory"
@@ -88,10 +88,10 @@ memory_integration:
88
88
  days: 7
89
89
  inject_to: "session_context"
90
90
 
91
- # 컨텍스트 주입 설정
91
+ # Context injection settings
92
92
  context_injection:
93
93
  enabled: true
94
- description: "메모리에서 관련 컨텍스트 자동 주입"
94
+ description: "Auto-inject relevant context from memory"
95
95
 
96
96
  triggers:
97
97
  on_task_start:
@@ -115,7 +115,7 @@ memory_integration:
115
115
  - **Date**: {{date}}
116
116
  > {{content}}
117
117
 
118
- # 메모리 정리 정책
118
+ # Memory cleanup policy
119
119
  cleanup_policy:
120
120
  auto_cleanup: true
121
121
 
@@ -129,14 +129,14 @@ memory_integration:
129
129
  enabled: true
130
130
  similarity_threshold: 0.85
131
131
 
132
- # 세션 컨텍스트 복구
132
+ # Session context recovery
133
133
  session_recovery:
134
134
  enabled: true
135
- description: "이전 세션 컨텍스트 자동 복구"
135
+ description: "Automatic previous session context recovery"
136
136
 
137
137
  on_session_start:
138
138
  auto_load: true
139
- prompt_user: false # true 사용자에게 확인
139
+ prompt_user: false # true to ask user for confirmation
140
140
 
141
141
  load_order:
142
142
  - last_handoff
@@ -146,22 +146,22 @@ session_recovery:
146
146
  recovery_prompt:
147
147
  enabled: true
148
148
  template: |
149
- ## 이전 세션 컨텍스트 복구됨
149
+ ## Previous Session Context Recovered
150
150
 
151
- **마지막 스테이지**: {{last_stage}}
152
- **마지막 작업**: {{last_task}}
153
- **상태**: {{status}}
151
+ **Last Stage**: {{last_stage}}
152
+ **Last Task**: {{last_task}}
153
+ **Status**: {{status}}
154
154
 
155
- ### 핵심 컨텍스트
155
+ ### Key Context
156
156
  {{key_context}}
157
157
 
158
- ### 다음 단계
158
+ ### Next Steps
159
159
  {{next_steps}}
160
160
 
161
- # 크로스 스테이지 학습
161
+ # Cross-stage learning
162
162
  cross_stage_learning:
163
163
  enabled: true
164
- description: "스테이지 학습 패턴 인식"
164
+ description: "Inter-stage learning and pattern recognition"
165
165
 
166
166
  patterns:
167
167
  track:
@@ -182,7 +182,7 @@ cross_stage_learning:
182
182
  - time_taken
183
183
  - iterations_needed
184
184
 
185
- # 통합 검증
185
+ # Integration verification
186
186
  integration_checks:
187
187
  on_startup:
188
188
  - check_memory_connection
@@ -1,10 +1,10 @@
1
1
  # AI Model Enforcement Configuration
2
- # claude-symphony AI 모델 역할 분담 강제 실행 설정
2
+ # claude-symphony AI model role distribution and enforcement settings
3
3
 
4
4
  model_enforcement:
5
5
  enabled: true
6
6
 
7
- # ClaudeCode 직접 처리 가능 (외부 AI 호출 불필요)
7
+ # ClaudeCode direct handling (no external AI call needed)
8
8
  claudecode_direct:
9
9
  operations:
10
10
  - "npm run lint"
@@ -15,38 +15,38 @@ model_enforcement:
15
15
  - "git add"
16
16
  - "git commit"
17
17
  - "ls/cat/find"
18
- - "파일 읽기"
19
- - "간단한 수정 (< 10)"
20
- - "설정 파일 편집"
21
- - "문서 작성/수정"
18
+ - "File reading"
19
+ - "Simple modifications (< 10 lines)"
20
+ - "Config file editing"
21
+ - "Documentation writing/editing"
22
22
 
23
23
  characteristics:
24
24
  - max_lines_change: 10
25
25
  - complexity: "low"
26
26
  - no_architectural_impact: true
27
27
 
28
- # 외부 AI 강제 호출 필요
28
+ # External AI call required
29
29
  external_ai_required:
30
- # Gemini 필수 태스크
30
+ # Gemini required tasks
31
31
  gemini_tasks:
32
- - "발산적 아이디어 생성"
33
- - "창의적 브레인스토밍"
34
- - " 리서치 (Reddit, HackerNews)"
35
- - "시장 조사"
36
- - "사용자 페르소나 생성"
37
- - "UI/UX 디자인 아이디어"
38
-
39
- # Codex 필수 태스크
32
+ - "Divergent idea generation"
33
+ - "Creative brainstorming"
34
+ - "Web research (Reddit, HackerNews)"
35
+ - "Market research"
36
+ - "User persona creation"
37
+ - "UI/UX design ideas"
38
+
39
+ # Codex required tasks
40
40
  codex_tasks:
41
- - "코드 리팩토링 (> 10)"
42
- - "성능 최적화"
43
- - "복잡한 버그 수정"
44
- - "아키텍처 개선"
45
- - "디자인 패턴 적용"
46
- - "테스트 코드 생성"
47
- - "E2E 테스트 작성"
48
-
49
- # 스테이지별 자동 호출 설정
41
+ - "Code refactoring (> 10 lines)"
42
+ - "Performance optimization"
43
+ - "Complex bug fixes"
44
+ - "Architecture improvements"
45
+ - "Design pattern application"
46
+ - "Test code generation"
47
+ - "E2E test writing"
48
+
49
+ # Stage-specific auto-invoke settings
50
50
  stage_auto_invoke:
51
51
  "01-brainstorm":
52
52
  model: "gemini"
@@ -85,57 +85,57 @@ stage_auto_invoke:
85
85
  wrapper: "scripts/codex-wrapper.sh"
86
86
  flags: "--full-auto"
87
87
 
88
- # 역할 분담 가이드라인
88
+ # Role distribution guidelines
89
89
  role_guidelines:
90
90
  claudecode:
91
91
  strengths:
92
- - "파일 시스템 조작"
93
- - "빌드/테스트 실행"
94
- - "Git 작업"
95
- - "문서 구조화"
96
- - "코드 리뷰 (읽기)"
92
+ - "File system operations"
93
+ - "Build/test execution"
94
+ - "Git operations"
95
+ - "Documentation structuring"
96
+ - "Code review (reading)"
97
97
  avoid:
98
- - "대규모 코드 생성"
99
- - "창의적 아이디어 요청"
100
- - " 리서치 기반 작업"
98
+ - "Large-scale code generation"
99
+ - "Creative idea requests"
100
+ - "Web research-based tasks"
101
101
 
102
102
  gemini:
103
103
  strengths:
104
- - "창의적 아이디어"
105
- - " 리서치"
106
- - "시장 분석"
107
- - "UI/UX 컨셉"
104
+ - "Creative ideas"
105
+ - "Web research"
106
+ - "Market analysis"
107
+ - "UI/UX concepts"
108
108
  avoid:
109
- - "코드 작성/수정"
110
- - "파일 시스템 조작"
111
- - "Git 작업"
109
+ - "Code writing/editing"
110
+ - "File system operations"
111
+ - "Git operations"
112
112
 
113
113
  codex:
114
114
  strengths:
115
- - "코드 작성/수정"
116
- - "리팩토링"
117
- - "테스트 작성"
118
- - "버그 수정"
115
+ - "Code writing/editing"
116
+ - "Refactoring"
117
+ - "Test writing"
118
+ - "Bug fixing"
119
119
  avoid:
120
- - "창의적 아이디어"
121
- - " 리서치"
122
- - "문서 작성"
120
+ - "Creative ideas"
121
+ - "Web research"
122
+ - "Documentation writing"
123
123
 
124
- # 강제 실행 검증
124
+ # Enforcement validation
125
125
  enforcement_validation:
126
126
  warn_on_violation: true
127
127
  block_on_violation: false
128
128
 
129
- # 위반 감지 규칙
129
+ # Violation detection rules
130
130
  violation_rules:
131
131
  - condition: "refactoring_without_codex"
132
132
  stage: "07-refactoring"
133
- message: "⚠️ 리팩토링 작업은 Codex 통해 수행해주세요. /codex 명령 사용"
133
+ message: "Refactoring tasks should be performed through Codex. Use /codex command"
134
134
 
135
135
  - condition: "brainstorm_without_gemini"
136
136
  stage: "01-brainstorm"
137
- message: "⚠️ 아이디어 생성은 Gemini 통해 수행해주세요. /gemini 명령 사용"
137
+ message: "Idea generation should be performed through Gemini. Use /gemini command"
138
138
 
139
139
  - condition: "large_code_change_direct"
140
140
  threshold_lines: 10
141
- message: "⚠️ 10 이상 코드 변경은 Codex 사용을 권장합니다."
141
+ message: "For code changes over 10 lines, using Codex is recommended."