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
@@ -1,95 +1,95 @@
1
1
  # /refactor
2
2
 
3
- 07-refactoring 스테이지를 바로 시작합니다.
3
+ Start the 07-refactoring stage directly.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /refactor [focus-area]
8
8
  ```
9
9
 
10
- ## 스테이지 정보
10
+ ## Stage Information
11
11
 
12
- | 항목 | |
13
- |------|-----|
14
- | 스테이지 | 07-refactoring |
15
- | AI 모델 | Codex → ClaudeCode |
16
- | 실행 모드 | Deep Dive |
17
- | 체크포인트 | **필수** |
12
+ | Item | Value |
13
+ |------|-------|
14
+ | Stage | 07-refactoring |
15
+ | AI Model | Codex → ClaudeCode |
16
+ | Execution Mode | Deep Dive |
17
+ | Checkpoint | **Required** |
18
18
 
19
- ## 동작
19
+ ## Actions
20
20
 
21
- 1. **전제 조건 확인**
22
- - 06-implementation 완료 여부
23
- - src/, tests/ 존재
24
- - 06 체크포인트 존재
21
+ 1. **Prerequisite Check**
22
+ - 06-implementation completion status
23
+ - src/, tests/ exist
24
+ - 06 checkpoint exists
25
25
 
26
- 2. **리팩토링 실행**
27
- - Codex: 코드 분석 개선 제안
28
- - ClaudeCode: 리팩토링 적용
26
+ 2. **Execute Refactoring**
27
+ - Codex: Code analysis and improvement suggestions
28
+ - ClaudeCode: Apply refactoring
29
29
 
30
- 3. **산출물 생성**
31
- - (개선된) src/
30
+ 3. **Output Generation**
31
+ - (Improved) src/
32
32
  - refactoring-report.md
33
33
 
34
- ## 실행
34
+ ## Execution
35
35
 
36
36
  ```bash
37
37
  scripts/run-stage.sh 07-refactoring "$ARGUMENTS"
38
38
  ```
39
39
 
40
- ## 워크플로우
40
+ ## Workflow
41
41
 
42
42
  ```
43
- Codex (분석)
43
+ Codex (Analysis)
44
44
 
45
- 개선점 식별
45
+ Identify Improvements
46
46
 
47
- ClaudeCode (적용)
47
+ ClaudeCode (Apply)
48
48
 
49
- 테스트 검증
49
+ Test Verification
50
50
  ```
51
51
 
52
- ## 입력 파일
52
+ ## Input Files
53
53
 
54
54
  - `stages/06-implementation/outputs/src/`
55
55
  - `stages/06-implementation/outputs/tests/`
56
56
 
57
- ## 출력 파일
57
+ ## Output Files
58
58
 
59
- - (수정된) `src/`
59
+ - (Modified) `src/`
60
60
  - `stages/07-refactoring/outputs/refactoring-report.md`
61
61
 
62
- ## 체크포인트 필수!
62
+ ## Checkpoint Required!
63
63
 
64
- 리팩토링 전후로 **체크포인트 필수**:
64
+ **Checkpoint required** before and after refactoring:
65
65
 
66
66
  ```bash
67
- # 리팩토링
68
- /checkpoint "리팩토링 전 상태"
67
+ # Before refactoring
68
+ /checkpoint "Pre-refactoring state"
69
69
 
70
- # 리팩토링
71
- /checkpoint "리팩토링 완료"
70
+ # After refactoring
71
+ /checkpoint "Refactoring completed"
72
72
  ```
73
73
 
74
- ## 리팩토링 영역
74
+ ## Refactoring Areas
75
75
 
76
- - 코드 중복 제거
77
- - 함수/클래스 분리
78
- - 명명 규칙 통일
79
- - 성능 최적화
80
- - 보안 개선
76
+ - Code duplication removal
77
+ - Function/class separation
78
+ - Naming convention unification
79
+ - Performance optimization
80
+ - Security improvements
81
81
 
82
- ## 관련 명령어
82
+ ## Related Commands
83
83
 
84
- - `/run-stage 07` - 전제조건 확인 시작
85
- - `/next` - 다음 스테이지 (08-qa)
86
- - `/implement` - 이전 스테이지
87
- - `/codex` - Codex CLI 직접 호출
88
- - `/checkpoint` - 체크포인트 생성
89
- - `/restore` - 롤백
84
+ - `/run-stage 07` - Start after prerequisite check
85
+ - `/next` - Next stage (08-qa)
86
+ - `/implement` - Previous stage
87
+ - `/codex` - Direct Codex CLI call
88
+ - `/checkpoint` - Create checkpoint
89
+ - `/restore` - Rollback
90
90
 
91
91
  ## Tips
92
92
 
93
- - 리팩토링 반드시 체크포인트
94
- - 작은 단위로 점진적 개선
95
- - 테스트 통과 확인 커밋
93
+ - Always checkpoint before refactoring
94
+ - Incremental improvements in small units
95
+ - Commit after test pass verification
@@ -1,60 +1,60 @@
1
1
  # /research
2
2
 
3
- 02-research 스테이지를 바로 시작합니다.
3
+ Start the 02-research stage directly.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /research [focus-area]
8
8
  ```
9
9
 
10
- ## 스테이지 정보
10
+ ## Stage Information
11
11
 
12
- | 항목 | |
13
- |------|-----|
14
- | 스테이지 | 02-research |
15
- | AI 모델 | Claude + MCP |
16
- | 실행 모드 | Plan Mode |
17
- | 체크포인트 | 선택 |
12
+ | Item | Value |
13
+ |------|-------|
14
+ | Stage | 02-research |
15
+ | AI Model | Claude + MCP |
16
+ | Execution Mode | Plan Mode |
17
+ | Checkpoint | Optional |
18
18
 
19
- ## 동작
19
+ ## Actions
20
20
 
21
- 1. **전제 조건 확인**
22
- - 01-brainstorm 완료 여부
23
- - ideas.md 파일 존재
21
+ 1. **Prerequisite Check**
22
+ - 01-brainstorm completion status
23
+ - ideas.md file exists
24
24
 
25
- 2. **리서치 실행**
26
- - MCP 도구 활용 ( 검색, API)
27
- - 기술 스택 조사
28
- - 경쟁 제품 분석
25
+ 2. **Execute Research**
26
+ - Use MCP tools (web search, API)
27
+ - Tech stack investigation
28
+ - Competitor analysis
29
29
 
30
- 3. **산출물 생성**
31
- - research.md - 리서치 결과
32
- - tech-stack.md - 기술 스택 권장사항
30
+ 3. **Output Generation**
31
+ - research.md - Research results
32
+ - tech-stack.md - Tech stack recommendations
33
33
 
34
- ## 실행
34
+ ## Execution
35
35
 
36
36
  ```bash
37
37
  scripts/run-stage.sh 02-research "$ARGUMENTS"
38
38
  ```
39
39
 
40
- ## 입력 파일
40
+ ## Input Files
41
41
 
42
42
  - `stages/01-brainstorm/outputs/ideas.md`
43
43
  - `stages/01-brainstorm/outputs/decisions.md`
44
44
 
45
- ## 출력 파일
45
+ ## Output Files
46
46
 
47
47
  - `stages/02-research/outputs/research.md`
48
48
  - `stages/02-research/outputs/tech-stack.md`
49
49
 
50
- ## 관련 명령어
50
+ ## Related Commands
51
51
 
52
- - `/run-stage 02` - 전제조건 확인 시작
53
- - `/next` - 다음 스테이지 (03-planning)
54
- - `/brainstorm` - 이전 스테이지
52
+ - `/run-stage 02` - Start after prerequisite check
53
+ - `/next` - Next stage (03-planning)
54
+ - `/brainstorm` - Previous stage
55
55
 
56
- ## MCP 도구 활용
56
+ ## MCP Tool Utilization
57
57
 
58
- - Context7 - 라이브러리 문서
59
- - WebFetch - 페이지 분석
60
- - WebSearch - 검색 결과 수집
58
+ - Context7 - Library documentation
59
+ - WebFetch - Web page analysis
60
+ - WebSearch - Search result collection
@@ -1,39 +1,39 @@
1
1
  # /restore
2
2
 
3
- 체크포인트에서 프로젝트 상태를 복구합니다.
3
+ Restore project state from a checkpoint.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
- /restore --list # 체크포인트 목록 보기
8
- /restore --latest # 최신 체크포인트로 복구
9
- /restore [CP-ID] # 특정 체크포인트로 복구
7
+ /restore --list # View checkpoint list
8
+ /restore --latest # Restore to latest checkpoint
9
+ /restore [CP-ID] # Restore to specific checkpoint
10
10
  ```
11
11
 
12
- ## 동작
12
+ ## Actions
13
13
 
14
- ### 목록 보기 (`--list`)
15
- 1. `state/checkpoints/` 디렉토리 스캔
16
- 2. 체크포인트 메타데이터 읽기
17
- 3. 형식으로 출력
14
+ ### View List (`--list`)
15
+ 1. Scan `state/checkpoints/` directory
16
+ 2. Read each checkpoint's metadata
17
+ 3. Output in table format
18
18
 
19
- ### 복구 (`[CP-ID]` 또는 `--latest`)
20
- 1. **확인 프롬프트** (자동화 모드 아닌 경우)
21
- 2. **현재 상태 백업** (선택적)
22
- 3. **체크포인트 파일 복원**
23
- - progress.json 복원
24
- - outputs 파일 복원
25
- - HANDOFF.md 복원 (있는 경우)
26
- 4. **상태 업데이트**
19
+ ### Restore (`[CP-ID]` or `--latest`)
20
+ 1. **Confirmation prompt** (if not in automation mode)
21
+ 2. **Backup current state** (optional)
22
+ 3. **Restore checkpoint files**
23
+ - Restore progress.json
24
+ - Restore outputs files
25
+ - Restore HANDOFF.md (if exists)
26
+ 4. **Update state**
27
27
 
28
- ## 실행 스크립트
28
+ ## Execution Script
29
29
 
30
30
  ```bash
31
31
  scripts/restore-checkpoint.sh "$ARGUMENTS"
32
32
  ```
33
33
 
34
- ## 출력 예시
34
+ ## Output Examples
35
35
 
36
- ### 목록 보기
36
+ ### View List
37
37
  ```
38
38
  /restore --list
39
39
 
@@ -46,68 +46,68 @@ scripts/restore-checkpoint.sh "$ARGUMENTS"
46
46
  CP-06-20240120-1430 06-implementation 2024-01-20 14:30
47
47
  CP-07-20240121-0900 07-refactoring 2024-01-21 09:00
48
48
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
49
- 3 체크포인트 | /restore [ID]로 복구
49
+ Total 3 checkpoints | Restore with /restore [ID]
50
50
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
51
51
  ```
52
52
 
53
- ### 복구 실행
53
+ ### Execute Restore
54
54
  ```
55
55
  /restore CP-06-20240120-1430
56
56
 
57
57
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
58
- ⚠️ 체크포인트 복구
58
+ ⚠️ Checkpoint Restore
59
59
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
60
- 체크포인트: CP-06-20240120-1430
61
- 스테이지: 06-implementation
62
- 설명: 스프린트 1 완료
63
- 생성일: 2024-01-20 14:30
60
+ Checkpoint: CP-06-20240120-1430
61
+ Stage: 06-implementation
62
+ Description: Sprint 1 completed
63
+ Created: 2024-01-20 14:30
64
64
 
65
- ⚠️ 경고: 현재 상태가 해당 시점으로 복구됩니다.
66
- 현재 변경사항이 손실될 있습니다.
65
+ ⚠️ Warning: Current state will be restored to that point.
66
+ Current changes may be lost.
67
67
 
68
- 복구를 진행하시겠습니까? [y/N] y
68
+ Proceed with restore? [y/N] y
69
69
 
70
- 복구 중...
71
- ✓ progress.json 복원됨
72
- ✓ outputs 파일 복원됨 (42)
73
- ✓ HANDOFF.md 복원됨
70
+ Restoring...
71
+ ✓ progress.json restored
72
+ ✓ outputs files restored (42 files)
73
+ ✓ HANDOFF.md restored
74
74
 
75
75
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
76
- 체크포인트 복구 완료!
77
- 현재 스테이지: 06-implementation
76
+ Checkpoint restore complete!
77
+ Current stage: 06-implementation
78
78
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
79
79
  ```
80
80
 
81
- ## 옵션
81
+ ## Options
82
82
 
83
- | 옵션 | 설명 |
84
- |------|------|
85
- | `--list` | 체크포인트 목록 표시 |
86
- | `--latest` | 최신 체크포인트로 복구 |
87
- | `--force` | 확인 없이 강제 복구 |
88
- | `--backup` | 복구 현재 상태 백업 |
89
- | `--dry-run` | 실제 복구 없이 미리보기 |
83
+ | Option | Description |
84
+ |--------|-------------|
85
+ | `--list` | Display checkpoint list |
86
+ | `--latest` | Restore to latest checkpoint |
87
+ | `--force` | Force restore without confirmation |
88
+ | `--backup` | Backup current state before restore |
89
+ | `--dry-run` | Preview only without actual restore |
90
90
 
91
- ## 주의사항
91
+ ## Cautions
92
92
 
93
- - 복구 현재 작업 내용이 **덮어쓰기** 됩니다
94
- - 중요한 변경사항이 있다면 먼저 `/checkpoint` 실행
95
- - `--backup` 옵션으로 현재 상태 자동 백업 가능
93
+ - Current work will be **overwritten** during restore
94
+ - Run `/checkpoint` first if you have important changes
95
+ - Use `--backup` option for automatic current state backup
96
96
 
97
- ## 사용 사례
97
+ ## Use Cases
98
98
 
99
- 1. **구현 실패 롤백**
99
+ 1. **Rollback after failed implementation**
100
100
  ```
101
101
  /restore --latest
102
102
  ```
103
103
 
104
- 2. **특정 시점으로 복원**
104
+ 2. **Restore to specific point**
105
105
  ```
106
106
  /restore --list
107
107
  /restore CP-06-20240120-1030
108
108
  ```
109
109
 
110
- 3. **안전한 복구 (백업 포함)**
110
+ 3. **Safe restore (with backup)**
111
111
  ```
112
112
  /restore CP-06-20240120-1030 --backup
113
113
  ```
@@ -1,78 +1,78 @@
1
1
  # /run-stage
2
2
 
3
- 특정 스테이지를 실행합니다.
3
+ Run a specific stage.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /run-stage [stage-id]
8
8
  ```
9
9
 
10
- ## 스테이지 ID
11
- - `01-brainstorm` - 브레인스토밍
12
- - `02-research` - 리서치
13
- - `03-planning` - 기획
14
- - `04-ui-ux` - UI/UX 설계
15
- - `05-task-management` - 태스크 관리
16
- - `06-implementation` - 구현
17
- - `07-refactoring` - 리팩토링
10
+ ## Stage IDs
11
+ - `01-brainstorm` - Brainstorming
12
+ - `02-research` - Research
13
+ - `03-planning` - Planning
14
+ - `04-ui-ux` - UI/UX Design
15
+ - `05-task-management` - Task Management
16
+ - `06-implementation` - Implementation
17
+ - `07-refactoring` - Refactoring
18
18
  - `08-qa` - QA
19
- - `09-testing` - 테스팅
20
- - `10-deployment` - 배포
19
+ - `09-testing` - Testing
20
+ - `10-deployment` - Deployment
21
21
 
22
- ## 동작
22
+ ## Actions
23
23
 
24
- 1. **전제조건 검증**
25
- - 이전 스테이지 완료 여부 확인
26
- - 이전 스테이지 HANDOFF.md 존재 확인
27
- - 필수 입력 파일 존재 확인
24
+ 1. **Prerequisite Validation**
25
+ - Check previous stage completion
26
+ - Check previous stage HANDOFF.md exists
27
+ - Check required input files exist
28
28
 
29
- 2. **스테이지 설정 로드**
30
- - `stages/[stage-id]/config.yaml` 로드
31
- - `stages/[stage-id]/CLAUDE.md` 로드
29
+ 2. **Load Stage Configuration**
30
+ - Load `stages/[stage-id]/config.yaml`
31
+ - Load `stages/[stage-id]/CLAUDE.md`
32
32
 
33
- 3. **상태 업데이트**
34
- - `state/progress.json` 현재 스테이지 업데이트
35
- - 시작 시간 기록
33
+ 3. **Update State**
34
+ - Update current stage in `state/progress.json`
35
+ - Record start time
36
36
 
37
- 4. **스테이지 실행**
38
- - 스테이지 CLAUDE.md 지침 따름
39
- - 프롬프트 템플릿 활용
37
+ 4. **Execute Stage**
38
+ - Follow stage CLAUDE.md instructions
39
+ - Use prompt templates
40
40
 
41
- ## 실행 스크립트
41
+ ## Execution Script
42
42
 
43
43
  ```bash
44
44
  scripts/run-stage.sh "$ARGUMENTS"
45
45
  ```
46
46
 
47
- ## 예시
47
+ ## Example
48
48
 
49
49
  ```
50
50
  /run-stage 02-research
51
51
 
52
- 출력:
53
- 전제조건 검증 완료
54
- - 01-brainstorm: 완료
55
- - HANDOFF.md: 존재
56
- 스테이지 설정 로드됨
57
- 현재 스테이지: 02-research
52
+ Output:
53
+ Prerequisite validation complete
54
+ - 01-brainstorm: complete
55
+ - HANDOFF.md: exists
56
+ Stage configuration loaded
57
+ Current stage: 02-research
58
58
 
59
- [02-research CLAUDE.md 내용 표시]
59
+ [02-research CLAUDE.md content displayed]
60
60
  ```
61
61
 
62
- ## 전제조건 실패 시
62
+ ## Prerequisite Failure
63
63
 
64
64
  ```
65
65
  /run-stage 03-planning
66
66
 
67
- 오류:
68
- 전제조건 미충족
69
- - 02-research: 진행 (미완료)
70
- - 02-research HANDOFF.md: 없음
67
+ Error:
68
+ Prerequisite not met
69
+ - 02-research: in progress (not complete)
70
+ - 02-research HANDOFF.md: not found
71
71
 
72
- 먼저 02-research 스테이지를 완료해주세요.
73
- /handoff 실행하여 핸드오프 문서를 생성하세요.
72
+ Please complete the 02-research stage first.
73
+ Run /handoff to generate the handoff document.
74
74
  ```
75
75
 
76
- ## 주의사항
77
- - 스테이지 건너뛰기 불가 (순차 실행)
78
- - 체크포인트 필수 스테이지 (06, 07) 체크포인트 없이 진행 불가
76
+ ## Cautions
77
+ - Stage skipping not allowed (sequential execution)
78
+ - Checkpoint-required stages (06, 07) cannot proceed without checkpoint