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,145 +1,145 @@
1
1
  # Stage Transition Prompt
2
2
 
3
- 스테이지 전환 사용되는 프롬프트 템플릿입니다.
3
+ Prompt templates used during stage transitions.
4
4
 
5
- ## 완료 감지 프롬프트
5
+ ## Completion Detection Prompt
6
6
 
7
- 사용자가 완료를 표현했을 때:
7
+ When user expresses completion:
8
8
 
9
9
  ```
10
- 스테이지 완료를 감지했습니다.
10
+ Stage completion detected.
11
11
 
12
- 현재 스테이지: {{CURRENT_STAGE}}
13
- 상태: {{STATUS}}
12
+ Current stage: {{CURRENT_STAGE}}
13
+ Status: {{STATUS}}
14
14
 
15
- [완료 조건 검증]
15
+ [Completion Criteria Validation]
16
16
  {{VALIDATION_RESULTS}}
17
17
 
18
18
  {{#if ALL_PASSED}}
19
- 모든 조건이 충족되었습니다.
19
+ All criteria are met.
20
20
 
21
- 다음 단계:
22
- 1. HANDOFF.md 생성하시겠습니까? [Y/n]
23
- 2. 또는 /next로 바로 전환
21
+ Next steps:
22
+ 1. Would you like to generate HANDOFF.md? [Y/n]
23
+ 2. Or transition directly with /next
24
24
 
25
25
  {{else}}
26
- ⚠️ 일부 조건이 충족되지 않았습니다.
26
+ ⚠️ Some criteria are not met.
27
27
 
28
- 필요 작업:
28
+ Required actions:
29
29
  {{REQUIRED_ACTIONS}}
30
30
 
31
- 강제 전환: /next --force (비권장)
31
+ Force transition: /next --force (not recommended)
32
32
  {{/if}}
33
33
  ```
34
34
 
35
- ## 전환 안내 프롬프트
35
+ ## Transition Guidance Prompt
36
36
 
37
- 다음 스테이지로 전환할 때:
37
+ When transitioning to next stage:
38
38
 
39
39
  ```
40
40
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
41
- 🔄 스테이지 전환 완료
41
+ 🔄 Stage Transition Complete
42
42
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
43
43
 
44
44
  {{PREV_STAGE}} ✅ → {{NEXT_STAGE}} 🔄
45
45
 
46
- [{{NEXT_STAGE}} 스테이지 정보]
47
- • AI 모델: {{AI_MODEL}}
48
- 실행 모드: {{MODE}}
49
- 예상 시간: {{ESTIMATED_TIME}}
46
+ [{{NEXT_STAGE}} Stage Information]
47
+ • AI Model: {{AI_MODEL}}
48
+ Execution Mode: {{MODE}}
49
+ Estimated Time: {{ESTIMATED_TIME}}
50
50
 
51
- [입력 파일]
51
+ [Input Files]
52
52
  {{INPUT_FILES}}
53
53
 
54
- [주요 작업]
54
+ [Main Tasks]
55
55
  {{MAIN_TASKS}}
56
56
 
57
57
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
58
- 시작 명령어: /{{SHORTCUT}} 또는 /run-stage {{STAGE_NUM}}
58
+ Start command: /{{SHORTCUT}} or /run-stage {{STAGE_NUM}}
59
59
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
60
60
  ```
61
61
 
62
- ## 스테이지별 전환 메시지
62
+ ## Stage-Specific Transition Messages
63
63
 
64
64
  ### 01 → 02 (brainstorm → research)
65
65
 
66
66
  ```
67
- 🧠 브레인스토밍 완료!
67
+ 🧠 Brainstorming complete!
68
68
 
69
- 아이디어가 정리되었습니다. 이제 리서치 단계입니다.
69
+ Ideas have been organized. Now entering research phase.
70
70
 
71
- 다음 작업:
72
- • ideas.md 기반 기술 조사
73
- 경쟁 제품 분석
74
- MCP 도구로 최신 정보 수집
71
+ Next tasks:
72
+ Technical research based on ideas.md
73
+ Competitor analysis
74
+ Gather latest info with MCP tools
75
75
 
76
- 시작: /research
76
+ Start: /research
77
77
  ```
78
78
 
79
79
  ### 05 → 06 (task-management → implementation)
80
80
 
81
81
  ```
82
- 📋 태스크 분해 완료!
82
+ 📋 Task breakdown complete!
83
83
 
84
- {{TASK_COUNT}} 태스크가 {{SPRINT_COUNT}} 스프린트로 계획되었습니다.
84
+ {{TASK_COUNT}} tasks planned across {{SPRINT_COUNT}} sprints.
85
85
 
86
- ⚠️ 중요: 06-implementation 체크포인트 필수 스테이지입니다.
87
- 주요 마일스톤마다 /checkpoint 실행하세요.
86
+ ⚠️ Important: 06-implementation is a checkpoint-required stage.
87
+ Run /checkpoint at major milestones.
88
88
 
89
- 다음 작업:
90
- 스프린트 1 태스크부터 구현
91
- 단위 테스트 함께 작성
92
- 마일스톤마다 체크포인트
89
+ Next tasks:
90
+ Implement starting from Sprint 1 tasks
91
+ Write unit tests alongside
92
+ Checkpoint at each milestone
93
93
 
94
- 시작: /implement
94
+ Start: /implement
95
95
  ```
96
96
 
97
97
  ### 09 → 10 (testing → deployment)
98
98
 
99
99
  ```
100
- 테스팅 완료!
100
+ Testing complete!
101
101
 
102
- 테스트 결과:
103
- 단위 테스트: {{UNIT_PASS}}/{{UNIT_TOTAL}} 통과
104
- • E2E 테스트: {{E2E_PASS}}/{{E2E_TOTAL}} 통과
105
- 커버리지: {{COVERAGE}}%
102
+ Test results:
103
+ Unit tests: {{UNIT_PASS}}/{{UNIT_TOTAL}} passed
104
+ • E2E tests: {{E2E_PASS}}/{{E2E_TOTAL}} passed
105
+ Coverage: {{COVERAGE}}%
106
106
 
107
- 🚀 마지막 단계입니다!
107
+ 🚀 Final stage!
108
108
 
109
- 다음 작업:
110
- • CI/CD 파이프라인 설정
111
- 환경별 배포 설정
112
- 모니터링 구성
109
+ Next tasks:
110
+ • CI/CD pipeline setup
111
+ Environment-specific deployment config
112
+ Monitoring setup
113
113
 
114
- 시작: /deploy
114
+ Start: /deploy
115
115
  ```
116
116
 
117
- ## 완료 축하 프롬프트
117
+ ## Completion Celebration Prompt
118
118
 
119
119
  ```
120
- 🎉 파이프라인 완료!
120
+ 🎉 Pipeline Complete!
121
121
 
122
122
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
123
- 프로젝트: {{PROJECT_NAME}}
124
- 소요 기간: {{DURATION}}
125
- 체크포인트: {{CHECKPOINT_COUNT}}
123
+ Project: {{PROJECT_NAME}}
124
+ Total Duration: {{DURATION}}
125
+ Checkpoints: {{CHECKPOINT_COUNT}}
126
126
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
127
127
 
128
- [스테이지 요약]
129
- 01 ✅ brainstorm - 아이디어 정립
130
- 02 ✅ research - 기술 조사
131
- 03 ✅ planning - PRD 작성
132
- 04 ✅ ui-ux - 디자인
133
- 05 ✅ task-mgmt - 태스크 분해
134
- 06 ✅ implementation - 구현
135
- 07 ✅ refactoring - 리팩토링
136
- 08 ✅ qa - 품질 검증
137
- 09 ✅ testing - 테스팅
138
- 10 ✅ deployment - 배포
139
-
140
- [문서]
141
- • state/handoffs/ - 모든 핸드오프 문서
142
- • state/checkpoints/ - 체크포인트
143
-
144
- 수고하셨습니다! 🎊
128
+ [Stage Summary]
129
+ 01 ✅ brainstorm - Idea development
130
+ 02 ✅ research - Technical research
131
+ 03 ✅ planning - PRD creation
132
+ 04 ✅ ui-ux - Design
133
+ 05 ✅ task-mgmt - Task breakdown
134
+ 06 ✅ implementation - Implementation
135
+ 07 ✅ refactoring - Refactoring
136
+ 08 ✅ qa - Quality verification
137
+ 09 ✅ testing - Testing
138
+ 10 ✅ deployment - Deployment
139
+
140
+ [Documents]
141
+ • state/handoffs/ - All handoff documents
142
+ • state/checkpoints/ - Checkpoints
143
+
144
+ Great work! 🎊
145
145
  ```
@@ -1,39 +1,39 @@
1
1
  # Stage Validation Logic
2
2
 
3
- 현재 스테이지의 완료 조건을 검증합니다.
3
+ Validates completion criteria for current stage.
4
4
 
5
- ## 검증 프로세스
5
+ ## Validation Process
6
6
 
7
- ### 1. 현재 스테이지 식별
7
+ ### 1. Identify Current Stage
8
8
 
9
9
  ```bash
10
- # progress.json에서 현재 스테이지 확인
10
+ # Check current stage from progress.json
11
11
  CURRENT_STAGE=$(jq -r '.current_stage' state/progress.json)
12
12
  ```
13
13
 
14
- ### 2. 완료 조건 로드
14
+ ### 2. Load Completion Criteria
15
15
 
16
- 스테이지별 필수 outputs:
16
+ Required outputs per stage:
17
17
 
18
- | 스테이지 | 필수 파일 | 체크포인트 |
19
- |----------|----------|------------|
18
+ | Stage | Required Files | Checkpoint |
19
+ |-------|---------------|------------|
20
20
  | 01-brainstorm | ideas.md, decisions.md | - |
21
21
  | 02-research | research.md, tech-stack.md | - |
22
22
  | 03-planning | PRD.md, architecture.md | - |
23
23
  | 04-ui-ux | wireframes/, component-spec.md | - |
24
24
  | 05-task-management | tasks.json, sprints.md | - |
25
- | 06-implementation | src/, tests/ | ✅ 필수 |
26
- | 07-refactoring | src/ (수정됨) | ✅ 필수 |
25
+ | 06-implementation | src/, tests/ | ✅ Required |
26
+ | 07-refactoring | src/ (modified) | ✅ Required |
27
27
  | 08-qa | qa-report.md | - |
28
28
  | 09-testing | test-results.md | - |
29
- | 10-deployment | CI/CD 파일 | - |
29
+ | 10-deployment | CI/CD files | - |
30
30
 
31
- ### 3. 파일 존재 확인
31
+ ### 3. File Existence Check
32
32
 
33
33
  ```bash
34
34
  STAGE_DIR="stages/$CURRENT_STAGE/outputs"
35
35
 
36
- # 필수 파일 체크
36
+ # Check required files
37
37
  check_required_files() {
38
38
  local files=("$@")
39
39
  local missing=()
@@ -48,61 +48,61 @@ check_required_files() {
48
48
  }
49
49
  ```
50
50
 
51
- ### 4. 체크포인트 확인 (해당 )
51
+ ### 4. Checkpoint Check (When Applicable)
52
52
 
53
53
  ```bash
54
- # 06, 07 스테이지는 체크포인트 필수
54
+ # Stages 06, 07 require checkpoint
55
55
  if [[ "$CURRENT_STAGE" == "06-"* ]] || [[ "$CURRENT_STAGE" == "07-"* ]]; then
56
56
  STAGE_NUM=$(echo "$CURRENT_STAGE" | cut -d'-' -f1)
57
57
  CP_EXISTS=$(ls -d state/checkpoints/CP-$STAGE_NUM-* 2>/dev/null | head -1)
58
58
 
59
59
  if [ -z "$CP_EXISTS" ]; then
60
- echo "⚠️ 체크포인트 필수: /checkpoint 실행 필요"
60
+ echo "⚠️ Checkpoint required: Run /checkpoint"
61
61
  fi
62
62
  fi
63
63
  ```
64
64
 
65
- ## 검증 결과 형식
65
+ ## Validation Result Format
66
66
 
67
- ### 성공
67
+ ### Success
68
68
 
69
69
  ```
70
- 스테이지 완료 조건 충족
70
+ Stage completion criteria met
71
71
 
72
72
  [04-ui-ux]
73
- ✓ wireframes/ 존재 (3 파일)
74
- ✓ component-spec.md 생성됨
75
- ✓ design-system.md 생성됨
73
+ ✓ wireframes/ exists (3 files)
74
+ ✓ component-spec.md generated
75
+ ✓ design-system.md generated
76
76
 
77
- 다음 단계: /next 또는 /tasks
77
+ Next step: /next or /tasks
78
78
  ```
79
79
 
80
- ### 실패
80
+ ### Failure
81
81
 
82
82
  ```
83
- ⚠️ 스테이지 완료 조건 미충족
83
+ ⚠️ Stage completion criteria not met
84
84
 
85
85
  [06-implementation]
86
- ✓ src/ 존재
87
- ✓ tests/ 존재
88
- 체크포인트 없음
86
+ ✓ src/ exists
87
+ ✓ tests/ exists
88
+ No checkpoint
89
89
 
90
- 필요 작업:
91
- 1. /checkpoint "구현 완료" 실행
92
- 2. /next로 전환
90
+ Required actions:
91
+ 1. Run /checkpoint "implementation complete"
92
+ 2. Transition with /next
93
93
  ```
94
94
 
95
- ## 자동 액션
95
+ ## Auto Actions
96
96
 
97
- 검증 결과에 따른 자동 제안:
97
+ Auto-suggestions based on validation results:
98
98
 
99
- 1. **모든 조건 충족**
100
- → HANDOFF.md 생성 제안
101
- → `/next` 명령어 안내
99
+ 1. **All criteria met**
100
+ Suggest HANDOFF.md generation
101
+ Guide `/next` command
102
102
 
103
- 2. **일부 조건 미충족**
104
- 누락된 항목 안내
105
- 해결 방법 제안
103
+ 2. **Some criteria not met**
104
+ Guide missing items
105
+ Suggest resolution methods
106
106
 
107
- 3. **체크포인트 필요**
108
- → `/checkpoint` 명령어 안내
107
+ 3. **Checkpoint needed**
108
+ Guide `/checkpoint` command