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
@@ -3,39 +3,39 @@
3
3
 
4
4
  pipeline_forking:
5
5
  enabled: true
6
- description: "파이프라인 분기로 다양한 접근법 동시 탐색"
6
+ description: "Explore diverse approaches simultaneously through pipeline forking"
7
7
 
8
- # 분기점 정의
8
+ # Fork point definitions
9
9
  fork_points:
10
10
  planning_stage:
11
11
  stage: "03-planning"
12
12
  condition: "multiple_architectures_proposed"
13
- description: "여러 아키텍처 제안 분기하여 각각 탐색"
13
+ description: "Fork to explore each architecture when multiple are proposed"
14
14
  auto_fork: false
15
15
  max_forks: 3
16
16
 
17
17
  implementation_stage:
18
18
  stage: "06-implementation"
19
19
  condition: "alternative_approaches"
20
- description: "구현 접근법이 여러 개일 병렬 탐색"
20
+ description: "Parallel exploration when multiple implementation approaches exist"
21
21
  auto_fork: false
22
22
  max_forks: 2
23
23
 
24
24
  refactoring_stage:
25
25
  stage: "07-refactoring"
26
26
  condition: "optimization_tradeoffs"
27
- description: "최적화 방향이 여러 개일 비교"
27
+ description: "Compare when multiple optimization directions exist"
28
28
  auto_fork: false
29
29
  max_forks: 2
30
30
 
31
- # 자동 분기 트리거
31
+ # Auto fork triggers
32
32
  auto_fork_triggers:
33
- enabled: false # 기본적으로 수동 분기
33
+ enabled: false # Manual forking by default
34
34
 
35
35
  conditions:
36
36
  confidence_threshold:
37
37
  enabled: true
38
- threshold: 0.6 # 확신도가 60% 미만일 때
38
+ threshold: 0.6 # When confidence is below 60%
39
39
  action: "suggest_fork"
40
40
 
41
41
  multiple_solutions:
@@ -51,7 +51,7 @@ pipeline_forking:
51
51
  - "breaking_change"
52
52
  action: "require_fork"
53
53
 
54
- # 분기 관리
54
+ # Fork management
55
55
  fork_management:
56
56
  max_active_forks: 3
57
57
  naming_convention: "fork_{{stage}}_{{variant}}_{{timestamp}}"
@@ -63,22 +63,22 @@ pipeline_forking:
63
63
  isolation:
64
64
  separate_state: true
65
65
  separate_outputs: true
66
- shared_inputs: true # 입력은 공유
66
+ shared_inputs: true # Inputs are shared
67
67
 
68
- # 분기 상태 추적
68
+ # Fork state tracking
69
69
  tracking:
70
70
  progress: true
71
71
  metrics: true
72
72
  comparison_points: true
73
73
 
74
- # 병합 전략
74
+ # Merge strategy
75
75
  merge_strategy:
76
76
  primary: "best_performer"
77
77
  fallback: "manual_selection"
78
78
 
79
79
  strategies:
80
80
  best_performer:
81
- description: "메트릭 기반 최고 성능 분기 선택"
81
+ description: "Select best performing fork based on metrics"
82
82
  criteria:
83
83
  - metric: "code_quality"
84
84
  weight: 0.3
@@ -90,15 +90,15 @@ pipeline_forking:
90
90
  weight: 0.2
91
91
 
92
92
  manual_selection:
93
- description: "사용자가 직접 분기 선택"
93
+ description: "User selects fork directly"
94
94
  require_justification: true
95
95
 
96
96
  cherry_pick:
97
- description: "여러 분기에서 최적 부분만 선택"
97
+ description: "Select optimal parts from multiple forks"
98
98
  supported: true
99
99
  complexity: "high"
100
100
 
101
- # 비교 설정
101
+ # Comparison settings
102
102
  comparison:
103
103
  enabled: true
104
104
 
@@ -129,46 +129,46 @@ pipeline_forking:
129
129
  - "radar_chart"
130
130
  - "bar_comparison"
131
131
 
132
- # 분기 생성 프로세스
132
+ # Fork creation process
133
133
  creation_process:
134
134
  steps:
135
135
  - name: "validate_fork_point"
136
- description: "분기점 유효성 검증"
136
+ description: "Validate fork point"
137
137
 
138
138
  - name: "create_fork_directory"
139
- description: "분기 디렉토리 생성"
139
+ description: "Create fork directory"
140
140
 
141
141
  - name: "copy_current_state"
142
- description: "현재 상태 복사"
142
+ description: "Copy current state"
143
143
 
144
144
  - name: "initialize_fork_config"
145
- description: "분기 설정 초기화"
145
+ description: "Initialize fork configuration"
146
146
 
147
147
  - name: "create_fork_handoff"
148
- description: "분기용 HANDOFF 생성"
148
+ description: "Create fork HANDOFF"
149
149
 
150
150
  - name: "register_fork"
151
- description: "분기 등록"
151
+ description: "Register fork"
152
152
 
153
153
  fork_handoff_template: |
154
154
  # Fork HANDOFF - {{fork_name}}
155
155
 
156
- ## 분기 정보
157
- - **원본 스테이지**: {{source_stage}}
158
- - **분기 이유**: {{fork_reason}}
159
- - **분기 시점**: {{timestamp}}
160
- - **탐색 방향**: {{exploration_direction}}
156
+ ## Fork Information
157
+ - **Source Stage**: {{source_stage}}
158
+ - **Fork Reason**: {{fork_reason}}
159
+ - **Fork Time**: {{timestamp}}
160
+ - **Exploration Direction**: {{exploration_direction}}
161
161
 
162
- ## 분기 목표
162
+ ## Fork Objectives
163
163
  {{objectives}}
164
164
 
165
- ## 평가 기준
165
+ ## Evaluation Criteria
166
166
  {{evaluation_criteria}}
167
167
 
168
- ## 병합 조건
168
+ ## Merge Conditions
169
169
  {{merge_conditions}}
170
170
 
171
- # 분기 실행
171
+ # Fork execution
172
172
  execution:
173
173
  parallel_execution:
174
174
  enabled: true
@@ -182,9 +182,9 @@ execution:
182
182
  - "stage_complete"
183
183
  - "milestone_reached"
184
184
 
185
- timeout_minutes: 120 # 분기 최대 실행 시간
185
+ timeout_minutes: 120 # Maximum fork execution time
186
186
 
187
- # 정리 정책
187
+ # Cleanup policy
188
188
  cleanup:
189
189
  auto_cleanup: true
190
190
 
@@ -198,25 +198,25 @@ cleanup:
198
198
  keep_abandoned: false
199
199
  retention_days: 7
200
200
 
201
- # 알림 설정
201
+ # Notification settings
202
202
  notifications:
203
203
  on_fork_create:
204
204
  enabled: true
205
- message: "파이프라인 분기 생성됨: {{fork_name}}"
205
+ message: "Pipeline fork created: {{fork_name}}"
206
206
 
207
207
  on_fork_complete:
208
208
  enabled: true
209
- message: "분기 완료: {{fork_name}} - {{status}}"
209
+ message: "Fork complete: {{fork_name}} - {{status}}"
210
210
 
211
211
  on_comparison_ready:
212
212
  enabled: true
213
- message: "분기 비교 준비 완료. {{fork_count}} 분기 비교 가능"
213
+ message: "Fork comparison ready. {{fork_count}} forks available for comparison"
214
214
 
215
215
  on_merge:
216
216
  enabled: true
217
- message: "분기 병합 완료: {{selected_fork}} 선택됨"
217
+ message: "Fork merge complete: {{selected_fork}} selected"
218
218
 
219
- # 통합 설정
219
+ # Integration settings
220
220
  integration:
221
221
  git:
222
222
  create_branches: true
@@ -1,103 +1,103 @@
1
1
  # Q&A Logging Configuration
2
- # claude-symphony 문답 자동 기록 규칙 (Q7 해결)
2
+ # claude-symphony Q&A auto-recording rules (Q7 resolution)
3
3
 
4
4
  qa_logging:
5
- # 활성화 여부
5
+ # Enable/disable
6
6
  enabled: true
7
7
 
8
- # 기록 대상 파일
8
+ # Target file for recording
9
9
  target_file: "feedback.md"
10
10
 
11
- # 백업 위치
11
+ # Backup location
12
12
  backup_dir: "state/qa_backups/"
13
13
 
14
- # 기록 트리거
14
+ # Recording triggers
15
15
  triggers:
16
- # 자동 트리거
16
+ # Automatic triggers
17
17
  automatic:
18
18
  - event: "stage_complete"
19
- description: "스테이지 완료 "
19
+ description: "On stage completion"
20
20
  priority: "high"
21
21
 
22
22
  - event: "issue_discovered"
23
- description: "새로운 이슈 발견 "
23
+ description: "On new issue discovery"
24
24
  priority: "high"
25
25
 
26
26
  - event: "process_change_request"
27
- description: "프로세스 변경 요청 "
27
+ description: "On process change request"
28
28
  priority: "medium"
29
29
 
30
30
  - event: "tool_failure"
31
- description: "도구 실패 "
31
+ description: "On tool failure"
32
32
  priority: "high"
33
33
 
34
34
  - event: "workaround_found"
35
- description: "우회 방법 발견 시"
35
+ description: "On workaround discovery"
36
36
  priority: "medium"
37
37
 
38
- # 수동 트리거 커맨드
38
+ # Manual trigger command
39
39
  manual:
40
40
  command: "/log-qa"
41
- description: "수동으로 문답 기록"
41
+ description: "Manually record Q&A"
42
42
 
43
- # 기록 형식
43
+ # Recording format
44
44
  format:
45
- # 섹션 헤더
45
+ # Section header
46
46
  section_header: "### Q{{number}}: {{title}}"
47
47
 
48
- # 기록 템플릿
48
+ # Recording template
49
49
  template: |
50
50
  ### Q{{number}}: {{title}}
51
51
 
52
- **질문**: {{question}}
52
+ **Question**: {{question}}
53
53
 
54
- **답변**: {{answer}}
54
+ **Answer**: {{answer}}
55
55
 
56
- **해결 방법**: {{solution}}
56
+ **Solution**: {{solution}}
57
57
 
58
- **향후 개선 제안**: {{suggestion}}
58
+ **Future Improvement Suggestions**: {{suggestion}}
59
59
 
60
- **관련 스테이지**: {{stage_id}}
60
+ **Related Stage**: {{stage_id}}
61
61
 
62
- **기록 일시**: {{timestamp}}
62
+ **Recorded At**: {{timestamp}}
63
63
 
64
64
  ---
65
65
 
66
- # 포함 항목
66
+ # Include items
67
67
  include:
68
- - question # 원본 질문
69
- - answer # 요약된 답변
70
- - solution # 해결 방법
71
- - suggestion # 향후 개선 제안
72
- - stage_id # 관련 스테이지
73
- - timestamp # 기록 시간
74
- - category # 카테고리
75
-
76
- # 카테고리 분류
68
+ - question # Original question
69
+ - answer # Summarized answer
70
+ - solution # Solution
71
+ - suggestion # Future improvement suggestions
72
+ - stage_id # Related stage
73
+ - timestamp # Recording time
74
+ - category # Category
75
+
76
+ # Category classification
77
77
  categories:
78
78
  - name: "workflow_improvements"
79
- description: "워크플로우 개선"
80
- keywords: ["프로세스", "단계", "순서", "자동화"]
79
+ description: "Workflow improvements"
80
+ keywords: ["process", "stage", "order", "automation"]
81
81
 
82
82
  - name: "tool_usage"
83
- description: "도구 사용법"
83
+ description: "Tool usage"
84
84
  keywords: ["MCP", "CLI", "Notion", "Git"]
85
85
 
86
86
  - name: "process_changes"
87
- description: "프로세스 변경"
88
- keywords: ["변경", "수정", "추가", "삭제"]
87
+ description: "Process changes"
88
+ keywords: ["change", "modify", "add", "delete"]
89
89
 
90
90
  - name: "bug_fixes"
91
- description: "버그 수정"
92
- keywords: ["버그", "에러", "오류", "실패"]
91
+ description: "Bug fixes"
92
+ keywords: ["bug", "error", "failure"]
93
93
 
94
94
  - name: "best_practices"
95
- description: "모범 사례"
96
- keywords: ["권장", "추천", "패턴", "규칙"]
95
+ description: "Best practices"
96
+ keywords: ["recommended", "suggestion", "pattern", "rule"]
97
97
 
98
- # 필터링 규칙
98
+ # Filtering rules
99
99
  filtering:
100
- # 포함할 항목
100
+ # Items to include
101
101
  include:
102
102
  - "workflow_improvements"
103
103
  - "tool_usage"
@@ -105,61 +105,61 @@ filtering:
105
105
  - "bug_fixes"
106
106
  - "best_practices"
107
107
 
108
- # 제외할 항목
108
+ # Items to exclude
109
109
  exclude:
110
- - "trivial_questions" # 사소한 질문
111
- - "repeated_questions" # 반복되는 질문
112
- - "off_topic" # 주제 외 질문
110
+ - "trivial_questions" # Trivial questions
111
+ - "repeated_questions" # Repeated questions
112
+ - "off_topic" # Off-topic questions
113
113
 
114
- # 제외 키워드
114
+ # Exclude keywords
115
115
  exclude_keywords:
116
- - "테스트"
117
- - "임시"
118
- - "무시"
116
+ - "test"
117
+ - "temporary"
118
+ - "ignore"
119
119
 
120
- # 자동 번호 매기기
120
+ # Auto numbering
121
121
  numbering:
122
- # 자동 번호 부여
122
+ # Auto increment
123
123
  auto_increment: true
124
124
 
125
- # 시작 번호 (기존 Q&A 이후)
126
- start_from: "auto" # feedback.md에서 마지막 번호 자동 감지
125
+ # Start number (after existing Q&A)
126
+ start_from: "auto" # Auto-detect last number from feedback.md
127
127
 
128
- # 형식
128
+ # Format
129
129
  format: "Q{{number}}"
130
130
 
131
- # 중복 감지
131
+ # Duplicate detection
132
132
  deduplication:
133
- # 활성화 여부
133
+ # Enable/disable
134
134
  enabled: true
135
135
 
136
- # 유사도 임계값 (0-1)
136
+ # Similarity threshold (0-1)
137
137
  similarity_threshold: 0.8
138
138
 
139
- # 중복 처리
139
+ # Duplicate handling
140
140
  on_duplicate: "merge" # merge | skip | ask
141
141
 
142
- # 알림 설정
142
+ # Notification settings
143
143
  notifications:
144
- # Q&A 기록 시 알림
144
+ # Notify on new Q&A record
145
145
  on_new_entry:
146
146
  enabled: true
147
- message: "📝 새로운 Q&A feedback.md 기록되었습니다: Q{{number}}"
147
+ message: "New Q&A recorded in feedback.md: Q{{number}}"
148
148
 
149
- # 일일 요약
149
+ # Daily summary
150
150
  daily_summary:
151
151
  enabled: false
152
152
  time: "18:00"
153
153
 
154
- # 내보내기 설정
154
+ # Export settings
155
155
  export:
156
- # 지원 형식
156
+ # Supported formats
157
157
  formats:
158
158
  - "markdown"
159
159
  - "json"
160
160
  - "csv"
161
161
 
162
- # 자동 내보내기
162
+ # Auto export
163
163
  auto_export:
164
164
  enabled: false
165
165
  format: "json"
@@ -3,9 +3,9 @@
3
3
 
4
4
  smart_rollback:
5
5
  enabled: true
6
- description: "지능형 롤백 제안 실행"
6
+ description: "Intelligent rollback suggestions and execution"
7
7
 
8
- # 에러 발생 롤백 제안
8
+ # Rollback suggestions on error
9
9
  suggestion:
10
10
  on_error:
11
11
  enabled: true
@@ -18,22 +18,22 @@ smart_rollback:
18
18
  analysis:
19
19
  error_patterns:
20
20
  build_failure:
21
- description: "빌드 실패"
21
+ description: "Build failure"
22
22
  common_causes: ["dependency", "syntax", "type_error"]
23
23
  suggested_scope: "file_level"
24
24
 
25
25
  test_failure:
26
- description: "테스트 실패"
26
+ description: "Test failure"
27
27
  common_causes: ["logic_error", "state_change"]
28
28
  suggested_scope: "function_level"
29
29
 
30
30
  runtime_error:
31
- description: "런타임 에러"
31
+ description: "Runtime error"
32
32
  common_causes: ["null_reference", "type_mismatch"]
33
33
  suggested_scope: "file_level"
34
34
 
35
35
  configuration_error:
36
- description: "설정 에러"
36
+ description: "Configuration error"
37
37
  common_causes: ["invalid_config", "missing_env"]
38
38
  suggested_scope: "config_only"
39
39
 
@@ -46,42 +46,42 @@ smart_rollback:
46
46
  stability: 0.4
47
47
  relevance: 0.2
48
48
 
49
- # 부분 롤백
49
+ # Partial rollback
50
50
  partial_rollback:
51
51
  enabled: true
52
- description: "전체 롤백 대신 영향 범위만 선택적 복구"
52
+ description: "Selective recovery of affected scope only instead of full rollback"
53
53
 
54
54
  granularity:
55
55
  file_level:
56
- description: "특정 파일만 롤백"
56
+ description: "Rollback specific files only"
57
57
  use_when: ["single_file_error", "isolated_change"]
58
58
 
59
59
  function_level:
60
- description: "특정 함수/메서드만 롤백"
60
+ description: "Rollback specific functions/methods only"
61
61
  use_when: ["logic_error", "refactoring_issue"]
62
62
  supported_languages: ["typescript", "javascript", "python"]
63
63
 
64
64
  stage_level:
65
- description: "특정 스테이지 전체 롤백"
65
+ description: "Rollback entire stage"
66
66
  use_when: ["major_failure", "architecture_change"]
67
67
 
68
68
  config_only:
69
- description: "설정 파일만 롤백"
69
+ description: "Rollback config files only"
70
70
  use_when: ["configuration_error"]
71
71
  patterns: ["*.yaml", "*.json", "*.env*"]
72
72
 
73
- # 의존성 분석
73
+ # Dependency analysis
74
74
  dependency_analysis:
75
75
  enabled: true
76
- description: "롤백 영향받는 파일 자동 감지"
76
+ description: "Auto-detect affected files during rollback"
77
77
 
78
78
  include_dependents: true
79
79
  max_cascade_depth: 3
80
80
 
81
- # 롤백 미리보기
81
+ # Rollback preview
82
82
  rollback_preview:
83
83
  enabled: true
84
- description: "롤백 변경사항 미리보기"
84
+ description: "Preview changes before rollback"
85
85
 
86
86
  show_diff: true
87
87
  show_impact: true
@@ -90,20 +90,20 @@ smart_rollback:
90
90
 
91
91
  require_confirmation: true
92
92
  confirmation_prompt: |
93
- ## 롤백 미리보기
93
+ ## Rollback Preview
94
94
 
95
- **대상 체크포인트**: {{checkpoint_name}}
96
- **롤백 범위**: {{scope}}
95
+ **Target Checkpoint**: {{checkpoint_name}}
96
+ **Rollback Scope**: {{scope}}
97
97
 
98
- ### 영향받는 파일 ({{file_count}})
98
+ ### Affected Files ({{file_count}} files)
99
99
  {{affected_files}}
100
100
 
101
- ### 변경사항 요약
101
+ ### Change Summary
102
102
  {{diff_summary}}
103
103
 
104
- 롤백을 실행하시겠습니까? (y/n)
104
+ Proceed with this rollback? (y/n)
105
105
 
106
- # 롤백 실행
106
+ # Rollback execution
107
107
  execution:
108
108
  pre_rollback:
109
109
  - create_backup_checkpoint
@@ -122,33 +122,33 @@ smart_rollback:
122
122
  - update_handoff
123
123
  - notify_completion
124
124
 
125
- # 실패 처리
125
+ # Failure handling
126
126
  on_failure:
127
127
  strategy: "restore_backup"
128
128
  notify: true
129
129
  log_details: true
130
130
 
131
- # 안전 장치
131
+ # Safety measures
132
132
  safety:
133
- # 롤백 불가 조건
133
+ # Rollback prevention conditions
134
134
  prevent_rollback_when:
135
135
  - uncommitted_changes: true
136
136
  - active_processes: true
137
137
  - locked_files: true
138
138
 
139
- # 확인 필요 조건
139
+ # Confirmation required conditions
140
140
  require_confirmation_when:
141
141
  - scope: "stage_level"
142
142
  - files_affected: 10
143
143
  - includes_production: true
144
144
 
145
- # 롤백 제한
145
+ # Rollback limits
146
146
  limits:
147
147
  max_rollback_stages: 2
148
148
  max_file_rollbacks: 50
149
149
  cooldown_minutes: 5
150
150
 
151
- # 롤백 히스토리
151
+ # Rollback history
152
152
  history:
153
153
  enabled: true
154
154
  storage_path: "state/rollback_history/"
@@ -163,42 +163,42 @@ history:
163
163
 
164
164
  retention_days: 30
165
165
 
166
- # 복구 가이드
166
+ # Recovery guide
167
167
  recovery_guide:
168
168
  enabled: true
169
- description: "롤백 복구 작업 안내"
169
+ description: "Recovery instructions after rollback"
170
170
 
171
171
  templates:
172
172
  after_file_rollback: |
173
- ## 파일 롤백 완료
173
+ ## File Rollback Complete
174
174
 
175
- 다음 파일이 복구되었습니다:
175
+ The following files have been restored:
176
176
  {{files}}
177
177
 
178
- ### 권장 다음 단계
179
- 1. 변경사항 확인: `git diff`
180
- 2. 테스트 실행: `npm test`
181
- 3. 필요시 수정 재커밋
178
+ ### Recommended Next Steps
179
+ 1. Review changes: `git diff`
180
+ 2. Run tests: `npm test`
181
+ 3. Modify and re-commit as needed
182
182
 
183
183
  after_stage_rollback: |
184
- ## 스테이지 롤백 완료
184
+ ## Stage Rollback Complete
185
185
 
186
- {{stage_id}} 체크포인트로 복구되었습니다.
186
+ {{stage_id}} has been restored to checkpoint.
187
187
 
188
- ### 복구 정보
189
- - 체크포인트: {{checkpoint_name}}
190
- - 복구된 파일: {{file_count}}
188
+ ### Recovery Information
189
+ - Checkpoint: {{checkpoint_name}}
190
+ - Files restored: {{file_count}}
191
191
 
192
- ### 권장 다음 단계
193
- 1. HANDOFF 확인: `stages/{{stage_id}}/HANDOFF.md`
194
- 2. 태스크 재검토
195
- 3. 스테이지 재시작
192
+ ### Recommended Next Steps
193
+ 1. Review HANDOFF: `stages/{{stage_id}}/HANDOFF.md`
194
+ 2. Review tasks
195
+ 3. Restart stage
196
196
 
197
- # 통합 설정
197
+ # Integration settings
198
198
  integration:
199
199
  git:
200
200
  auto_stash: true
201
- create_branch: false # true면 롤백용 브랜치 생성
201
+ create_branch: false # Create rollback branch if true
202
202
 
203
203
  handoff:
204
204
  update_on_rollback: true