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
  # Context Compression Prompts
2
2
 
3
- 컨텍스트 압축 복구 사용되는 프롬프트 템플릿입니다.
3
+ Prompt templates used for context compression and recovery.
4
4
 
5
- ## 토큰 경고 프롬프트
5
+ ## Token Warning Prompts
6
6
 
7
- ### 50,000 토큰 (경고)
7
+ ### 50,000 Tokens (Warning)
8
8
 
9
9
  ```
10
10
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
11
- ⚠️ 컨텍스트 사용량 경고
11
+ ⚠️ Context Usage Warning
12
12
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
13
13
 
14
- 현재 토큰: ~{{CURRENT_TOKENS}} / 80,000
15
- 상태: {{PERCENTAGE}}% 사용
14
+ Current tokens: ~{{CURRENT_TOKENS}} / 80,000
15
+ Status: {{PERCENTAGE}}% used
16
16
 
17
- 권장 조치:
18
- 1. /context --compress 로 압축
19
- 2. 또는 /context --save 저장 후 /clear
17
+ Recommended actions:
18
+ 1. Compress with /context --compress
19
+ 2. Or /context --save then /clear
20
20
 
21
- 현재 스테이지: {{CURRENT_STAGE}}
21
+ Current stage: {{CURRENT_STAGE}}
22
22
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
23
23
  ```
24
24
 
25
- ### 80,000 토큰 (한도)
25
+ ### 80,000 Tokens (Limit)
26
26
 
27
27
  ```
28
28
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
29
- 🔴 컨텍스트 한도 도달
29
+ 🔴 Context Limit Reached
30
30
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
31
31
 
32
- 토큰 한도(80,000) 도달했습니다.
32
+ Token limit (80,000) has been reached.
33
33
 
34
- 자동 저장 실행 중...
34
+ Executing auto-save...
35
35
 
36
- [저장 내용]
37
- 현재 스테이지: {{CURRENT_STAGE}}
38
- 진행 상황: {{PROGRESS}}
39
- 결정사항: {{DECISION_COUNT}}
36
+ [Saved Content]
37
+ Current stage: {{CURRENT_STAGE}}
38
+ Progress: {{PROGRESS}}
39
+ Decisions: {{DECISION_COUNT}}
40
40
 
41
- 저장 위치: state/context/state.md
41
+ Save location: state/context/state.md
42
42
 
43
43
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
44
- /clear 작업을 계속하려면 state.md를 참조하세요.
44
+ To continue after /clear, reference state.md.
45
45
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
46
46
  ```
47
47
 
48
- ## 압축 결과 프롬프트
48
+ ## Compression Result Prompt
49
49
 
50
50
  ```
51
51
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
52
- 컨텍스트 압축 완료
52
+ Context Compression Complete
53
53
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
54
54
 
55
- [압축 요약]
56
- 압축 전: {{BEFORE_TOKENS}} 토큰
57
- 압축 후: {{AFTER_TOKENS}} 토큰
58
- 절감: {{SAVED_PERCENTAGE}}%
55
+ [Compression Summary]
56
+ Before: {{BEFORE_TOKENS}} tokens
57
+ After: {{AFTER_TOKENS}} tokens
58
+ Reduction: {{SAVED_PERCENTAGE}}%
59
59
 
60
- [유지된 항목]
61
- 결정사항: {{DECISION_COUNT}}
62
- 요구사항: {{REQUIREMENT_COUNT}}
63
- 현재 작업: {{CURRENT_TASK}}
60
+ [Kept Items]
61
+ Decisions: {{DECISION_COUNT}}
62
+ Requirements: {{REQUIREMENT_COUNT}}
63
+ Current task: {{CURRENT_TASK}}
64
64
 
65
- [요약된 항목]
66
- 토론: {{DISCUSSION_COUNT}} → {{SUMMARY_COUNT}}
67
- 코드 리뷰: {{REVIEW_COUNT}}
65
+ [Summarized Items]
66
+ Discussions: {{DISCUSSION_COUNT}} → {{SUMMARY_COUNT}}
67
+ Code reviews: {{REVIEW_COUNT}}
68
68
 
69
- [제거된 항목]
70
- 오류 로그: {{ERROR_COUNT}}
71
- 시행착오: {{RETRY_COUNT}}
69
+ [Removed Items]
70
+ Error logs: {{ERROR_COUNT}}
71
+ Trial/errors: {{RETRY_COUNT}}
72
72
 
73
73
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
74
- 저장: state/context/state.md
74
+ Saved: state/context/state.md
75
75
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
76
76
  ```
77
77
 
78
- ## 복구 프롬프트
78
+ ## Recovery Prompts
79
79
 
80
- ### 복구 제안
80
+ ### Recovery Suggestion
81
81
 
82
82
  ```
83
83
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
84
- 📂 저장된 컨텍스트 발견
84
+ 📂 Saved Context Found
85
85
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
86
86
 
87
- 저장 시점: {{SAVED_AT}}
88
- 스테이지: {{STAGE}}
89
- 진행 상황: {{PROGRESS_SUMMARY}}
87
+ Save time: {{SAVED_AT}}
88
+ Stage: {{STAGE}}
89
+ Progress: {{PROGRESS_SUMMARY}}
90
90
 
91
- 복구하시겠습니까?
91
+ Would you like to recover?
92
92
 
93
- [Y] 복구하고 계속
94
- [N] 새로 시작
95
- [V] 내용 미리보기
93
+ [Y] Recover and continue
94
+ [N] Start fresh
95
+ [V] Preview content
96
96
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
97
97
  ```
98
98
 
99
- ### 복구 완료
99
+ ### Recovery Complete
100
100
 
101
101
  ```
102
102
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
103
- 컨텍스트 복구 완료
103
+ Context Recovery Complete
104
104
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
105
105
 
106
- [복구된 상태]
107
- 스테이지: {{CURRENT_STAGE}}
108
- 진행: {{COMPLETED}}/{{TOTAL}} 완료
109
- 다음 작업: {{NEXT_TASK}}
106
+ [Recovered State]
107
+ Stage: {{CURRENT_STAGE}}
108
+ Progress: {{COMPLETED}}/{{TOTAL}} complete
109
+ Next task: {{NEXT_TASK}}
110
110
 
111
- [핵심 결정사항]
111
+ [Key Decisions]
112
112
  {{#each DECISIONS}}
113
113
  • {{this.title}}: {{this.choice}}
114
114
  {{/each}}
115
115
 
116
- [참조 파일]
116
+ [Reference Files]
117
117
  • stages/{{STAGE}}/CLAUDE.md
118
118
  • stages/{{STAGE}}/outputs/
119
119
 
120
120
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
121
- {{NEXT_TASK}}부터 계속하시겠습니까?
121
+ Continue from {{NEXT_TASK}}?
122
122
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
123
123
  ```
124
124
 
125
- ## state.md 미리보기 프롬프트
125
+ ## state.md Preview Prompt
126
126
 
127
127
  ```
128
128
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
129
- 📄 state.md 미리보기
129
+ 📄 state.md Preview
130
130
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
131
131
 
132
- # 작업 상태 저장 - {{TIMESTAMP}}
132
+ # Work State Save - {{TIMESTAMP}}
133
133
 
134
- ## 현재 스테이지
134
+ ## Current Stage
135
135
  {{STAGE_ID}}: {{STAGE_NAME}}
136
136
 
137
- ## 진행 상황
138
- - 완료: {{COMPLETED_LIST}}
139
- - 진행 중: {{CURRENT}}
140
- - 대기: {{PENDING_LIST}}
137
+ ## Progress
138
+ - Completed: {{COMPLETED_LIST}}
139
+ - In progress: {{CURRENT}}
140
+ - Pending: {{PENDING_LIST}}
141
141
 
142
- ## 핵심 결정사항
142
+ ## Key Decisions
143
143
  {{#each DECISIONS}}
144
144
  - {{this.title}}: {{this.choice}} ({{this.reason}})
145
145
  {{/each}}
@@ -147,26 +147,26 @@
147
147
  ...
148
148
 
149
149
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
150
- [R] 복구 / [E] 편집 복구 / [C] 취소
150
+ [R] Recover / [E] Edit then recover / [C] Cancel
151
151
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
152
152
  ```
153
153
 
154
- ## 스테이지 전환 압축 제안
154
+ ## Stage Transition Compression Suggestion
155
155
 
156
156
  ```
157
- 스테이지 전환 감지: {{PREV}} → {{NEXT}}
157
+ Stage transition detected: {{PREV}} → {{NEXT}}
158
158
 
159
- 이전 스테이지 컨텍스트를 정리하시겠습니까?
159
+ Would you like to clean up previous stage context?
160
160
 
161
- [정리 대상]
162
- • {{PREV}} 관련 토론: ~{{TOKENS}} 토큰
163
- 시행착오 기록: ~{{ERROR_TOKENS}} 토큰
161
+ [Items to Clean]
162
+ • {{PREV}} related discussions: ~{{TOKENS}} tokens
163
+ Trial/error records: ~{{ERROR_TOKENS}} tokens
164
164
 
165
- [유지 항목]
166
- • HANDOFF.md 내용
167
- 핵심 결정사항
165
+ [Items to Keep]
166
+ • HANDOFF.md content
167
+ Key decisions
168
168
 
169
- [Y] 정리 전환
170
- [N] 그대로 전환
171
- [S] 전체 저장 전환
169
+ [Y] Clean then transition
170
+ [N] Transition as-is
171
+ [S] Save all then transition
172
172
  ```
@@ -1,24 +1,24 @@
1
1
  # Output Validator Skill
2
2
 
3
- 스테이지별 산출물 검증 스킬
3
+ Stage-specific output validation skill
4
4
 
5
- ## 개요
5
+ ## Overview
6
6
 
7
- 스테이지의 산출물이 요구사항을 충족하는지 자동으로 검증합니다:
8
- - 필수 파일 존재 확인
9
- - 파일 내용 검증
10
- - 검증 명령어 실행 (lint, test )
11
- - 품질 점수 계산
7
+ Automatically validates that each stage's outputs meet requirements:
8
+ - Required file existence check
9
+ - File content validation
10
+ - Validation command execution (lint, test, etc.)
11
+ - Quality score calculation
12
12
 
13
- ## 트리거
13
+ ## Trigger
14
14
 
15
- - 스테이지 완료 자동 실행
16
- - `/validate` 명령어
17
- - `/next` 명령어 전 자동 체크
15
+ - Auto-runs on stage completion
16
+ - `/validate` command
17
+ - Auto-check before `/next` command
18
18
 
19
- ## 기능
19
+ ## Features
20
20
 
21
- ### 1. 파일 존재 확인
21
+ ### 1. File Existence Check
22
22
  ```yaml
23
23
  required_outputs:
24
24
  ideas.md:
@@ -26,14 +26,14 @@ required_outputs:
26
26
  min_size_bytes: 500
27
27
  ```
28
28
 
29
- ### 2. 내용 검증
29
+ ### 2. Content Validation
30
30
  ```yaml
31
31
  content_checks:
32
32
  min_ideas: 5
33
- has_sections: ["기능", "비기능"]
33
+ has_sections: ["functional", "non-functional"]
34
34
  ```
35
35
 
36
- ### 3. 명령어 검증
36
+ ### 3. Command Validation
37
37
  ```yaml
38
38
  validation_commands:
39
39
  - name: "lint"
@@ -41,46 +41,46 @@ validation_commands:
41
41
  required: true
42
42
  ```
43
43
 
44
- ### 4. 품질 점수
44
+ ### 4. Quality Score
45
45
  ```yaml
46
46
  quality_metrics:
47
47
  lint_score: 0.9
48
48
  test_coverage: 0.8
49
49
  ```
50
50
 
51
- ## 파일 구조
51
+ ## File Structure
52
52
 
53
53
  ```
54
54
  output-validator/
55
- ├── README.md # 파일
56
- ├── validate.md # 검증 프로세스 가이드
55
+ ├── README.md # This file
56
+ ├── validate.md # Validation process guide
57
57
  └── prompts/
58
- └── CLAUDE.md # AI 지침
58
+ └── CLAUDE.md # AI instructions
59
59
  ```
60
60
 
61
- ## 설정
61
+ ## Configuration
62
62
 
63
- `config/output_validation.yaml` 참조
63
+ See `config/output_validation.yaml`
64
64
 
65
- ## 사용 예시
65
+ ## Usage Examples
66
66
 
67
67
  ```bash
68
- # 현재 스테이지 검증
68
+ # Validate current stage
69
69
  /validate
70
70
 
71
- # 특정 스테이지 검증
71
+ # Validate specific stage
72
72
  /validate --stage 06
73
73
 
74
- # 상세 리포트
74
+ # Detailed report
75
75
  /validate --verbose
76
76
 
77
- # 자동 수정 제안
77
+ # Auto-fix suggestions
78
78
  /validate --fix
79
79
  ```
80
80
 
81
- ## 출력
81
+ ## Output
82
82
 
83
- - 검증 결과 리포트
84
- - 품질 점수
85
- - 수정 제안 (실패 )
86
- - `state/validations/` 저장
83
+ - Validation result report
84
+ - Quality score
85
+ - Fix suggestions (on failure)
86
+ - Saved to `state/validations/`
@@ -1,119 +1,115 @@
1
1
  # Output Validator Skill - AI Instructions
2
2
 
3
- ## 역할
3
+ ## Role
4
4
 
5
- 당신은 산출물 검증 전문가입니다. 스테이지의 산출물이 품질 기준을 충족하는지 확인하고, 문제 발견 구체적인 수정 방안을 제시합니다.
5
+ You are an output validation specialist. You verify that each stage's outputs meet quality standards and provide specific fix recommendations when issues are found.
6
6
 
7
- ## 검증 원칙
7
+ ## Validation Principles
8
8
 
9
- ### 1. 완전성 (Completeness)
10
- - 모든 필수 산출물 존재 확인
11
- - 필수 섹션/내용 포함 여부
12
- - 최소 요건 충족 여부
9
+ ### 1. Completeness
10
+ - Verify all required outputs exist
11
+ - Check for required sections/content
12
+ - Verify minimum requirements met
13
13
 
14
- ### 2. 정확성 (Correctness)
15
- - 내용의 기술적 정확성
16
- - 요구사항과의 일치성
17
- - 문법/형식 오류 없음
14
+ ### 2. Correctness
15
+ - Technical accuracy of content
16
+ - Alignment with requirements
17
+ - No grammar/format errors
18
18
 
19
- ### 3. 실행 가능성 (Executability)
20
- - 코드 빌드 가능
21
- - 테스트 통과
22
- - 린트/타입체크 통과
19
+ ### 3. Executability
20
+ - Code can build
21
+ - Tests pass
22
+ - Lint/typecheck pass
23
23
 
24
- ## 검증 프로세스
24
+ ## Validation Process
25
25
 
26
- ### 스테이지 전환 전 검증
26
+ ### Pre-Stage Transition Validation
27
27
  ```
28
- 1. 현재 스테이지 규칙 로드
29
- 2. 필수 파일 존재 확인
30
- 3. 파일 내용 검증
31
- 4. 검증 명령어 실행
32
- 5. 품질 점수 계산
33
- 6. 결과 리포트 생성
28
+ 1. Load current stage rules
29
+ 2. Check required file existence
30
+ 3. Validate file contents
31
+ 4. Execute validation commands
32
+ 5. Calculate quality score
33
+ 6. Generate result report
34
34
  ```
35
35
 
36
- ### 결과에 따른 동작
36
+ ### Behavior Based on Results
37
37
  ```
38
- 통과 (점수 ≥ 0.9): 스테이지 전환 허용
39
- 경고 (0.7 ≤ 점수 < 0.9): 경고 표시 허용
40
- 실패 (점수 < 0.7): 전환 차단, 수정 필요
38
+ Pass (score ≥ 0.9): Allow stage transition
39
+ Warning (0.7 ≤ score < 0.9): Show warning then allow
40
+ Fail (score < 0.7): Block transition, fix required
41
41
  ```
42
42
 
43
- ## 리포트 형식
43
+ ## Report Format
44
44
 
45
- ### 간단 요약
45
+ ### Brief Summary
46
46
  ```
47
- 검증 통과: 06-implementation
48
- 점수: 0.95 | 통과: 12/12
47
+ Validation passed: 06-implementation
48
+ Score: 0.95 | Passed: 12/12
49
49
  ```
50
50
 
51
- ### 상세 리포트
51
+ ### Detailed Report
52
52
  ```markdown
53
- # 산출물 검증 리포트
53
+ # Output Validation Report
54
54
 
55
- ## 요약
56
- - 스테이지: {{stage_id}}
57
- - 상태: {{status}}
58
- - 점수: {{score}}
55
+ ## Summary
56
+ - Stage: {{stage_id}}
57
+ - Status: {{status}}
58
+ - Score: {{score}}
59
59
 
60
- ## 파일 검증
61
- | 파일 | 상태 | 상세 |
62
- |------|------|------|
60
+ ## File Validation
61
+ | File | Status | Details |
62
+ |------|--------|---------|
63
63
 
64
- ## 명령어 검증
65
- | 명령 | 결과 | 상세 |
66
- |------|------|------|
64
+ ## Command Validation
65
+ | Command | Result | Details |
66
+ |---------|--------|---------|
67
67
 
68
- ## 수정 필요 사항
69
- - [ ] 수정 사항 1
70
- - [ ] 수정 사항 2
68
+ ## Required Fixes
69
+ - [ ] Fix item 1
70
+ - [ ] Fix item 2
71
71
  ```
72
72
 
73
- ## 실패 처리
73
+ ## Failure Handling
74
74
 
75
- ### 수정 제안
76
- 실패 항목에 대해 구체적인 수정 방안 제시:
75
+ ### Fix Suggestions
76
+ Provide specific fix recommendations for failed items:
77
77
  ```markdown
78
- ### 실패: 테스트 미통과
79
- **위치**: tests/auth.test.ts:45
80
- **원인**: loginUser 함수 반환값 타입 불일치
81
- **수정 방안**:
82
- 1. UserService.login 반환 타입 확인
83
- 2. 테스트 기대값 수정
78
+ ### Failure: Test not passing
79
+ **Location**: tests/auth.test.ts:45
80
+ **Cause**: loginUser function return type mismatch
81
+ **Fix Recommendation**:
82
+ 1. Check UserService.login return type
83
+ 2. Update test expected value
84
84
  ```
85
85
 
86
- ### 오버라이드 처리
87
- 사용자가 강제 진행 요청 시:
86
+ ### Override Handling
87
+ When user requests forced proceed:
88
88
  ```
89
- 1. 이유 입력 요청
90
- 2. 이유 기록 (HANDOFF에 포함)
91
- 3. 경고와 함께 진행 허용
89
+ 1. Request reason input
90
+ 2. Record reason (include in HANDOFF)
91
+ 3. Allow with warning
92
92
  ```
93
93
 
94
- ## 스테이지별 검증 초점
94
+ ## Stage-Specific Validation Focus
95
95
 
96
96
  ### 01-brainstorm
97
- - 아이디어 다양성
98
- - 요구사항 구조화
97
+ - Idea diversity
98
+ - Requirements structure
99
99
 
100
100
  ### 06-implementation
101
- - 코드 빌드 성공
102
- - 린트/타입체크 통과
103
- - 기본 테스트 통과
101
+ - Code builds successfully
102
+ - Lint/typecheck pass
103
+ - Basic tests pass
104
104
 
105
105
  ### 09-testing
106
- - 테스트 커버리지 80% 이상
107
- - 모든 테스트 통과
108
- - E2E 테스트 성공
109
-
110
- ## 금지 사항
111
-
112
- - 검증 없이 스테이지 전환 허용
113
- - 실패 원인 없이 결과만 보고
114
- - 수정 방안 없이 실패 보고
115
- - 품질 점수 계산 누락
116
-
117
-
106
+ - Test coverage 80%+
107
+ - All tests pass
108
+ - E2E tests succeed
118
109
 
110
+ ## Prohibited Actions
119
111
 
112
+ - Allow stage transition without validation
113
+ - Report failure without cause
114
+ - Report failure without fix recommendation
115
+ - Omit quality score calculation