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,82 +1,82 @@
1
1
  # /implement
2
2
 
3
- 06-implementation 스테이지를 바로 시작합니다.
3
+ Start the 06-implementation stage directly.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /implement [task-id]
8
8
  ```
9
9
 
10
- ## 스테이지 정보
10
+ ## Stage Information
11
11
 
12
- | 항목 | |
13
- |------|-----|
14
- | 스테이지 | 06-implementation |
15
- | AI 모델 | ClaudeCode |
16
- | 실행 모드 | Plan Mode + Sandbox |
17
- | 체크포인트 | **필수** |
18
- | 타임아웃 | 240 (최장) |
12
+ | Item | Value |
13
+ |------|-------|
14
+ | Stage | 06-implementation |
15
+ | AI Model | ClaudeCode |
16
+ | Execution Mode | Plan Mode + Sandbox |
17
+ | Checkpoint | **Required** |
18
+ | Timeout | 240 minutes (longest) |
19
19
 
20
- ## 동작
20
+ ## Actions
21
21
 
22
- 1. **전제 조건 확인**
23
- - 05-task-management 완료 여부
24
- - tasks.json 존재
22
+ 1. **Prerequisite Check**
23
+ - 05-task-management completion status
24
+ - tasks.json exists
25
25
 
26
- 2. **구현 실행**
27
- - 태스크별 구현
28
- - 단위 테스트 작성
29
- - 코드 품질 검증
26
+ 2. **Execute Implementation**
27
+ - Implementation by task
28
+ - Unit test writing
29
+ - Code quality verification
30
30
 
31
- 3. **산출물 생성**
32
- - src/ - 소스코드
33
- - tests/ - 단위 테스트
31
+ 3. **Output Generation**
32
+ - src/ - Source code
33
+ - tests/ - Unit tests
34
34
  - implementation-notes.md
35
35
 
36
- ## 실행
36
+ ## Execution
37
37
 
38
38
  ```bash
39
39
  scripts/run-stage.sh 06-implementation "$ARGUMENTS"
40
40
  ```
41
41
 
42
- ## 입력 파일
42
+ ## Input Files
43
43
 
44
44
  - `stages/05-task-management/outputs/tasks.json`
45
45
  - `stages/05-task-management/outputs/sprints.md`
46
46
  - `stages/04-ui-ux/outputs/wireframes/`
47
47
 
48
- ## 출력 파일
48
+ ## Output Files
49
49
 
50
50
  - `stages/06-implementation/outputs/src/`
51
51
  - `stages/06-implementation/outputs/tests/`
52
52
  - `stages/06-implementation/outputs/implementation-notes.md`
53
53
 
54
- ## 체크포인트 필수!
54
+ ## Checkpoint Required!
55
55
 
56
- 스테이지는 **체크포인트 필수**입니다:
56
+ This stage **requires checkpoints**:
57
57
 
58
58
  ```bash
59
- # 주요 마일스톤마다 실행
60
- /checkpoint "스프린트 1 완료"
59
+ # Execute at major milestones
60
+ /checkpoint "Sprint 1 completed"
61
61
  ```
62
62
 
63
- ## 완료 조건
63
+ ## Completion Criteria
64
64
 
65
- - [ ] 모든 태스크 구현 완료
66
- - [ ] 단위 테스트 통과
67
- - [ ] 린트/타입 체크 통과
68
- - [ ] 체크포인트 생성 완료
65
+ - [ ] All tasks implemented
66
+ - [ ] Unit tests passed
67
+ - [ ] Lint/type check passed
68
+ - [ ] Checkpoint created
69
69
 
70
- ## 관련 명령어
70
+ ## Related Commands
71
71
 
72
- - `/run-stage 06` - 전제조건 확인 시작
73
- - `/next` - 다음 스테이지 (07-refactoring)
74
- - `/tasks` - 이전 스테이지
75
- - `/checkpoint` - 체크포인트 생성
76
- - `/restore` - 체크포인트 복구
72
+ - `/run-stage 06` - Start after prerequisite check
73
+ - `/next` - Next stage (07-refactoring)
74
+ - `/tasks` - Previous stage
75
+ - `/checkpoint` - Create checkpoint
76
+ - `/restore` - Restore checkpoint
77
77
 
78
78
  ## Tips
79
79
 
80
- - 스프린트 단위로 체크포인트 생성
81
- - 테스트와 함께 구현
82
- - implementation-notes.md에 결정사항 기록
80
+ - Create checkpoints by sprint
81
+ - Implement with tests
82
+ - Record decisions in implementation-notes.md
@@ -1,49 +1,49 @@
1
1
  # /init-project
2
2
 
3
- 프로젝트를 claude-symphony 워크플로우로 초기화합니다.
3
+ Initialize a new project with the claude-symphony workflow.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /init-project [project-name]
8
8
  ```
9
9
 
10
- ## 동작
10
+ ## Actions
11
11
 
12
- 1. **프로젝트 디렉토리 생성**
13
- - `projects/[project-name]/` 생성
14
- - 스테이지별 작업 디렉토리 생성
12
+ 1. **Create Project Directory**
13
+ - Create `projects/[project-name]/`
14
+ - Create stage-specific working directories
15
15
 
16
- 2. **상태 파일 초기화**
17
- - `state/progress.json` 프로젝트 정보 업데이트
18
- - 타임스탬프 기록
16
+ 2. **Initialize State Files**
17
+ - Update `state/progress.json` with project info
18
+ - Record timestamp
19
19
 
20
- 3. **입력 파일 준비**
21
- - `stages/01-brainstorm/inputs/project_brief.md` 템플릿 생성
20
+ 3. **Prepare Input Files**
21
+ - Create `stages/01-brainstorm/inputs/project_brief.md` template
22
22
 
23
- 4. **첫 스테이지 안내**
24
- - 01-brainstorm 스테이지 CLAUDE.md 안내
23
+ 4. **First Stage Guidance**
24
+ - Guide to 01-brainstorm stage CLAUDE.md
25
25
 
26
- ## 실행 스크립트
26
+ ## Execution Script
27
27
 
28
28
  ```bash
29
29
  scripts/init-project.sh "$ARGUMENTS"
30
30
  ```
31
31
 
32
- ## 예시
32
+ ## Example
33
33
 
34
34
  ```
35
35
  /init-project my-saas-app
36
36
 
37
- 출력:
38
- 프로젝트 'my-saas-app' 초기화 완료
39
- 작업 디렉토리: projects/my-saas-app/
40
- 상태 파일 업데이트됨
37
+ Output:
38
+ Project 'my-saas-app' initialization complete
39
+ Working directory: projects/my-saas-app/
40
+ State files updated
41
41
 
42
- 다음 단계:
43
- 1. stages/01-brainstorm/inputs/project_brief.md 작성
44
- 2. /run-stage 01-brainstorm 실행
42
+ Next steps:
43
+ 1. Write stages/01-brainstorm/inputs/project_brief.md
44
+ 2. Run /run-stage 01-brainstorm
45
45
  ```
46
46
 
47
- ## 주의사항
48
- - 프로젝트 이름은 영문 소문자, 숫자, 하이픈만 허용
49
- - 기존 프로젝트 덮어쓰기 불가
47
+ ## Cautions
48
+ - Project name allows only lowercase letters, numbers, and hyphens
49
+ - Cannot overwrite existing projects
@@ -1,125 +1,125 @@
1
1
  # /next
2
2
 
3
- 현재 스테이지를 완료하고 다음 스테이지로 전환합니다.
3
+ Complete the current stage and transition to the next stage.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /next
8
- /next --force # 조건 검증 건너뛰기
9
- /next --preview # 전환 미리보기
8
+ /next --force # Skip condition verification
9
+ /next --preview # Preview transition
10
10
  ```
11
11
 
12
- ## 동작
12
+ ## Actions
13
13
 
14
- 1. **현재 스테이지 완료 조건 검증**
15
- - outputs 파일 존재 확인
16
- - 필수 체크포인트 확인 (해당 )
17
- - config.yaml의 completion_criteria 검증
14
+ 1. **Verify Current Stage Completion Criteria**
15
+ - Check outputs files exist
16
+ - Check required checkpoints (if applicable)
17
+ - Verify completion_criteria in config.yaml
18
18
 
19
- 2. **HANDOFF.md 자동 생성**
20
- - 완료된 작업 요약
21
- - 핵심 결정사항
22
- - 다음 단계 안내
19
+ 2. **Auto-Generate HANDOFF.md**
20
+ - Completed work summary
21
+ - Key decisions
22
+ - Next step guidance
23
23
 
24
- 3. **상태 업데이트**
25
- - 현재 스테이지: `completed`
26
- - 다음 스테이지: `in_progress`
27
- - progress.json 업데이트
24
+ 3. **Update State**
25
+ - Current stage: `completed`
26
+ - Next stage: `in_progress`
27
+ - Update progress.json
28
28
 
29
- 4. **다음 스테이지 시작**
30
- - 다음 스테이지 CLAUDE.md 로드
31
- - 입력 파일 확인
29
+ 4. **Start Next Stage**
30
+ - Load next stage CLAUDE.md
31
+ - Check input files
32
32
 
33
- ## 실행 스크립트
33
+ ## Execution Script
34
34
 
35
35
  ```bash
36
36
  scripts/next-stage.sh "$ARGUMENTS"
37
37
  ```
38
38
 
39
- ## 출력 예시
39
+ ## Output Examples
40
40
 
41
- ### 성공적인 전환
41
+ ### Successful Transition
42
42
  ```
43
43
  /next
44
44
 
45
45
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
46
- 🔄 스테이지 전환
46
+ 🔄 Stage Transition
47
47
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
48
- 현재: 04-ui-ux → 다음: 05-task-management
48
+ Current: 04-ui-ux → Next: 05-task-management
49
49
 
50
- [완료 조건 검증]
51
- ✓ wireframes/ 디렉토리 존재
52
- ✓ component-spec.md 생성됨
53
- ✓ design-system.md 생성됨
50
+ [Completion Criteria Verification]
51
+ ✓ wireframes/ directory exists
52
+ ✓ component-spec.md generated
53
+ ✓ design-system.md generated
54
54
 
55
- [HANDOFF.md 생성]
56
- ✓ stages/04-ui-ux/HANDOFF.md 생성됨
55
+ [HANDOFF.md Generation]
56
+ ✓ stages/04-ui-ux/HANDOFF.md created
57
57
 
58
- [상태 업데이트]
58
+ [State Update]
59
59
  ✓ 04-ui-ux: completed
60
60
  ✓ 05-task-management: in_progress
61
- ✓ progress.json 업데이트됨
61
+ ✓ progress.json updated
62
62
 
63
63
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
64
- ✅ 05-task-management 스테이지 시작!
64
+ ✅ 05-task-management stage started!
65
65
 
66
- 다음 작업:
67
- 1. stages/05-task-management/CLAUDE.md 참조
68
- 2. PRD.md 기반 태스크 분해 시작
69
- 3. /tasks 명령어로 바로 시작 가능
66
+ Next tasks:
67
+ 1. Reference stages/05-task-management/CLAUDE.md
68
+ 2. Start task breakdown based on PRD.md
69
+ 3. Can start directly with /tasks command
70
70
 
71
71
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
72
72
  ```
73
73
 
74
- ### 조건 미충족
74
+ ### Criteria Not Met
75
75
  ```
76
76
  /next
77
77
 
78
78
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
79
- ⚠️ 스테이지 전환 불가
79
+ ⚠️ Stage Transition Not Possible
80
80
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
81
- 현재: 06-implementation
81
+ Current: 06-implementation
82
82
 
83
- [완료 조건 검증]
84
- ✓ src/ 디렉토리 존재
85
- 구현 파일 생성됨
86
- 체크포인트 필수 (미생성)
87
- ✗ tests/ 통과 확인 필요
83
+ [Completion Criteria Verification]
84
+ ✓ src/ directory exists
85
+ Implementation files generated
86
+ Checkpoint required (not created)
87
+ ✗ tests/ pass confirmation needed
88
88
 
89
- 다음 단계:
90
- 1. /checkpoint 실행
91
- 2. 테스트 실행 결과 확인
92
- 3. /next --force 강제 전환 (비권장)
89
+ Next steps:
90
+ 1. Run /checkpoint
91
+ 2. Run tests and verify results
92
+ 3. Force transition with /next --force (not recommended)
93
93
 
94
94
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
95
95
  ```
96
96
 
97
- ## 옵션
97
+ ## Options
98
98
 
99
- | 옵션 | 설명 |
100
- |------|------|
101
- | `--force` | 완료 조건 검증 건너뛰기 (비권장) |
102
- | `--preview` | 전환 미리보기만 (실제 전환 안 함) |
103
- | `--no-handoff` | HANDOFF.md 생성 안 함 |
99
+ | Option | Description |
100
+ |--------|-------------|
101
+ | `--force` | Skip completion criteria verification (not recommended) |
102
+ | `--preview` | Preview only (no actual transition) |
103
+ | `--no-handoff` | Skip HANDOFF.md generation |
104
104
 
105
- ## 완료 조건 (스테이지별)
105
+ ## Completion Criteria (By Stage)
106
106
 
107
- | 스테이지 | 필수 outputs | 체크포인트 |
108
- |----------|-------------|-----------|
107
+ | Stage | Required Outputs | Checkpoint |
108
+ |-------|------------------|------------|
109
109
  | 01-brainstorm | ideas.md, decisions.md | - |
110
110
  | 02-research | research.md, tech-stack.md | - |
111
111
  | 03-planning | PRD.md, architecture.md | - |
112
112
  | 04-ui-ux | wireframes/, components.md | - |
113
113
  | 05-task-mgmt | tasks.json, sprints.md | - |
114
- | 06-implementation | src/, tests/ | ✅ 필수 |
115
- | 07-refactoring | (변경된 src/) | ✅ 필수 |
114
+ | 06-implementation | src/, tests/ | ✅ Required |
115
+ | 07-refactoring | (modified src/) | ✅ Required |
116
116
  | 08-qa | qa-report.md | - |
117
117
  | 09-testing | test-results.md | - |
118
- | 10-deployment | CI/CD 완료 | - |
118
+ | 10-deployment | CI/CD complete | - |
119
119
 
120
- ## 관련 명령어
120
+ ## Related Commands
121
121
 
122
- - `/status` - 현재 상태 확인
123
- - `/handoff` - HANDOFF.md 생성
124
- - `/checkpoint` - 체크포인트 생성
125
- - `/run-stage [id]` - 특정 스테이지로 이동
122
+ - `/status` - Check current status
123
+ - `/handoff` - Generate HANDOFF.md only
124
+ - `/checkpoint` - Create checkpoint
125
+ - `/run-stage [id]` - Move to specific stage
@@ -1,69 +1,69 @@
1
1
  # /planning
2
2
 
3
- 03-planning 스테이지를 바로 시작합니다.
3
+ Start the 03-planning stage directly.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /planning
8
8
  ```
9
9
 
10
- ## 스테이지 정보
10
+ ## Stage Information
11
11
 
12
- | 항목 | |
13
- |------|-----|
14
- | 스테이지 | 03-planning |
15
- | AI 모델 | Gemini |
16
- | 실행 모드 | Plan Mode |
17
- | 체크포인트 | 선택 |
12
+ | Item | Value |
13
+ |------|-------|
14
+ | Stage | 03-planning |
15
+ | AI Model | Gemini |
16
+ | Execution Mode | Plan Mode |
17
+ | Checkpoint | Optional |
18
18
 
19
- ## 동작
19
+ ## Actions
20
20
 
21
- 1. **전제 조건 확인**
22
- - 02-research 완료 여부
23
- - research.md, tech-stack.md 존재
21
+ 1. **Prerequisite Check**
22
+ - 02-research completion status
23
+ - research.md, tech-stack.md exist
24
24
 
25
- 2. **기획 실행**
26
- - PRD (Product Requirements Document) 작성
27
- - 아키텍처 설계
28
- - 기술 명세
25
+ 2. **Execute Planning**
26
+ - PRD (Product Requirements Document) writing
27
+ - Architecture design
28
+ - Technical specification
29
29
 
30
- 3. **산출물 생성**
31
- - PRD.md - 제품 요구사항 문서
32
- - architecture.md - 아키텍처 설계
30
+ 3. **Output Generation**
31
+ - PRD.md - Product Requirements Document
32
+ - architecture.md - Architecture design
33
33
 
34
- ## 실행
34
+ ## Execution
35
35
 
36
36
  ```bash
37
37
  scripts/run-stage.sh 03-planning "$ARGUMENTS"
38
38
  ```
39
39
 
40
- ## 입력 파일
40
+ ## Input Files
41
41
 
42
42
  - `stages/02-research/outputs/research.md`
43
43
  - `stages/02-research/outputs/tech-stack.md`
44
44
 
45
- ## 출력 파일
45
+ ## Output Files
46
46
 
47
47
  - `stages/03-planning/outputs/PRD.md`
48
48
  - `stages/03-planning/outputs/architecture.md`
49
49
 
50
- ## 관련 명령어
50
+ ## Related Commands
51
51
 
52
- - `/run-stage 03` - 전제조건 확인 시작
53
- - `/next` - 다음 스테이지 (04-ui-ux)
54
- - `/research` - 이전 스테이지
55
- - `/gemini` - Gemini CLI 직접 호출
52
+ - `/run-stage 03` - Start after prerequisite check
53
+ - `/next` - Next stage (04-ui-ux)
54
+ - `/research` - Previous stage
55
+ - `/gemini` - Direct Gemini CLI call
56
56
 
57
- ## PRD 구조
57
+ ## PRD Structure
58
58
 
59
59
  ```markdown
60
- # PRD: [프로젝트명]
61
-
62
- ## 개요
63
- ## 목표
64
- ## 기능 요구사항
65
- ## 비기능 요구사항
66
- ## 기술 스택
67
- ## 일정
68
- ## 위험 요소
60
+ # PRD: [Project Name]
61
+
62
+ ## Overview
63
+ ## Goals
64
+ ## Functional Requirements
65
+ ## Non-Functional Requirements
66
+ ## Tech Stack
67
+ ## Timeline
68
+ ## Risk Factors
69
69
  ```
@@ -1,81 +1,81 @@
1
1
  # /qa
2
2
 
3
- 08-qa 스테이지를 바로 시작합니다.
3
+ Start the 08-qa stage directly.
4
4
 
5
- ## 사용법
5
+ ## Usage
6
6
  ```
7
7
  /qa [focus-area]
8
8
  ```
9
9
 
10
- ## 스테이지 정보
10
+ ## Stage Information
11
11
 
12
- | 항목 | |
13
- |------|-----|
14
- | 스테이지 | 08-qa |
15
- | AI 모델 | ClaudeCode |
16
- | 실행 모드 | Plan Mode + Sandbox |
17
- | 체크포인트 | 선택 |
12
+ | Item | Value |
13
+ |------|-------|
14
+ | Stage | 08-qa |
15
+ | AI Model | ClaudeCode |
16
+ | Execution Mode | Plan Mode + Sandbox |
17
+ | Checkpoint | Optional |
18
18
 
19
- ## 동작
19
+ ## Actions
20
20
 
21
- 1. **전제 조건 확인**
22
- - 07-refactoring 완료 여부
23
- - src/, tests/ 존재
21
+ 1. **Prerequisite Check**
22
+ - 07-refactoring completion status
23
+ - src/, tests/ exist
24
24
 
25
- 2. **QA 실행**
26
- - 코드 품질 검사
27
- - 보안 취약점 스캔
28
- - 성능 분석
25
+ 2. **Execute QA**
26
+ - Code quality inspection
27
+ - Security vulnerability scan
28
+ - Performance analysis
29
29
 
30
- 3. **산출물 생성**
31
- - qa-report.md - QA 보고서
32
- - issues.json - 발견된 이슈
30
+ 3. **Output Generation**
31
+ - qa-report.md - QA report
32
+ - issues.json - Discovered issues
33
33
 
34
- ## 실행
34
+ ## Execution
35
35
 
36
36
  ```bash
37
37
  scripts/run-stage.sh 08-qa "$ARGUMENTS"
38
38
  ```
39
39
 
40
- ## 입력 파일
40
+ ## Input Files
41
41
 
42
42
  - `stages/06-implementation/outputs/src/`
43
43
  - `stages/07-refactoring/outputs/refactoring-report.md`
44
44
 
45
- ## 출력 파일
45
+ ## Output Files
46
46
 
47
47
  - `stages/08-qa/outputs/qa-report.md`
48
48
  - `stages/08-qa/outputs/issues.json`
49
49
  - `stages/08-qa/outputs/security-audit.md`
50
50
 
51
- ## QA 체크리스트
51
+ ## QA Checklist
52
52
 
53
- ### 코드 품질
54
- - [ ] 린트 규칙 통과
55
- - [ ] 타입 체크 통과
56
- - [ ] 코드 복잡도 검사
57
- - [ ] 테스트 커버리지 확인
53
+ ### Code Quality
54
+ - [ ] Lint rules passed
55
+ - [ ] Type check passed
56
+ - [ ] Code complexity inspection
57
+ - [ ] Test coverage verification
58
58
 
59
- ### 보안
60
- - [ ] 의존성 취약점 스캔
61
- - [ ] 하드코딩된 시크릿 검사
62
- - [ ] OWASP Top 10 검토
59
+ ### Security
60
+ - [ ] Dependency vulnerability scan
61
+ - [ ] Hardcoded secrets inspection
62
+ - [ ] OWASP Top 10 review
63
63
 
64
- ### 성능
65
- - [ ] 번들 크기 분석
66
- - [ ] 렌더링 성능
67
- - [ ] 메모리 사용량
64
+ ### Performance
65
+ - [ ] Bundle size analysis
66
+ - [ ] Rendering performance
67
+ - [ ] Memory usage
68
68
 
69
- ## 관련 명령어
69
+ ## Related Commands
70
70
 
71
- - `/run-stage 08` - 전제조건 확인 시작
72
- - `/next` - 다음 스테이지 (09-testing)
73
- - `/refactor` - 이전 스테이지
74
- - `/test` - 테스팅 바로 시작
71
+ - `/run-stage 08` - Start after prerequisite check
72
+ - `/next` - Next stage (09-testing)
73
+ - `/refactor` - Previous stage
74
+ - `/test` - Start testing directly
75
75
 
76
- ## QA 도구
76
+ ## QA Tools
77
77
 
78
- - ESLint/Prettier - 코드 스타일
79
- - TypeScript - 타입 검사
80
- - npm audit - 보안 스캔
81
- - Coverage - 테스트 커버리지
78
+ - ESLint/Prettier - Code style
79
+ - TypeScript - Type checking
80
+ - npm audit - Security scan
81
+ - Coverage - Test coverage