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,11 +1,11 @@
1
1
  # claude-symphony - Multi-AI Orchestration Framework
2
2
 
3
- 10단계 소프트웨어 개발 워크플로우 오케스트레이션 시스템
3
+ 10-Stage Software Development Workflow Orchestration System
4
4
 
5
- ## 파이프라인 개요
5
+ ## Pipeline Overview
6
6
 
7
- | 단계 | 이름 | AI 모델 | 실행 모드 |
8
- |------|------|---------|-----------|
7
+ | Stage | Name | AI Model | Execution Mode |
8
+ |-------|------|----------|----------------|
9
9
  | 01 | Brainstorming | Gemini + ClaudeCode | YOLO (Container) |
10
10
  | 02 | Research | Claude | Plan Mode |
11
11
  | 03 | Planning | Gemini | Plan Mode |
@@ -17,112 +17,112 @@
17
17
  | 09 | Testing & E2E | Codex | Sandbox + Playwright |
18
18
  | 10 | CI/CD & Deployment | ClaudeCode | Headless |
19
19
 
20
- ## 컨텍스트 관리 규칙
20
+ ## Context Management Rules
21
21
 
22
- > 설정 파일: `config/context.yaml`
22
+ > Configuration file: `config/context.yaml`
23
23
 
24
- ### 퍼센트 기반 임계값 (남은 컨텍스트 기준)
24
+ ### Percentage-Based Thresholds (Based on Remaining Context)
25
25
 
26
- | 임계값 | 트리거 | 동작 |
27
- |--------|--------|------|
28
- | **60%** (warning) | 경고 표시 | 압축 비율 계산, 배너 표시 |
29
- | **50%** (action) | 자동 저장 | `state/context/`에 상태 저장, 압축 권장 |
30
- | **40%** (critical) | `/clear` 권고 | 강제 저장, 복구 HANDOFF 생성 |
26
+ | Threshold | Trigger | Action |
27
+ |-----------|---------|--------|
28
+ | **60%** (warning) | Display warning | Calculate compression ratio, show banner |
29
+ | **50%** (action) | Auto-save | Save state to `state/context/`, recommend compression |
30
+ | **40%** (critical) | `/clear` recommended | Force save, generate recovery HANDOFF |
31
31
 
32
- ### 태스크 기반 자동 저장
33
- - **5개 태스크 완료마다** 상태 자동 저장
34
- - 저장 위치: `state/context/state_{timestamp}_{stage}.md`
32
+ ### Task-Based Auto-Save
33
+ - **Auto-save every 5 completed tasks**
34
+ - Save location: `state/context/state_{timestamp}_{stage}.md`
35
35
 
36
- ### 상태 저장 형식
37
- > 템플릿: `state/templates/phase_state.md.template`
36
+ ### State Save Format
37
+ > Template: `state/templates/phase_state.md.template`
38
38
 
39
39
  ```markdown
40
- # 작업 상태 저장 - {{TIMESTAMP}}
40
+ # Work State Save - {{TIMESTAMP}}
41
41
 
42
- ## 컨텍스트 상태
43
- - 남은 컨텍스트: {{REMAINING_PERCENT}}%
44
- - 저장 트리거: {{TRIGGER_REASON}}
42
+ ## Context State
43
+ - Remaining context: {{REMAINING_PERCENT}}%
44
+ - Save trigger: {{TRIGGER_REASON}}
45
45
 
46
- ## 현재 스테이지
46
+ ## Current Stage
47
47
  {{STAGE_ID}}: {{STAGE_NAME}}
48
48
 
49
- ## 진행 상황
50
- - 완료: [목록]
51
- - 진행 중: [현재 작업]
52
- - 대기: [남은 작업]
49
+ ## Progress
50
+ - Completed: [list]
51
+ - In progress: [current task]
52
+ - Pending: [remaining tasks]
53
53
 
54
- ## 핵심 컨텍스트
55
- - 주요 결정사항
56
- - 수정된 파일
57
- - 활성 이슈/버그
54
+ ## Key Context
55
+ - Major decisions
56
+ - Modified files
57
+ - Active issues/bugs
58
58
 
59
- ## AI 호출 기록
60
- | AI | 시간 | 프롬프트 | 결과 |
61
- |----|------|---------|------|
59
+ ## AI Call Log
60
+ | AI | Time | Prompt | Result |
61
+ |----|------|--------|--------|
62
62
 
63
- ## 복구 지침
64
- 1. 파일 읽기
65
- 2. {{HANDOFF_FILE}} 참조
66
- 3. {{CURRENT_TASK}}부터 재개
63
+ ## Recovery Instructions
64
+ 1. Read this file
65
+ 2. Reference {{HANDOFF_FILE}}
66
+ 3. Resume from {{CURRENT_TASK}}
67
67
  ```
68
68
 
69
- ### 컨텍스트 압축 전략
70
- 1. **summarize_completed**: 완료된 작업을 요약으로 대체
71
- 2. **externalize_code**: 코드 블록을 파일 참조로 대체
72
- 3. **handoff_generation**: 현재 상태를 HANDOFF.md로 외부화
73
-
74
- ## 스테이지 전환 프로토콜
75
-
76
- ### 필수 순서
77
- 1. 현재 스테이지의 모든 outputs 생성 확인
78
- 2. `HANDOFF.md` 생성 (필수)
79
- 3. 체크포인트 생성 (구현/리팩토링 스테이지)
80
- 4. `state/progress.json` 업데이트
81
- 5. 다음 스테이지 `CLAUDE.md` 로드
82
-
83
- ### HANDOFF.md 필수 포함 항목
84
- - 완료된 작업 체크리스트
85
- - 핵심 결정사항 이유
86
- - 성공/실패한 접근법
87
- - 다음 단계 즉시 실행 작업
88
- - 체크포인트 참조 (해당시)
89
-
90
- ## 슬래시 커맨드
91
-
92
- ### 기본 명령어
93
- | 커맨드 | 설명 |
94
- |--------|------|
95
- | `/init-project` | 프로젝트 초기화 |
96
- | `/run-stage [id]` | 특정 스테이지 실행 |
97
- | `/handoff` | 현재 스테이지 HANDOFF.md 생성 |
98
- | `/checkpoint` | 체크포인트 생성 |
99
- | `/gemini [prompt]` | Gemini CLI 호출 |
100
- | `/codex [prompt]` | Codex CLI 호출 |
101
-
102
- ### Multi-AI 명령어
103
- | 커맨드 | 설명 |
104
- |--------|------|
105
- | `/collaborate` | Multi-AI 협업 실행 |
106
- | `/benchmark` | AI 모델 벤치마킹 |
107
- | `/fork` | 파이프라인 분기 관리 |
108
- | `/validate` | 산출물 검증 실행 |
109
-
110
- ### 가시성 명령어
111
- | 커맨드 | 설명 |
112
- |--------|------|
113
- | `/status` | 파이프라인 전체 상태 확인 |
114
- | `/stages` | 스테이지 목록 상세 |
115
- | `/context` | 컨텍스트(토큰) 상태 관리 |
116
-
117
- ### 네비게이션 명령어
118
- | 커맨드 | 설명 |
119
- |--------|------|
120
- | `/next` | 다음 스테이지로 전환 |
121
- | `/restore` | 체크포인트에서 복구 |
122
-
123
- ### 스테이지 단축 명령어
124
- | 커맨드 | 스테이지 |
125
- |--------|----------|
69
+ ### Context Compression Strategies
70
+ 1. **summarize_completed**: Replace completed work with summaries
71
+ 2. **externalize_code**: Replace code blocks with file references
72
+ 3. **handoff_generation**: Externalize current state to HANDOFF.md
73
+
74
+ ## Stage Transition Protocol
75
+
76
+ ### Required Sequence
77
+ 1. Verify all outputs for current stage are generated
78
+ 2. Generate `HANDOFF.md` (required)
79
+ 3. Create checkpoint (implementation/refactoring stages)
80
+ 4. Update `state/progress.json`
81
+ 5. Load next stage `CLAUDE.md`
82
+
83
+ ### Required HANDOFF.md Contents
84
+ - Completed tasks checklist
85
+ - Key decisions and rationale
86
+ - Successful/failed approaches
87
+ - Immediate next steps for next stage
88
+ - Checkpoint references (if applicable)
89
+
90
+ ## Slash Commands
91
+
92
+ ### Basic Commands
93
+ | Command | Description |
94
+ |---------|-------------|
95
+ | `/init-project` | Initialize new project |
96
+ | `/run-stage [id]` | Run specific stage |
97
+ | `/handoff` | Generate current stage HANDOFF.md |
98
+ | `/checkpoint` | Create checkpoint |
99
+ | `/gemini [prompt]` | Call Gemini CLI |
100
+ | `/codex [prompt]` | Call Codex CLI |
101
+
102
+ ### Multi-AI Commands
103
+ | Command | Description |
104
+ |---------|-------------|
105
+ | `/collaborate` | Run Multi-AI collaboration |
106
+ | `/benchmark` | AI model benchmarking |
107
+ | `/fork` | Pipeline branch management |
108
+ | `/validate` | Run output validation |
109
+
110
+ ### Visibility Commands
111
+ | Command | Description |
112
+ |---------|-------------|
113
+ | `/status` | Check pipeline status |
114
+ | `/stages` | Stage list and details |
115
+ | `/context` | Context (token) state management |
116
+
117
+ ### Navigation Commands
118
+ | Command | Description |
119
+ |---------|-------------|
120
+ | `/next` | Transition to next stage |
121
+ | `/restore` | Restore from checkpoint |
122
+
123
+ ### Stage Shortcut Commands
124
+ | Command | Stage |
125
+ |---------|-------|
126
126
  | `/brainstorm` | 01-brainstorm |
127
127
  | `/research` | 02-research |
128
128
  | `/planning` | 03-planning |
@@ -134,395 +134,394 @@
134
134
  | `/test` | 09-testing |
135
135
  | `/deploy` | 10-deployment |
136
136
 
137
- ## 스킬 (자동 활성화)
137
+ ## Skills (Auto-Activated)
138
138
 
139
- | 스킬 | 트리거 | 설명 |
140
- |------|--------|------|
141
- | `stage-transition` | "완료", "/next" | 스테이지 완료 감지 전환 자동화 |
142
- | `context-compression` | 토큰 50k+ | 컨텍스트 압축 상태 저장 |
143
- | `smart-handoff` | 스테이지 완료 | 스마트 컨텍스트 추출 HANDOFF 생성 |
144
- | `ai-collaboration` | `/collaborate` | Multi-AI 협업 오케스트레이션 |
145
- | `auto-checkpoint` | 트리거 조건 충족 | 자동 체크포인트 생성 |
146
- | `output-validator` | `/validate`, 스테이지 완료 | 산출물 검증 품질 확인 |
139
+ | Skill | Trigger | Description |
140
+ |-------|---------|-------------|
141
+ | `stage-transition` | "completed", "/next" | Stage completion detection and transition automation |
142
+ | `context-compression` | Token 50k+ | Context compression and state save |
143
+ | `smart-handoff` | Stage completion | Smart context extraction and HANDOFF generation |
144
+ | `ai-collaboration` | `/collaborate` | Multi-AI collaboration orchestration |
145
+ | `auto-checkpoint` | Trigger conditions met | Automatic checkpoint generation |
146
+ | `output-validator` | `/validate`, stage completion | Output validation and quality verification |
147
147
 
148
- ## Git 자동 커밋 규칙
148
+ ## Git Auto-Commit Rules
149
149
 
150
- > 설정 파일: `config/git.yaml`
150
+ > Configuration file: `config/git.yaml`
151
151
 
152
- ### 자동 커밋 트리거
153
- - **태스크 완료 시**: 관련 파일 커밋
154
- - **스테이지 완료 시**: 전체 변경사항 커밋 + 태그 생성
155
- - **체크포인트 생성 시**: 체크포인트 커밋 + 태그
152
+ ### Auto-Commit Triggers
153
+ - **On task completion**: Commit related files
154
+ - **On stage completion**: Commit all changes + create tag
155
+ - **On checkpoint creation**: Checkpoint commit + tag
156
156
 
157
- ### 커밋 메시지 형식 (Conventional Commits)
157
+ ### Commit Message Format (Conventional Commits)
158
158
  ```
159
159
  <type>(<scope>): <description>
160
160
  ```
161
161
 
162
- | 스테이지 | 타입 | 스코프 | 예시 |
163
- |---------|------|--------|------|
164
- | 06-implementation | `feat` | `impl` | `feat(impl): 사용자 인증 구현` |
165
- | 07-refactoring | `refactor` | `refactor` | `refactor(refactor): 인증 서비스 최적화` |
166
- | 08-qa | `fix` | `qa` | `fix(qa): 세션 만료 버그 수정` |
167
- | 09-testing | `test` | `test` | `test(test): E2E 테스트 추가` |
168
- | 10-deployment | `ci` | `deploy` | `ci(deploy): GitHub Actions 설정` |
162
+ | Stage | Type | Scope | Example |
163
+ |-------|------|-------|---------|
164
+ | 06-implementation | `feat` | `impl` | `feat(impl): implement user authentication` |
165
+ | 07-refactoring | `refactor` | `refactor` | `refactor(refactor): optimize auth service` |
166
+ | 08-qa | `fix` | `qa` | `fix(qa): fix session expiry bug` |
167
+ | 09-testing | `test` | `test` | `test(test): add E2E tests` |
168
+ | 10-deployment | `ci` | `deploy` | `ci(deploy): configure GitHub Actions` |
169
169
 
170
- ### 커밋 원칙
171
- - 작은 단위로 자주 커밋
172
- - 의미 있는 커밋 메시지 작성
173
- - 커밋 lint/format 실행
170
+ ### Commit Principles
171
+ - Commit frequently in small units
172
+ - Write meaningful commit messages
173
+ - Run lint/format before commit
174
174
 
175
- ## AI 호출 로깅
175
+ ## AI Call Logging
176
176
 
177
- > 설정 파일: `config/ai_logging.yaml`
177
+ > Configuration file: `config/ai_logging.yaml`
178
178
 
179
- ### AI 호출 기록
180
- - 모든 AI 호출(Gemini, Codex, ClaudeCode) HANDOFF.md에 기록됩니다
181
- - 호출 시간, 프롬프트 파일, 결과 파일, 상태를 추적합니다
179
+ ### AI Call Recording
180
+ - All AI calls (Gemini, Codex, ClaudeCode) are recorded in HANDOFF.md
181
+ - Track call time, prompt file, result file, and status
182
182
 
183
- ### Gemini 호출 검증 체크리스트
184
- | 단계 | 확인 항목 | 명령어 |
185
- |------|----------|--------|
186
- | 1 | CLI 설치 확인 | `which gemini` |
187
- | 2 | 래퍼 사용 | `scripts/gemini-wrapper.sh` |
188
- | 3 | tmux 세션 확인 | `tmux attach -t symphony-gemini` |
189
- | 4 | 출력 파일 저장 | `outputs/` 디렉토리 |
183
+ ### Gemini Call Verification Checklist
184
+ | Step | Check Item | Command |
185
+ |------|------------|---------|
186
+ | 1 | CLI installation check | `which gemini` |
187
+ | 2 | Use wrapper | `scripts/gemini-wrapper.sh` |
188
+ | 3 | tmux session check | `tmux attach -t symphony-gemini` |
189
+ | 4 | Save output file | `outputs/` directory |
190
190
 
191
- ### AI 호출 로그 형식 (HANDOFF.md)
191
+ ### AI Call Log Format (HANDOFF.md)
192
192
  ```markdown
193
- ## AI 호출 기록
194
- | AI | 호출 시간 | 프롬프트 | 결과 | 상태 |
195
- |----|----------|---------|------|------|
196
- | Gemini | 14:30 | prompts/ideation.md | outputs/ideas.md | 성공 |
193
+ ## AI Call Log
194
+ | AI | Call Time | Prompt | Result | Status |
195
+ |----|-----------|--------|--------|--------|
196
+ | Gemini | 14:30 | prompts/ideation.md | outputs/ideas.md | Success |
197
197
  ```
198
198
 
199
- ## 문답 자동 기록 (Q&A Logging)
199
+ ## Q&A Auto-Recording (Q&A Logging)
200
200
 
201
- > 설정 파일: `config/qa_logging.yaml`
201
+ > Configuration file: `config/qa_logging.yaml`
202
202
 
203
- ### 자동 기록 트리거
204
- - **스테이지 완료 시**: 해당 스테이지의 주요 Q&A 기록
205
- - **이슈 발견 시**: 문제와 해결 방법 기록
206
- - **프로세스 변경 요청 시**: 변경 내용과 이유 기록
203
+ ### Auto-Recording Triggers
204
+ - **On stage completion**: Record key Q&A for that stage
205
+ - **On issue discovery**: Record problem and solution
206
+ - **On process change request**: Record changes and rationale
207
207
 
208
- ### 기록 형식
208
+ ### Recording Format
209
209
  ```markdown
210
210
  ### Q{{number}}: {{title}}
211
- **질문**: {{question}}
212
- **답변**: {{answer}}
213
- **해결 방법**: {{solution}}
214
- **향후 개선 제안**: {{suggestion}}
211
+ **Question**: {{question}}
212
+ **Answer**: {{answer}}
213
+ **Solution**: {{solution}}
214
+ **Future Improvement Suggestions**: {{suggestion}}
215
215
  ```
216
216
 
217
- ### 기록 대상 파일
218
- - 기본: `feedback.md`
219
- - 백업: `state/qa_backups/`
217
+ ### Recording Target Files
218
+ - Default: `feedback.md`
219
+ - Backup: `state/qa_backups/`
220
220
 
221
- ### 카테고리
222
- - `workflow_improvements`: 워크플로우 개선
223
- - `tool_usage`: 도구 사용법
224
- - `process_changes`: 프로세스 변경
225
- - `bug_fixes`: 버그 수정
226
- - `best_practices`: 모범 사례
221
+ ### Categories
222
+ - `workflow_improvements`: Workflow improvements
223
+ - `tool_usage`: Tool usage
224
+ - `process_changes`: Process changes
225
+ - `bug_fixes`: Bug fixes
226
+ - `best_practices`: Best practices
227
227
 
228
- ## 금지 사항
228
+ ## Prohibited Actions
229
229
 
230
- - HANDOFF.md 없이 스테이지 전환
231
- - 체크포인트 없이 파괴적 작업 (구현/리팩토링)
232
- - 단일 세션에 복수 스테이지 혼합
233
- - 이전 스테이지 outputs 수정
234
- - WIP 커밋, 의미 없는 커밋 메시지
230
+ - Stage transition without HANDOFF.md
231
+ - Destructive operations without checkpoint (implementation/refactoring)
232
+ - Mixing multiple stages in single session
233
+ - Modifying previous stage outputs
234
+ - WIP commits, meaningless commit messages
235
235
 
236
- ## 디렉토리 구조 (Issue #17 해결)
236
+ ## Directory Structure (Issue #17 Resolution)
237
237
 
238
- ### ⚠️ 핵심 구분: TEMPLATE_ROOT vs PROJECT_ROOT
238
+ ### ⚠️ Key Distinction: TEMPLATE_ROOT vs PROJECT_ROOT
239
239
 
240
240
  ```
241
- TEMPLATE_ROOT (파이프라인 관리) PROJECT_ROOT (소스코드)
242
- /my-new-project/ /my-new-project/[project-name]/
243
- ├── stages/ ← 산출물 ├── src/
244
- │ └── XX-stage/ ├── public/
245
- │ └── outputs/ ├── package.json
246
- ├── config/ └── ...
241
+ TEMPLATE_ROOT (Pipeline Management) PROJECT_ROOT (Source Code)
242
+ /my-new-project/ /my-new-project/[project-name]/
243
+ ├── stages/ ← Outputs ├── src/
244
+ │ └── XX-stage/ ├── public/
245
+ │ └── outputs/ ├── package.json
246
+ ├── config/ └── ...
247
247
  ├── state/
248
248
  └── CLAUDE.md
249
249
  ```
250
250
 
251
- ### 경로 규칙
251
+ ### Path Rules
252
252
 
253
- | 유형 | 저장 위치 | 예시 |
254
- |------|----------|------|
255
- | 산출물 (문서) | `stages/XX/outputs/` | `ideas.md`, `architecture.md` |
256
- | 소스 코드 | `[project-name]/src/` | 컴포넌트, API |
257
- | 상태 파일 | `state/` | `progress.json`, 체크포인트 |
253
+ | Type | Save Location | Example |
254
+ |------|---------------|---------|
255
+ | Outputs (documents) | `stages/XX/outputs/` | `ideas.md`, `architecture.md` |
256
+ | Source code | `[project-name]/src/` | Components, API |
257
+ | State files | `state/` | `progress.json`, checkpoints |
258
258
  | HANDOFF | `stages/XX/` | `HANDOFF.md` |
259
259
 
260
- ### ⚠️ 금지: PROJECT_ROOT에 stages/ 생성
260
+ ### ⚠️ Prohibited: Creating stages/ in PROJECT_ROOT
261
261
  ```
262
- 잘못된 구조
262
+ Incorrect structure
263
263
  /my-new-project/my-app/
264
- ├── stages/ ← 여기에 생성하면 안됨!
264
+ ├── stages/ ← Should not be created here!
265
265
  └── src/
266
266
 
267
- 올바른 구조
267
+ Correct structure
268
268
  /my-new-project/
269
- ├── stages/ ← TEMPLATE_ROOT에만 존재
269
+ ├── stages/ ← Only exists in TEMPLATE_ROOT
270
270
  └── my-app/
271
271
  └── src/ ← PROJECT_ROOT
272
272
  ```
273
273
 
274
- ### 파이프라인 파일 구조
274
+ ### Pipeline File Structure
275
275
 
276
276
  ```
277
277
  config/
278
- pipeline.yaml # 파이프라인 정의
279
- models.yaml # AI 모델 할당
280
- context.yaml # 컨텍스트 관리 설정
281
- model_enforcement.yaml # AI 역할 분담
282
- git.yaml # Git 자동 커밋 규칙
283
- mcp_fallbacks.yaml # MCP 폴백 설정
284
- ai_logging.yaml # AI 호출 로깅 설정
285
- qa_logging.yaml # 문답 자동 기록 설정
286
- implementation.yaml.template # 구현 규칙 템플릿
278
+ pipeline.yaml # Pipeline definition
279
+ models.yaml # AI model assignment
280
+ context.yaml # Context management settings
281
+ model_enforcement.yaml # AI role distribution
282
+ git.yaml # Git auto-commit rules
283
+ mcp_fallbacks.yaml # MCP fallback settings
284
+ ai_logging.yaml # AI call logging settings
285
+ qa_logging.yaml # Q&A auto-recording settings
286
+ implementation.yaml.template # Implementation rules template
287
287
 
288
288
  stages/
289
289
  XX-stage-name/
290
- CLAUDE.md # 스테이지 AI 지침
291
- config.yaml # 스테이지 설정
292
- prompts/ # 프롬프트 템플릿
293
- templates/ # 출력 템플릿
294
- inputs/ # 입력 파일 (이전 스테이지 링크)
295
- outputs/ # 출력 파일 (산출물)
296
- HANDOFF.md # 생성된 핸드오프
290
+ CLAUDE.md # Stage AI instructions
291
+ config.yaml # Stage settings
292
+ prompts/ # Prompt templates
293
+ templates/ # Output templates
294
+ inputs/ # Input files (previous stage links)
295
+ outputs/ # Output files (deliverables)
296
+ HANDOFF.md # Generated handoff
297
297
 
298
298
  state/
299
- progress.json # 파이프라인 진행 상황
300
- checkpoints/ # 체크포인트 저장
301
- context/ # 컨텍스트 상태 저장
302
- handoffs/ # 핸드오프 아카이브
303
- templates/ # 상태 템플릿
299
+ progress.json # Pipeline progress
300
+ checkpoints/ # Checkpoint storage
301
+ context/ # Context state storage
302
+ handoffs/ # Handoff archive
303
+ templates/ # State templates
304
304
  ```
305
305
 
306
- ## 디자인 패턴 적용
306
+ ## Design Patterns Applied
307
307
 
308
- 1. **Sequential Workflow Architecture** - 순차적 단계 정의 자동 진행
309
- 2. **Stateless Orchestration** - 무상태 컨텍스트 전달 (HANDOFF.md)
310
- 3. **Orchestrator-Workers** - 병렬 에이전트 실행 (Brainstorm 스테이지)
311
- 4. **Proactive State Externalization** - 외부 상태 파일 관리
312
- 5. **State Machine Workflow** - 상태 전이 관리 (progress.json)
313
- 6. **Layered Configuration** - 계층화된 설정 구조 (global → stage)
308
+ 1. **Sequential Workflow Architecture** - Sequential stage definition and auto-progression
309
+ 2. **Stateless Orchestration** - Stateless context transfer (HANDOFF.md)
310
+ 3. **Orchestrator-Workers** - Parallel agent execution (Brainstorm stage)
311
+ 4. **Proactive State Externalization** - External state file management
312
+ 5. **State Machine Workflow** - State transition management (progress.json)
313
+ 6. **Layered Configuration** - Hierarchical configuration structure (global → stage)
314
314
 
315
315
  ---
316
316
 
317
317
  ## Multi-AI Orchestration
318
318
 
319
- > 설정 파일: `config/ai_collaboration.yaml`, `config/ai_benchmarking.yaml`
319
+ > Configuration files: `config/ai_collaboration.yaml`, `config/ai_benchmarking.yaml`
320
320
 
321
- ### AI 협업 모드
321
+ ### AI Collaboration Modes
322
322
 
323
- | 모드 | 설명 | 사용 스테이지 |
324
- |------|------|--------------|
325
- | `parallel` | 동일 작업을 여러 AI로 동시 실행 | 01-brainstorm, 02-research |
326
- | `sequential` | AI 순차 전달 (리뷰 체인) | 06-implementation, 07-refactoring |
327
- | `debate` | AI 토론으로 최적 결론 도출 | 03-planning, 04-ui-ux |
323
+ | Mode | Description | Used In Stages |
324
+ |------|-------------|----------------|
325
+ | `parallel` | Execute same task with multiple AIs simultaneously | 01-brainstorm, 02-research |
326
+ | `sequential` | Sequential handoff between AIs (review chain) | 06-implementation, 07-refactoring |
327
+ | `debate` | AI debate to reach optimal conclusions | 03-planning, 04-ui-ux |
328
328
 
329
- ### AI 모델 전문화
329
+ ### AI Model Specialization
330
330
 
331
- | AI 모델 | 강점 | 최적 스테이지 |
332
- |--------|------|--------------|
333
- | Claude | 정확한 코드 생성, 로직 분석 | 06-implementation, 08-qa |
334
- | Gemini | 창의적 아이디어, 빠른 탐색 | 01-brainstorm, 03-planning |
335
- | Codex | 깊이 있는 분석, 리팩토링 | 07-refactoring, 09-testing |
331
+ | AI Model | Strengths | Optimal Stages |
332
+ |----------|-----------|----------------|
333
+ | Claude | Accurate code generation, logic analysis | 06-implementation, 08-qa |
334
+ | Gemini | Creative ideas, rapid exploration | 01-brainstorm, 03-planning |
335
+ | Codex | Deep analysis, refactoring | 07-refactoring, 09-testing |
336
336
 
337
- ### 사용 방법
337
+ ### Usage
338
338
  ```bash
339
- # 병렬 협업 실행
340
- /collaborate --mode parallel --models claude,gemini --task "아이디어 생성"
339
+ # Parallel collaboration execution
340
+ /collaborate --mode parallel --models claude,gemini --task "idea generation"
341
341
 
342
- # 토론 모드
342
+ # Debate mode
343
343
  /collaborate --mode debate --rounds 3
344
344
 
345
- # AI 벤치마킹
345
+ # AI benchmarking
346
346
  /benchmark --task code_generation --models claude,codex
347
347
  ```
348
348
 
349
349
  ---
350
350
 
351
- ## Smart HANDOFF 시스템
351
+ ## Smart HANDOFF System
352
352
 
353
- > 설정 파일: `config/handoff_intelligence.yaml`, `config/memory_integration.yaml`
353
+ > Configuration files: `config/handoff_intelligence.yaml`, `config/memory_integration.yaml`
354
354
 
355
- ### 자동 추출 항목
356
- - 완료된 작업 (`completed_tasks`)
357
- - 핵심 결정사항 (`key_decisions`)
358
- - 수정된 파일 (`modified_files`)
359
- - 대기 이슈 (`pending_issues`)
360
- - AI 호출 기록 (`ai_call_history`)
355
+ ### Auto-Extracted Items
356
+ - Completed tasks (`completed_tasks`)
357
+ - Key decisions (`key_decisions`)
358
+ - Modified files (`modified_files`)
359
+ - Pending issues (`pending_issues`)
360
+ - AI call history (`ai_call_history`)
361
361
 
362
- ### 컨텍스트 압축
363
- - **전략**: 의미 기반 압축 (`semantic`)
364
- - **목표 비율**: 원본의 30%
365
- - **보존 항목**: 핵심 결정, 차단 이슈, 파일 변경
362
+ ### Context Compression
363
+ - **Strategy**: Semantic-based compression (`semantic`)
364
+ - **Target ratio**: 30% of original
365
+ - **Preserved items**: Key decisions, blocking issues, file changes
366
366
 
367
- ### AI 메모리 통합
368
- - claude-mem MCP와 연동
369
- - 스테이지 완료 자동 메모리 저장
370
- - 스테이지 시작 이전 컨텍스트 주입
367
+ ### AI Memory Integration
368
+ - Integration with claude-mem MCP
369
+ - Auto-save to memory on stage completion
370
+ - Previous context injection on stage start
371
371
 
372
- ### HANDOFF 모드
372
+ ### HANDOFF Modes
373
373
  ```bash
374
- # 기본 (스마트) HANDOFF
374
+ # Default (smart) HANDOFF
375
375
  /handoff
376
376
 
377
- # 컴팩트 모드 (최소 필수 정보만)
377
+ # Compact mode (minimum essential info only)
378
378
  /handoff --compact
379
379
 
380
- # 복구용 상세 HANDOFF
380
+ # Detailed recovery HANDOFF
381
381
  /handoff --recovery
382
382
  ```
383
383
 
384
384
  ---
385
385
 
386
- ## 자동 체크포인트 시스템
386
+ ## Auto-Checkpoint System
387
387
 
388
- > 설정 파일: `config/auto_checkpoint.yaml`, `config/smart_rollback.yaml`
388
+ > Configuration files: `config/auto_checkpoint.yaml`, `config/smart_rollback.yaml`
389
389
 
390
- ### 자동 생성 트리거
390
+ ### Auto-Generation Triggers
391
391
 
392
- | 트리거 | 조건 | 동작 |
393
- |--------|------|------|
394
- | 태스크 기반 | 5 태스크 완료 | 체크포인트 생성 |
395
- | 파일 변경 | 100 이상 변경 | 체크포인트 생성 |
396
- | 파괴적 작업 | rm, delete, drop 패턴 | 강제 체크포인트 |
397
- | 시간 기반 | 30 경과 | 체크포인트 생성 |
392
+ | Trigger | Condition | Action |
393
+ |---------|-----------|--------|
394
+ | Task-based | 5 tasks completed | Create checkpoint |
395
+ | File change | 100+ lines changed | Create checkpoint |
396
+ | Destructive operation | rm, delete, drop patterns | Force checkpoint |
397
+ | Time-based | 30 minutes elapsed | Create checkpoint |
398
398
 
399
- ### 보존 정책
400
- - 최대 보존: 10
401
- - 마일스톤 유지: 스테이지 완료 체크포인트는 영구 보존
399
+ ### Retention Policy
400
+ - Max retention: 10
401
+ - Milestone retention: Stage completion checkpoints preserved permanently
402
402
 
403
- ### 스마트 롤백
403
+ ### Smart Rollback
404
404
  ```bash
405
- # 체크포인트 목록
405
+ # Checkpoint list
406
406
  /restore --list
407
407
 
408
- # 특정 체크포인트로 롤백
408
+ # Rollback to specific checkpoint
409
409
  /restore checkpoint_20240101_120000
410
410
 
411
- # 부분 롤백 (파일 레벨)
411
+ # Partial rollback (file level)
412
412
  /restore checkpoint_id --partial --files "src/auth/*"
413
413
  ```
414
414
 
415
415
  ---
416
416
 
417
- ## 파이프라인 분기 (Forking)
417
+ ## Pipeline Forking
418
418
 
419
- > 설정 파일: `config/pipeline_forking.yaml`
419
+ > Configuration file: `config/pipeline_forking.yaml`
420
420
 
421
- ### 분기 시점
422
- - 아키텍처 대안 제안 (03-planning)
423
- - 기술적 선택지 존재 (06-implementation)
421
+ ### Fork Points
422
+ - When architecture alternatives are proposed (03-planning)
423
+ - When technical choices exist (06-implementation)
424
424
 
425
- ### 분기 관리
426
- - **최대 활성 분기**: 3
427
- - **병합 전략**: 최고 성능 기준 (`best_performer`)
425
+ ### Fork Management
426
+ - **Max active forks**: 3
427
+ - **Merge strategy**: Best performer basis (`best_performer`)
428
428
 
429
- ### 비교 메트릭
430
- - 코드 품질 (`code_quality`)
431
- - 성능 (`performance`)
432
- - 유지보수성 (`maintainability`)
429
+ ### Comparison Metrics
430
+ - Code quality (`code_quality`)
431
+ - Performance (`performance`)
432
+ - Maintainability (`maintainability`)
433
433
 
434
- ### 사용 방법
434
+ ### Usage
435
435
  ```bash
436
- # 분기 생성
437
- /fork create --reason "아키텍처 대안 탐색" --direction "microservices"
436
+ # Create fork
437
+ /fork create --reason "architecture alternative exploration" --direction "microservices"
438
438
 
439
- # 분기 목록
439
+ # Fork list
440
440
  /fork list
441
441
 
442
- # 분기 비교
442
+ # Compare forks
443
443
  /fork compare
444
444
 
445
- # 분기 병합
445
+ # Merge fork
446
446
  /fork merge fork_name
447
447
 
448
- # 분기 삭제
448
+ # Delete fork
449
449
  /fork delete fork_name
450
450
  ```
451
451
 
452
452
  ---
453
453
 
454
- ## 스테이지 페르소나
454
+ ## Stage Personas
455
455
 
456
- > 설정 파일: `config/stage_personas.yaml`
456
+ > Configuration file: `config/stage_personas.yaml`
457
457
 
458
- 스테이지에 최적화된 AI 행동 특성을 정의합니다.
458
+ Defines optimized AI behavior characteristics for each stage.
459
459
 
460
- | 스테이지 | 페르소나 | 특성 | Temperature |
461
- |---------|---------|------|-------------|
462
- | 01-brainstorm | Creative Explorer | 발산적 사고, 제약 없는 아이디어 | 0.9 |
463
- | 02-research | Analytical Investigator | 체계적 분석, 깊이 있는 조사 | 0.5 |
464
- | 03-planning | Strategic Architect | 장기적 관점, 구조적 사고 | 0.6 |
465
- | 06-implementation | Precise Builder | 정확한 구현, 에러 방지 | 0.3 |
466
- | 07-refactoring | Code Surgeon | 깊이 있는 분석, 성능 최적화 | 0.5 |
467
- | 08-qa | Quality Guardian | 철저한 검증, 위험 감지 | 0.4 |
460
+ | Stage | Persona | Characteristics | Temperature |
461
+ |-------|---------|-----------------|-------------|
462
+ | 01-brainstorm | Creative Explorer | Divergent thinking, unconstrained ideas | 0.9 |
463
+ | 02-research | Analytical Investigator | Systematic analysis, in-depth investigation | 0.5 |
464
+ | 03-planning | Strategic Architect | Long-term perspective, structural thinking | 0.6 |
465
+ | 06-implementation | Precise Builder | Accurate implementation, error prevention | 0.3 |
466
+ | 07-refactoring | Code Surgeon | Deep analysis, performance optimization | 0.5 |
467
+ | 08-qa | Quality Guardian | Thorough verification, risk detection | 0.4 |
468
468
 
469
469
  ---
470
470
 
471
- ## 산출물 검증
471
+ ## Output Validation
472
472
 
473
- > 설정 파일: `config/output_validation.yaml`
473
+ > Configuration file: `config/output_validation.yaml`
474
474
 
475
- ### 검증 항목
475
+ ### Validation Items
476
476
 
477
- | 스테이지 | 필수 산출물 | 검증 명령 |
478
- |---------|-----------|----------|
479
- | 01-brainstorm | `ideas.md` (최소 5 아이디어) | - |
480
- | 06-implementation | `src/` (lint, typecheck 통과) | `npm run lint`, `npm run typecheck` |
481
- | 09-testing | `tests/` (커버리지 80%+) | `npm run test:coverage` |
477
+ | Stage | Required Outputs | Validation Command |
478
+ |-------|------------------|-------------------|
479
+ | 01-brainstorm | `ideas.md` (minimum 5 ideas) | - |
480
+ | 06-implementation | `src/` (lint, typecheck pass) | `npm run lint`, `npm run typecheck` |
481
+ | 09-testing | `tests/` (coverage 80%+) | `npm run test:coverage` |
482
482
 
483
- ### 품질 메트릭
484
- - 코드 품질 기준: 0.8
485
- - 테스트 커버리지 기준: 80%
483
+ ### Quality Metrics
484
+ - Code quality threshold: 0.8
485
+ - Test coverage threshold: 80%
486
486
 
487
- ### 사용 방법
487
+ ### Usage
488
488
  ```bash
489
- # 현재 스테이지 검증
489
+ # Validate current stage
490
490
  /validate
491
491
 
492
- # 특정 스테이지 검증
492
+ # Validate specific stage
493
493
  /validate --stage 06-implementation
494
494
 
495
- # 자동 수정 포함
495
+ # Include auto-fix
496
496
  /validate --fix
497
497
 
498
- # 상세 출력
498
+ # Verbose output
499
499
  /validate --verbose
500
500
 
501
- # 실패해도 진행 (비권장)
501
+ # Proceed despite failure (not recommended)
502
502
  /validate --force
503
503
  ```
504
504
 
505
505
  ---
506
506
 
507
- ## 신규 설정 파일
508
-
509
- | 파일 | 설명 |
510
- |------|------|
511
- | `config/ai_collaboration.yaml` | AI 협업 모드 설정 |
512
- | `config/ai_benchmarking.yaml` | AI 벤치마킹 설정 |
513
- | `config/handoff_intelligence.yaml` | 스마트 HANDOFF 설정 |
514
- | `config/memory_integration.yaml` | AI 메모리 통합 설정 |
515
- | `config/auto_checkpoint.yaml` | 자동 체크포인트 설정 |
516
- | `config/smart_rollback.yaml` | 스마트 롤백 설정 |
517
- | `config/pipeline_forking.yaml` | 파이프라인 분기 설정 |
518
- | `config/stage_personas.yaml` | 스테이지 페르소나 설정 |
519
- | `config/output_validation.yaml` | 산출물 검증 설정 |
520
-
521
- ## 신규 State 디렉토리
522
-
523
- | 디렉토리 | 설명 |
524
- |---------|------|
525
- | `state/ai_benchmarks/` | AI 벤치마크 결과 저장 |
526
- | `state/forks/` | 파이프라인 분기 상태 저장 |
527
- | `state/validations/` | 검증 결과 저장 |
528
-
507
+ ## New Configuration Files
508
+
509
+ | File | Description |
510
+ |------|-------------|
511
+ | `config/ai_collaboration.yaml` | AI collaboration mode settings |
512
+ | `config/ai_benchmarking.yaml` | AI benchmarking settings |
513
+ | `config/handoff_intelligence.yaml` | Smart HANDOFF settings |
514
+ | `config/memory_integration.yaml` | AI memory integration settings |
515
+ | `config/auto_checkpoint.yaml` | Auto-checkpoint settings |
516
+ | `config/smart_rollback.yaml` | Smart rollback settings |
517
+ | `config/pipeline_forking.yaml` | Pipeline forking settings |
518
+ | `config/stage_personas.yaml` | Stage persona settings |
519
+ | `config/output_validation.yaml` | Output validation settings |
520
+
521
+ ## New State Directories
522
+
523
+ | Directory | Description |
524
+ |-----------|-------------|
525
+ | `state/ai_benchmarks/` | AI benchmark results storage |
526
+ | `state/forks/` | Pipeline fork state storage |
527
+ | `state/validations/` | Validation results storage |