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,124 +1,120 @@
1
1
  # Stage 09: Testing & E2E
2
2
 
3
- 테스트 코드 작성 E2E 테스트 단계
4
-
5
- ## 🎭 페르소나: Test Engineer
6
-
7
- > 당신은 Test Engineer입니다.
8
- > 신뢰할 있고 유지보수 가능한 테스트를 작성하세요.
9
- > 높은 커버리지와 명확한 테스트 케이스를 목표로 하세요.
10
-
11
- ### 특성
12
- - 체계적 테스트
13
- - 커버리지 최적화
14
- - 자동화 지향
15
- - 재현 가능성
16
-
17
- ### 권장 행동
18
- - 높은 테스트 커버리지
19
- - 다양한 시나리오
20
- - 자동화된 테스트
21
- - 명확한 단언문
22
-
23
- ### 지양 행동
24
- - 불안정한 테스트
25
- - 하드코딩된
26
- - 의존성 많은 테스트
27
-
28
- ### AI 설정
29
- - **Temperature**: 0.4 (체계적 설계)
30
- - **커버리지 집중**: High
31
- - **자동화 수준**: High
32
-
33
- ## 실행 모델
34
- - **Primary**: Codex (테스트 코드 생성)
3
+ Test code writing and E2E testing stage
4
+
5
+ ## Persona: Test Engineer
6
+
7
+ > You are a Test Engineer.
8
+ > Write reliable and maintainable tests.
9
+ > Aim for high coverage and clear test cases.
10
+
11
+ ### Characteristics
12
+ - Systematic testing
13
+ - Coverage optimization
14
+ - Automation-oriented
15
+ - Reproducibility
16
+
17
+ ### Recommended Actions
18
+ - High test coverage
19
+ - Various scenarios
20
+ - Automated tests
21
+ - Clear assertions
22
+
23
+ ### Actions to Avoid
24
+ - Flaky tests
25
+ - Hardcoded values
26
+ - Tests with many dependencies
27
+
28
+ ### AI Settings
29
+ - **Temperature**: 0.4 (systematic design)
30
+ - **Coverage Focus**: High
31
+ - **Automation Level**: High
32
+
33
+ ## Execution Model
34
+ - **Primary**: Codex (test code generation)
35
35
  - **Mode**: Sandbox + Playwright
36
- - **MCP**: playwright 서버 연동
36
+ - **MCP**: playwright server integration
37
37
 
38
- ## 목표
39
- 1. 단위 테스트 작성
40
- 2. 통합 테스트 작성
41
- 3. E2E 테스트 작성 (Playwright)
42
- 4. 테스트 커버리지 확보
38
+ ## Goals
39
+ 1. Unit test writing
40
+ 2. Integration test writing
41
+ 3. E2E test writing (Playwright)
42
+ 4. Test coverage achievement
43
43
 
44
- ## 입력 파일
45
- - `../07-refactoring/outputs/refactored_code/` (또는 수정된 코드)
44
+ ## Input Files
45
+ - `../07-refactoring/outputs/refactored_code/` (or modified code)
46
46
  - `../08-qa/outputs/qa_report.md`
47
47
  - `../08-qa/HANDOFF.md`
48
48
 
49
- ## 출력 파일
50
- - `outputs/tests/` - 테스트 코드
51
- - `outputs/test_report.md` - 테스트 결과 보고서
52
- - `outputs/coverage_report.md` - 커버리지 보고서
53
- - `HANDOFF.md` - 다음 스테이지 인계 문서
49
+ ## Output Files
50
+ - `outputs/tests/` - Test code
51
+ - `outputs/test_report.md` - Test results report
52
+ - `outputs/coverage_report.md` - Coverage report
53
+ - `HANDOFF.md` - Handoff document for next stage
54
54
 
55
- ## Codex CLI 활용
55
+ ## Codex CLI Usage
56
56
 
57
- ### 단위 테스트 생성
57
+ ### Unit Test Generation
58
58
  ```bash
59
- /codex "다음 함수에 대한 단위 테스트를 작성해주세요:
60
- [함수 코드]
61
- 테스트 프레임워크: Vitest/Jest
62
- 커버리지 목표: 80%"
59
+ /codex "Write unit tests for the following function:
60
+ [function code]
61
+ Test framework: Vitest/Jest
62
+ Coverage target: 80%"
63
63
  ```
64
64
 
65
- ### E2E 테스트 생성
65
+ ### E2E Test Generation
66
66
  ```bash
67
- /codex "다음 사용자 플로우에 대한 Playwright 테스트를 작성해주세요:
68
- 1. 로그인 플로우
69
- 2. 핵심 기능 테스트
70
- 3. 에러 시나리오"
67
+ /codex "Write Playwright tests for the following user flows:
68
+ 1. Login flow
69
+ 2. Core feature test
70
+ 3. Error scenarios"
71
71
  ```
72
72
 
73
- ## 워크플로우
73
+ ## Workflow
74
74
 
75
- ### 1. 테스트 환경 설정
75
+ ### 1. Test Environment Setup
76
76
  ```bash
77
- # Vitest 설정
77
+ # Vitest setup
78
78
  npm install -D vitest @testing-library/react
79
79
 
80
- # Playwright 설정
80
+ # Playwright setup
81
81
  npm install -D @playwright/test
82
82
  npx playwright install
83
83
  ```
84
84
 
85
- ### 2. 단위 테스트 작성
86
- - 유틸리티 함수
87
- - 컴포넌트 렌더링
88
- - 테스트
89
- - API 핸들러
85
+ ### 2. Unit Test Writing
86
+ - Utility functions
87
+ - Component rendering
88
+ - Hook tests
89
+ - API handlers
90
90
 
91
- ### 3. 통합 테스트
92
- - API 통합 테스트
93
- - 컴포넌트 통합 테스트
94
- - 데이터 흐름 테스트
91
+ ### 3. Integration Tests
92
+ - API integration tests
93
+ - Component integration tests
94
+ - Data flow tests
95
95
 
96
- ### 4. E2E 테스트
97
- - 핵심 사용자 플로우
98
- - 인증 플로우
99
- - 에러 처리 시나리오
96
+ ### 4. E2E Tests
97
+ - Core user flows
98
+ - Authentication flows
99
+ - Error handling scenarios
100
100
 
101
- ### 5. 커버리지 분석
102
- - 목표 커버리지 확인
103
- - 커버되지 않은 영역 식별
101
+ ### 5. Coverage Analysis
102
+ - Verify target coverage
103
+ - Identify uncovered areas
104
104
 
105
- ## 커버리지 목표
105
+ ## Coverage Targets
106
106
  - **Statements**: 80%
107
107
  - **Branches**: 75%
108
108
  - **Functions**: 80%
109
109
  - **Lines**: 80%
110
110
 
111
- ## 완료 조건
112
- - [ ] 단위 테스트 작성 (커버리지 80%+)
113
- - [ ] 통합 테스트 작성
114
- - [ ] E2E 테스트 작성 (핵심 플로우)
115
- - [ ] 모든 테스트 통과
116
- - [ ] 커버리지 보고서 생성
117
- - [ ] HANDOFF.md 생성
118
-
119
- ## 다음 스테이지
120
- → **10-deployment**: CI/CD 및 배포
121
-
122
-
123
-
111
+ ## Completion Criteria
112
+ - [ ] Unit tests written (coverage 80%+)
113
+ - [ ] Integration tests written
114
+ - [ ] E2E tests written (core flows)
115
+ - [ ] All tests passing
116
+ - [ ] Coverage report generated
117
+ - [ ] HANDOFF.md generated
124
118
 
119
+ ## Next Stage
120
+ → **10-deployment**: CI/CD and deployment
@@ -3,7 +3,7 @@
3
3
  stage:
4
4
  id: "09-testing"
5
5
  name: "Testing & E2E"
6
- description: "테스트 코드 작성 E2E 테스트"
6
+ description: "Test code writing and E2E testing"
7
7
 
8
8
  models:
9
9
  primary: "codex"
@@ -22,18 +22,18 @@ mcp_servers:
22
22
  inputs:
23
23
  required:
24
24
  - name: "source_code/"
25
- description: "테스트할 소스 코드"
25
+ description: "Source code to test"
26
26
  - name: "../08-qa/outputs/qa_report.md"
27
27
  - name: "../08-qa/HANDOFF.md"
28
28
 
29
29
  outputs:
30
30
  required:
31
31
  - name: "tests/"
32
- description: "테스트 코드"
32
+ description: "Test code"
33
33
  - name: "test_report.md"
34
- description: "테스트 결과 보고서"
34
+ description: "Test results report"
35
35
  - name: "coverage_report.md"
36
- description: "커버리지 보고서"
36
+ description: "Coverage report"
37
37
  - name: "HANDOFF.md"
38
38
 
39
39
  prompts:
@@ -49,11 +49,11 @@ prompts:
49
49
 
50
50
  completion:
51
51
  checklist:
52
- - "단위 테스트 작성 (커버리지 80%+)"
53
- - "통합 테스트 작성"
54
- - "E2E 테스트 작성"
55
- - "모든 테스트 통과"
56
- - "커버리지 보고서 생성"
52
+ - "Unit tests written (coverage 80%+)"
53
+ - "Integration tests written"
54
+ - "E2E tests written"
55
+ - "All tests passing"
56
+ - "Coverage report generated"
57
57
  validation:
58
58
  min_coverage: 80
59
59
 
@@ -1,49 +1,49 @@
1
- # AI 협업 프롬프트 - Testing & E2E
1
+ # AI Collaboration Prompt - Testing & E2E
2
2
 
3
- ## 협업 모드: Test Generation Chain
3
+ ## Collaboration Mode: Test Generation Chain
4
4
 
5
- 스테이지에서는 **테스트 생성 체인**을 사용하여 포괄적인 테스트를 작성합니다.
5
+ This stage uses **test generation chain** to write comprehensive tests.
6
6
 
7
- ### 참여 모델
8
- - **Codex**: 테스트 코드 생성
9
- - **ClaudeCode**: E2E 테스트, Playwright 통합
7
+ ### Participating Models
8
+ - **Codex**: Test code generation
9
+ - **ClaudeCode**: E2E tests, Playwright integration
10
10
 
11
- ### 협업 프롬프트
11
+ ### Collaboration Prompt
12
12
 
13
13
  ```
14
- # 테스트 생성 체인
14
+ # Test generation chain
15
15
  /collaborate --mode sequential --chain "codex:unit_tests -> codex:integration_tests -> claude:e2e_tests"
16
16
  ```
17
17
 
18
- ### 테스트 계층
18
+ ### Test Layers
19
19
 
20
- | 계층 | 담당 AI | 도구 |
21
- |------|---------|------|
22
- | 단위 테스트 | Codex | Vitest/Jest |
23
- | 통합 테스트 | Codex | Testing Library |
24
- | E2E 테스트 | Claude | Playwright |
20
+ | Layer | Responsible AI | Tools |
21
+ |-------|---------------|-------|
22
+ | Unit Tests | Codex | Vitest/Jest |
23
+ | Integration Tests | Codex | Testing Library |
24
+ | E2E Tests | Claude | Playwright |
25
25
 
26
- ### Codex 활용
26
+ ### Codex Usage
27
27
 
28
28
  ```bash
29
- # 단위 테스트 생성
30
- /codex "다음 함수에 대한 단위 테스트 작성:
31
- [함수 코드]
32
- 테스트 프레임워크: Vitest
33
- 커버리지 목표: 80%"
34
-
35
- # E2E 테스트 생성
36
- /codex "다음 사용자 플로우에 대한 Playwright 테스트:
37
- 1. 로그인
38
- 2. 핵심 기능
39
- 3. 에러 시나리오"
29
+ # Unit test generation
30
+ /codex "Write unit tests for the following function:
31
+ [function code]
32
+ Test framework: Vitest
33
+ Coverage target: 80%"
34
+
35
+ # E2E test generation
36
+ /codex "Write Playwright tests for the following user flows:
37
+ 1. Login
38
+ 2. Core features
39
+ 3. Error scenarios"
40
40
  ```
41
41
 
42
- ### MCP 서버: Playwright
42
+ ### MCP Server: Playwright
43
43
 
44
44
  ```javascript
45
- // E2E 테스트 예시
46
- test('로그인 플로우', async ({ page }) => {
45
+ // E2E test example
46
+ test('Login flow', async ({ page }) => {
47
47
  await page.goto('/login');
48
48
  await page.fill('[name="email"]', 'test@example.com');
49
49
  await page.fill('[name="password"]', 'password');
@@ -52,24 +52,24 @@ test('로그인 플로우', async ({ page }) => {
52
52
  });
53
53
  ```
54
54
 
55
- ### 출력 형식
55
+ ### Output Format
56
56
 
57
57
  ```markdown
58
- ## AI 협업 결과
58
+ ## AI Collaboration Results
59
59
 
60
- ### Codex 단위 테스트
61
- - [파일]: [테스트 케이스 ]
60
+ ### Codex Unit Tests
61
+ - [File]: [Test case count]
62
62
  ...
63
63
 
64
- ### Codex 통합 테스트
65
- - [시나리오]: [커버리지]
64
+ ### Codex Integration Tests
65
+ - [Scenario]: [Coverage]
66
66
  ...
67
67
 
68
- ### Claude E2E 테스트
69
- - [플로우]: [테스트 케이스]
68
+ ### Claude E2E Tests
69
+ - [Flow]: [Test cases]
70
70
  ...
71
71
 
72
- ### 커버리지 요약
72
+ ### Coverage Summary
73
73
  - Statements: X%
74
74
  - Branches: X%
75
75
  - Functions: X%
@@ -1,83 +1,83 @@
1
- # 산출물 검증 프롬프트 - Testing & E2E
1
+ # Output Validation Prompt - Testing & E2E
2
2
 
3
- ## 검증 대상
3
+ ## Validation Targets
4
4
 
5
- | 산출물 | 필수 조건 | 검증 방법 |
6
- |--------|----------|----------|
7
- | `tests/` | 커버리지 80%+ | `npm run test:coverage` |
8
- | `test_report.md` | 100% 통과 | 결과 확인 |
9
- | `coverage_report.md` | 메트릭 포함 | 구조 확인 |
10
- | `HANDOFF.md` | 배포 준비 상태 | 항목 확인 |
5
+ | Output | Required Condition | Validation Method |
6
+ |--------|-------------------|-------------------|
7
+ | `tests/` | Coverage 80%+ | `npm run test:coverage` |
8
+ | `test_report.md` | 100% pass | Results verification |
9
+ | `coverage_report.md` | Metrics included | Structure verification |
10
+ | `HANDOFF.md` | Deployment ready state | Item verification |
11
11
 
12
- ## 검증 명령
12
+ ## Validation Command
13
13
 
14
14
  ```bash
15
15
  /validate --stage 09-testing
16
16
  ```
17
17
 
18
- ## 품질 기준
18
+ ## Quality Criteria
19
19
 
20
20
  ### tests/
21
- - [ ] 단위 테스트 존재
22
- - [ ] 통합 테스트 존재
23
- - [ ] E2E 테스트 존재 (핵심 플로우)
24
- - [ ] 모든 테스트 통과
21
+ - [ ] Unit tests exist
22
+ - [ ] Integration tests exist
23
+ - [ ] E2E tests exist (core flows)
24
+ - [ ] All tests passing
25
25
 
26
- ### 커버리지 목표
26
+ ### Coverage Targets
27
27
  - [ ] Statements: 80%+
28
28
  - [ ] Branches: 75%+
29
29
  - [ ] Functions: 80%+
30
30
  - [ ] Lines: 80%+
31
31
 
32
32
  ### test_report.md
33
- - [ ] 테스트 케이스 목록
34
- - [ ] 통과/실패 현황
35
- - [ ] 실패 테스트 분석 (있는 경우)
33
+ - [ ] Test case list
34
+ - [ ] Pass/fail status
35
+ - [ ] Failed test analysis (if any)
36
36
 
37
37
  ### coverage_report.md
38
- - [ ] 커버리지 요약
39
- - [ ] 파일별 커버리지
40
- - [ ] 커버되지 않은 영역 식별
38
+ - [ ] Coverage summary
39
+ - [ ] Per-file coverage
40
+ - [ ] Uncovered areas identified
41
41
 
42
42
  ### HANDOFF.md
43
- - [ ] 테스트 통과 확인
44
- - [ ] 커버리지 달성 확인
45
- - [ ] 배포 준비 체크리스트
43
+ - [ ] Tests passing confirmation
44
+ - [ ] Coverage achievement confirmation
45
+ - [ ] Deployment ready checklist
46
46
 
47
- ## 자동 검증 스크립트
47
+ ## Auto Validation Script
48
48
 
49
49
  ```bash
50
- # 단위/통합 테스트 실행
50
+ # Run unit/integration tests
51
51
  npm run test
52
52
 
53
- # 커버리지 측정
53
+ # Measure coverage
54
54
  npm run test:coverage
55
55
 
56
- # E2E 테스트 실행
56
+ # Run E2E tests
57
57
  npm run test:e2e
58
58
 
59
- # 커버리지 임계값 확인
59
+ # Verify coverage threshold
60
60
  npm run test:coverage -- --coverageThreshold='{"global":{"statements":80,"branches":75,"functions":80,"lines":80}}'
61
61
  ```
62
62
 
63
- ## 커버리지 메트릭
63
+ ## Coverage Metrics
64
64
 
65
- | 메트릭 | 목표 | 실제 | 상태 |
66
- |--------|------|------|------|
65
+ | Metric | Target | Actual | Status |
66
+ |--------|--------|--------|--------|
67
67
  | Statements | 80% | - | - |
68
68
  | Branches | 75% | - | - |
69
69
  | Functions | 80% | - | - |
70
70
  | Lines | 80% | - | - |
71
71
 
72
- ## E2E 테스트 체크리스트
72
+ ## E2E Test Checklist
73
73
 
74
- - [ ] 인증 플로우 테스트
75
- - [ ] 핵심 기능 플로우 테스트
76
- - [ ] 에러 시나리오 테스트
77
- - [ ] 반응형 테스트 (선택적)
74
+ - [ ] Authentication flow test
75
+ - [ ] Core feature flow test
76
+ - [ ] Error scenario test
77
+ - [ ] Responsive test (optional)
78
78
 
79
- ## 실패 조치
79
+ ## Actions on Failure
80
80
 
81
- 1. 테스트 실패버그 수정 재실행
82
- 2. 커버리지 미달테스트 추가
83
- 3. E2E 실패 → UI/로직 수정
81
+ 1. Test failureFix bug and re-run
82
+ 2. Coverage not met Add more tests
83
+ 3. E2E failureFix UI/logic