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,20 +1,20 @@
1
1
  # Context Management Configuration
2
- # claude-symphony 컨텍스트 관리 설정
2
+ # claude-symphony context management settings
3
3
 
4
4
  context_management:
5
- # 퍼센트 기반 임계값 (남은 컨텍스트 기준)
5
+ # Percentage-based thresholds (based on remaining context)
6
6
  thresholds:
7
- warning: 60 # 60% 남으면 경고 표시
8
- action: 50 # 50% 남으면 자동 저장 + 압축 권장
9
- critical: 40 # 40% 남으면 /clear 강제 권고
7
+ warning: 60 # Display warning at 60% remaining
8
+ action: 50 # Auto-save + recommend compression at 50% remaining
9
+ critical: 40 # Force recommend /clear at 40% remaining
10
10
 
11
- # 태스크 기반 저장 주기
12
- task_save_frequency: 5 # 5개 태스크마다 자동 상태 저장
11
+ # Task-based save frequency
12
+ task_save_frequency: 5 # Auto-save state every 5 tasks
13
13
 
14
- # 예상 최대 토큰 (Claude 기준)
14
+ # Estimated max tokens (Claude basis)
15
15
  max_tokens: 200000
16
16
 
17
- # 자동 동작 설정
17
+ # Auto action settings
18
18
  auto_actions:
19
19
  on_warning:
20
20
  - display_warning_banner
@@ -28,21 +28,21 @@ auto_actions:
28
28
  on_critical:
29
29
  - force_state_save
30
30
  - generate_recovery_handoff
31
- - prompt_clear_confirmation # 사용자 확인 후 /clear 실행
31
+ - prompt_clear_confirmation # Execute /clear after user confirmation
32
32
 
33
- # 상태 저장 설정
33
+ # State saving settings
34
34
  state_saving:
35
35
  directory: "state/context"
36
36
  filename_format: "state_{timestamp}_{stage}.md"
37
37
 
38
- # 저장 트리거
38
+ # Save triggers
39
39
  triggers:
40
40
  - threshold_crossed
41
41
  - task_batch_complete
42
42
  - manual_checkpoint
43
43
  - stage_transition
44
44
 
45
- # 저장할 항목
45
+ # Items to save
46
46
  include:
47
47
  - current_stage
48
48
  - progress_summary
@@ -51,28 +51,28 @@ state_saving:
51
51
  - recovery_instructions
52
52
  - file_modifications
53
53
 
54
- # 컨텍스트 압축 설정
54
+ # Context compression settings
55
55
  compression:
56
- auto_activate_at: 50 # action 임계값에서 자동 활성화
56
+ auto_activate_at: 50 # Auto-activate at action threshold
57
57
 
58
58
  strategies:
59
59
  - name: "summarize_completed"
60
- description: "완료된 작업을 요약으로 대체"
60
+ description: "Replace completed work with summaries"
61
61
  priority: 1
62
62
 
63
63
  - name: "externalize_code"
64
- description: "코드 블록을 파일 참조로 대체"
64
+ description: "Replace code blocks with file references"
65
65
  priority: 2
66
66
 
67
67
  - name: "handoff_generation"
68
- description: "현재 상태를 HANDOFF.md로 외부화"
68
+ description: "Externalize current state to HANDOFF.md"
69
69
  priority: 3
70
70
 
71
- # 모니터링 설정
71
+ # Monitoring settings
72
72
  monitoring:
73
73
  display_in_prompt: true
74
74
  update_interval: "per_response"
75
75
 
76
- # 상태 표시 형식
76
+ # Status display format
77
77
  display_format: |
78
78
  [Context: {remaining_percent}% | {remaining_tokens}k tokens]
@@ -1,61 +1,61 @@
1
1
  # Git Configuration
2
- # claude-symphony Git 자동 커밋 규칙 (Issue #15 해결)
2
+ # claude-symphony Git auto-commit rules (Issue #15 resolution)
3
3
 
4
4
  git:
5
- # 자동 커밋 설정
5
+ # Auto-commit settings
6
6
  auto_commit:
7
7
  enabled: true
8
8
 
9
- # 트리거 이벤트
9
+ # Trigger events
10
10
  triggers:
11
- on_task_complete: true # 태스크 완료
12
- on_stage_complete: true # 스테이지 완료
13
- on_checkpoint: true # 체크포인트 생성
14
- on_milestone: true # 마일스톤 완료
11
+ on_task_complete: true # On task completion
12
+ on_stage_complete: true # On stage completion
13
+ on_checkpoint: true # On checkpoint creation
14
+ on_milestone: true # On milestone completion
15
15
 
16
- # 커밋 메시지 규칙 (Conventional Commits)
16
+ # Commit message rules (Conventional Commits)
17
17
  commit_convention:
18
18
  format: "<type>(<scope>): <description>"
19
19
 
20
- # 커밋 타입
20
+ # Commit types
21
21
  types:
22
22
  - name: "feat"
23
- description: "새로운 기능 추가"
23
+ description: "New feature"
24
24
  stages: ["06-implementation"]
25
25
 
26
26
  - name: "fix"
27
- description: "버그 수정"
27
+ description: "Bug fix"
28
28
  stages: ["08-qa"]
29
29
 
30
30
  - name: "refactor"
31
- description: "코드 리팩토링"
31
+ description: "Code refactoring"
32
32
  stages: ["07-refactoring"]
33
33
 
34
34
  - name: "test"
35
- description: "테스트 추가/수정"
35
+ description: "Test addition/modification"
36
36
  stages: ["09-testing"]
37
37
 
38
38
  - name: "docs"
39
- description: "문서 수정"
39
+ description: "Documentation modification"
40
40
  stages: ["all"]
41
41
 
42
42
  - name: "chore"
43
- description: "기타 변경사항"
43
+ description: "Other changes"
44
44
  stages: ["10-deployment"]
45
45
 
46
46
  - name: "style"
47
- description: "코드 스타일 변경"
47
+ description: "Code style changes"
48
48
  stages: ["04-ui-ux", "06-implementation"]
49
49
 
50
50
  - name: "perf"
51
- description: "성능 개선"
51
+ description: "Performance improvement"
52
52
  stages: ["07-refactoring"]
53
53
 
54
54
  - name: "ci"
55
- description: "CI/CD 설정"
55
+ description: "CI/CD configuration"
56
56
  stages: ["10-deployment"]
57
57
 
58
- # 스테이지별 스코프 매핑
58
+ # Stage-specific scope mapping
59
59
  scope_mapping:
60
60
  "01-brainstorm": "brainstorm"
61
61
  "02-research": "research"
@@ -68,46 +68,46 @@ git:
68
68
  "09-testing": "test"
69
69
  "10-deployment": "deploy"
70
70
 
71
- # 설명 규칙
71
+ # Description rules
72
72
  description_rules:
73
73
  max_length: 72
74
- language: "Korean" # Korean | English
75
- start_with_verb: true # 동사로 시작
76
- no_period_at_end: true # 끝에 마침표 없음
74
+ language: "English" # Korean | English
75
+ start_with_verb: true # Start with verb
76
+ no_period_at_end: true # No period at end
77
77
 
78
- # 커밋 메시지 예시
78
+ # Commit message examples
79
79
  examples:
80
- task_complete: "feat(impl): 사용자 인증 기능 구현"
81
- stage_complete: "chore(impl): Stage 06 완료 - HANDOFF.md 생성"
82
- bug_fix: "fix(qa): 로그인 세션 만료 버그 수정"
83
- refactor: "refactor(refactor): 인증 서비스 코드 최적화"
84
- test: "test(test): 사용자 인증 E2E 테스트 추가"
80
+ task_complete: "feat(impl): implement user authentication"
81
+ stage_complete: "chore(impl): complete Stage 06 - generate HANDOFF.md"
82
+ bug_fix: "fix(qa): fix login session expiry bug"
83
+ refactor: "refactor(refactor): optimize auth service code"
84
+ test: "test(test): add user authentication E2E tests"
85
85
 
86
- # 브랜치 규칙
86
+ # Branch rules
87
87
  branch:
88
- # 브랜치 네이밍
88
+ # Branch naming
89
89
  naming:
90
90
  feature: "feature/{stage}-{task-id}"
91
91
  bugfix: "bugfix/{issue-id}"
92
92
  release: "release/v{version}"
93
93
 
94
- # 기본 브랜치
94
+ # Default branch
95
95
  default: "main"
96
96
  develop: "develop"
97
97
 
98
- # 스테이지별 브랜치 전략
98
+ # Stage-specific branch strategy
99
99
  strategy: "feature-branch" # feature-branch | trunk-based
100
100
 
101
- # 자동화 동작
101
+ # Automation actions
102
102
  automation:
103
- # 태스크 완료
103
+ # On task completion
104
104
  on_task_complete:
105
105
  actions:
106
106
  - "stage_changes"
107
107
  - "generate_commit_message"
108
108
  - "commit"
109
109
 
110
- # 스테이지 완료
110
+ # On stage completion
111
111
  on_stage_complete:
112
112
  actions:
113
113
  - "stage_all_changes"
@@ -115,13 +115,13 @@ git:
115
115
  - "commit"
116
116
  - "create_tag"
117
117
 
118
- # 체크포인트
118
+ # On checkpoint
119
119
  on_checkpoint:
120
120
  actions:
121
121
  - "commit_all"
122
122
  - "create_checkpoint_tag"
123
123
 
124
- # 커밋 메시지 생성 템플릿
124
+ # Commit message generation templates
125
125
  templates:
126
126
  task_complete: |
127
127
  {{type}}({{scope}}): {{description}}
@@ -130,14 +130,14 @@ git:
130
130
  Stage: {{stage_id}}
131
131
 
132
132
  stage_complete: |
133
- chore({{scope}}): Stage {{stage_number}} 완료
133
+ chore({{scope}}): complete Stage {{stage_number}}
134
134
 
135
- 완료된 작업:
135
+ Completed tasks:
136
136
  {{#each completed_tasks}}
137
137
  - {{this}}
138
138
  {{/each}}
139
139
 
140
- 다음 스테이지: {{next_stage}}
140
+ Next stage: {{next_stage}}
141
141
 
142
142
  checkpoint: |
143
143
  chore(checkpoint): {{description}}
@@ -146,16 +146,16 @@ git:
146
146
  Checkpoint: {{checkpoint_id}}
147
147
  Created: {{timestamp}}
148
148
 
149
- # 금지 사항
149
+ # Prohibited actions
150
150
  prohibited:
151
- - "커밋 메시지 없이 커밋"
152
- - "WIP 커밋 (임시 저장용)"
153
- - "대문자 시작 (영어의 경우)"
154
- - "의미 없는 커밋 메시지"
151
+ - "Commit without commit message"
152
+ - "WIP commits (temporary saves)"
153
+ - "Starting with uppercase (for English)"
154
+ - "Meaningless commit messages"
155
155
 
156
- # 권장 사항
156
+ # Recommended actions
157
157
  recommended:
158
- - "작은 단위 커밋"
159
- - "의미 있는 커밋 메시지"
160
- - "관련 파일만 스테이징"
161
- - "커밋 lint/format 실행"
158
+ - "Commit in small units"
159
+ - "Meaningful commit messages"
160
+ - "Stage only related files"
161
+ - "Run lint/format before commit"
@@ -3,12 +3,12 @@
3
3
 
4
4
  smart_handoff:
5
5
  enabled: true
6
- description: "자동 컨텍스트 추출 지능형 HANDOFF 생성"
6
+ description: "Automatic context extraction and intelligent HANDOFF generation"
7
7
 
8
- # 자동 추출 설정
8
+ # Auto extraction settings
9
9
  auto_extraction:
10
10
  enabled: true
11
- description: "HANDOFF에 포함할 정보 자동 추출"
11
+ description: "Auto-extract information to include in HANDOFF"
12
12
 
13
13
  extract_from:
14
14
  completed_tasks:
@@ -36,10 +36,10 @@ smart_handoff:
36
36
  ai_call_history:
37
37
  enabled: true
38
38
  format: "table"
39
- include_prompts: false # 토큰 절약
39
+ include_prompts: false # Save tokens
40
40
  include_results_summary: true
41
41
 
42
- # 추출 우선순위 (높을수록 먼저)
42
+ # Extraction priority (higher = first)
43
43
  priority:
44
44
  - blocking_issues: 100
45
45
  - key_decisions: 90
@@ -48,14 +48,14 @@ smart_handoff:
48
48
  - completed_tasks: 60
49
49
  - ai_call_history: 50
50
50
 
51
- # 압축 설정
51
+ # Compression settings
52
52
  compression:
53
53
  enabled: true
54
54
  strategy: "semantic"
55
- description: "의미 기반 컨텍스트 압축"
55
+ description: "Semantic-based context compression"
56
56
 
57
57
  max_tokens: 4000
58
- compression_ratio_target: 0.3 # 원본의 30%
58
+ compression_ratio_target: 0.3 # 30% of original
59
59
 
60
60
  preserve:
61
61
  always:
@@ -71,7 +71,7 @@ smart_handoff:
71
71
  method: "extractive" # extractive or abstractive
72
72
  model: "claude"
73
73
 
74
- # 컨텍스트 전달 최적화
74
+ # Context transfer optimization
75
75
  context_transfer:
76
76
  format: "structured_markdown"
77
77
 
@@ -98,7 +98,7 @@ smart_handoff:
98
98
  - completed_tasks_summary
99
99
  - ai_call_summary
100
100
 
101
- # 다음 스테이지에 즉시 필요한 정보 하이라이트
101
+ # Highlight information immediately needed by next stage
102
102
  highlight:
103
103
  enabled: true
104
104
  marker: "!!"
@@ -106,10 +106,10 @@ smart_handoff:
106
106
  - immediate_actions
107
107
  - required_inputs
108
108
 
109
- # 컨텍스트 요약 설정
109
+ # Contextual summarization settings
110
110
  contextual_summarization:
111
111
  enabled: true
112
- description: "스테이지별 맞춤 요약 생성"
112
+ description: "Generate stage-specific customized summaries"
113
113
 
114
114
  strategies:
115
115
  completed_tasks:
@@ -131,16 +131,16 @@ contextual_summarization:
131
131
  decisions:
132
132
  method: "structured"
133
133
  format: |
134
- **결정**: {{decision}}
135
- **이유**: {{rationale}}
136
- **영향**: {{impact}}
134
+ **Decision**: {{decision}}
135
+ **Rationale**: {{rationale}}
136
+ **Impact**: {{impact}}
137
137
 
138
138
  next_steps:
139
139
  method: "actionable"
140
140
  format: "numbered_list"
141
141
  include_prerequisites: true
142
142
 
143
- # 스테이지별 요약 초점
143
+ # Stage-specific summary focus
144
144
  stage_focus:
145
145
  "01-brainstorm":
146
146
  emphasize: ["ideas", "requirements"]
@@ -154,7 +154,7 @@ contextual_summarization:
154
154
  emphasize: ["bugs", "test_results"]
155
155
  de_emphasize: ["planning_details"]
156
156
 
157
- # HANDOFF 템플릿 설정
157
+ # HANDOFF template settings
158
158
  templates:
159
159
  default:
160
160
  sections:
@@ -186,7 +186,7 @@ templates:
186
186
  required: false
187
187
  auto_generate: true
188
188
 
189
- # 스테이지 전환용 간소화 템플릿
189
+ # Compact template for stage transitions
190
190
  compact:
191
191
  max_tokens: 2000
192
192
  sections:
@@ -195,7 +195,7 @@ templates:
195
195
  - name: "Next Actions"
196
196
  required: true
197
197
 
198
- # 세션 복구용 상세 템플릿
198
+ # Detailed template for session recovery
199
199
  recovery:
200
200
  max_tokens: 6000
201
201
  sections:
@@ -204,7 +204,7 @@ templates:
204
204
  - name: "Step-by-Step Recovery"
205
205
  required: true
206
206
 
207
- # 품질 검증
207
+ # Quality assurance
208
208
  quality_assurance:
209
209
  validation:
210
210
  check_completeness: true
@@ -224,6 +224,6 @@ quality_assurance:
224
224
  enabled: true
225
225
  max_iterations: 2
226
226
  improvement_prompts:
227
- low_clarity: " 섹션을 명확하게 다시 작성하세요."
228
- low_completeness: "누락된 정보가 있습니다. 다음을 추가하세요: {{missing}}"
229
- low_actionability: "다음 단계를 구체적인 액션으로 변환하세요."
227
+ low_clarity: "Rewrite this section more clearly."
228
+ low_completeness: "Information is missing. Please add: {{missing}}"
229
+ low_actionability: "Convert next steps into more specific actions."