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,71 +1,71 @@
1
- # AI 협업 프롬프트 - Refactoring
1
+ # AI Collaboration Prompt - Refactoring
2
2
 
3
- ## 협업 모드: Sequential Review Chain
3
+ ## Collaboration Mode: Sequential Review Chain
4
4
 
5
- 스테이지에서는 **순차적 리뷰 체인**을 사용하여 리팩토링 품질을 보장합니다.
5
+ This stage uses **sequential review chain** to ensure refactoring quality.
6
6
 
7
- ### 참여 모델
8
- - **Codex**: 코드 분석, 최적화
9
- - **ClaudeCode**: 복잡한 리팩토링, 검증
7
+ ### Participating Models
8
+ - **Codex**: Code analysis, optimization
9
+ - **ClaudeCode**: Complex refactoring, verification
10
10
 
11
- ### 협업 프롬프트
11
+ ### Collaboration Prompt
12
12
 
13
13
  ```
14
- # 리뷰 체인: Codex 분석 → Claude 검증
14
+ # Review chain: Codex analyze → Claude review
15
15
  /collaborate --mode sequential --chain "codex:analyze -> claude:review -> codex:refactor"
16
16
  ```
17
17
 
18
- ### AI 벤치마킹
18
+ ### AI Benchmarking
19
19
 
20
- 성능 최적화 비교:
20
+ Performance optimization comparison:
21
21
  ```
22
22
  /benchmark --task "performance_optimization" --models "codex,claude"
23
23
  ```
24
24
 
25
- ### 작업 흐름
25
+ ### Workflow
26
26
 
27
- 1. **분석**: 정적 분석, 복잡도 측정
28
- 2. **계획**: 리팩토링 우선순위 결정
29
- 3. **실행**: 작은 단위로 리팩토링
30
- 4. **검증**: 테스트 통과 확인
27
+ 1. **Analysis**: Static analysis, complexity measurement
28
+ 2. **Planning**: Determine refactoring priorities
29
+ 3. **Execution**: Refactor in small units
30
+ 4. **Verification**: Confirm tests pass
31
31
 
32
- ### 체크포인트 필수
32
+ ### Checkpoint Required
33
33
 
34
34
  ```bash
35
- # 리팩토링 체크포인트
36
- /checkpoint --reason "리팩토링 시작 전 상태"
35
+ # Checkpoint before refactoring
36
+ /checkpoint --reason "State before refactoring"
37
37
 
38
- # 주요 리팩토링
39
- /checkpoint --reason "함수 X 리팩토링 완료"
38
+ # After major refactoring
39
+ /checkpoint --reason "Function X refactoring complete"
40
40
  ```
41
41
 
42
- ### 롤백 준비
42
+ ### Rollback Preparation
43
43
 
44
44
  ```bash
45
- # 롤백 가능 상태 확인
45
+ # Check rollback-ready state
46
46
  /restore --list
47
47
 
48
- # 필요시 부분 롤백
48
+ # Partial rollback if needed
49
49
  /restore checkpoint_id --partial --files "src/utils/*"
50
50
  ```
51
51
 
52
- ### 출력 형식
52
+ ### Output Format
53
53
 
54
54
  ```markdown
55
- ## AI 협업 결과
55
+ ## AI Collaboration Results
56
56
 
57
- ### Codex 분석
58
- - 복잡도 높은 함수 목록
59
- - 중복 코드 위치
60
- - 성능 병목
57
+ ### Codex Analysis
58
+ - High complexity function list
59
+ - Duplicate code locations
60
+ - Performance bottlenecks
61
61
 
62
- ### Claude 검증
63
- - 리팩토링 영향 범위
64
- - 테스트 필요 영역
65
- - 위험 요소
62
+ ### Claude Verification
63
+ - Refactoring impact scope
64
+ - Areas needing tests
65
+ - Risk factors
66
66
 
67
- ### 리팩토링 계획
68
- 1. [우선순위 1 항목]
69
- 2. [우선순위 2 항목]
67
+ ### Refactoring Plan
68
+ 1. [Priority 1 item]
69
+ 2. [Priority 2 item]
70
70
  ...
71
71
  ```
@@ -1,76 +1,76 @@
1
- # 산출물 검증 프롬프트 - Refactoring
1
+ # Output Validation Prompt - Refactoring
2
2
 
3
- ## 검증 대상
3
+ ## Validation Targets
4
4
 
5
- | 산출물 | 필수 조건 | 검증 방법 |
6
- |--------|----------|----------|
7
- | `refactored_code/` | 동작 유지 | 테스트 통과 |
8
- | `refactored_code/` | 품질 개선 | 메트릭 비교 |
9
- | `refactoring_report.md` | 변경 내역 | 구조 확인 |
10
- | `HANDOFF.md` | 체크포인트 참조 | 항목 확인 |
5
+ | Output | Required Condition | Validation Method |
6
+ |--------|-------------------|-------------------|
7
+ | `refactored_code/` | Behavior maintained | Tests pass |
8
+ | `refactored_code/` | Quality improved | Metric comparison |
9
+ | `refactoring_report.md` | Change history | Structure verification |
10
+ | `HANDOFF.md` | Checkpoint reference | Item verification |
11
11
 
12
- ## 검증 명령
12
+ ## Validation Command
13
13
 
14
14
  ```bash
15
15
  /validate --stage 07-refactoring
16
16
  ```
17
17
 
18
- ## 품질 기준
18
+ ## Quality Criteria
19
19
 
20
20
  ### refactored_code/
21
- - [ ] 모든 기존 테스트 통과
22
- - [ ] Lint 에러 없음
23
- - [ ] 타입 에러 없음
24
- - [ ] 복잡도 감소 (목표: 20%↓)
25
- - [ ] 중복 코드 감소 (목표: 50%↓)
21
+ - [ ] All existing tests pass
22
+ - [ ] No lint errors
23
+ - [ ] No type errors
24
+ - [ ] Complexity reduced (target: 20%↓)
25
+ - [ ] Duplicate code reduced (target: 50%↓)
26
26
 
27
27
  ### refactoring_report.md
28
- - [ ] 리팩토링된 함수/클래스 목록
29
- - [ ] 변경 전후 비교
30
- - [ ] 성능 개선 측정값
31
- - [ ] 남은 기술 부채
28
+ - [ ] List of refactored functions/classes
29
+ - [ ] Before/after comparison
30
+ - [ ] Performance improvement measurements
31
+ - [ ] Remaining technical debt
32
32
 
33
33
  ### HANDOFF.md
34
- - [ ] 완료된 리팩토링 목록
35
- - [ ] 체크포인트 참조
36
- - [ ] QA 필요 영역
34
+ - [ ] Completed refactoring list
35
+ - [ ] Checkpoint reference
36
+ - [ ] Areas needing QA
37
37
 
38
- ## 자동 검증 스크립트
38
+ ## Auto Validation Script
39
39
 
40
40
  ```bash
41
- # 테스트 통과 확인
41
+ # Verify tests pass
42
42
  npm run test
43
43
 
44
- # Lint 검사
44
+ # Lint check
45
45
  npm run lint
46
46
 
47
- # 번들 사이즈 비교
47
+ # Bundle size comparison
48
48
  npm run build && du -sh dist/
49
49
 
50
- # 복잡도 측정 (선택적)
50
+ # Complexity measurement (optional)
51
51
  npx complexity-report src/**/*.ts
52
52
  ```
53
53
 
54
- ## 품질 메트릭 비교
54
+ ## Quality Metrics Comparison
55
55
 
56
- | 메트릭 | 이전 | 이후 | 개선율 |
57
- |--------|------|------|--------|
58
- | 평균 복잡도 | - | - | - |
59
- | 중복 코드 | - | - | - |
60
- | 번들 사이즈 | - | - | - |
56
+ | Metric | Before | After | Improvement |
57
+ |--------|--------|-------|-------------|
58
+ | Average complexity | - | - | - |
59
+ | Duplicate code | - | - | - |
60
+ | Bundle size | - | - | - |
61
61
 
62
- ## 회귀 테스트
62
+ ## Regression Tests
63
63
 
64
64
  ```bash
65
- # 전체 테스트 실행
65
+ # Run full tests
66
66
  npm run test
67
67
 
68
- # E2E 테스트 실행 (있는 경우)
68
+ # Run E2E tests (if available)
69
69
  npm run test:e2e
70
70
  ```
71
71
 
72
- ## 실패 조치
72
+ ## Actions on Failure
73
73
 
74
- 1. 테스트 실패체크포인트로 롤백 재시도
75
- 2. 성능 저하변경 사항 검토 및 최적화
76
- 3. 타입 에러타입 수정 재검증
74
+ 1. Test failureRollback to checkpoint and retry
75
+ 2. Performance degradationReview changes and optimize
76
+ 3. Type errorsFix types and re-verify
@@ -1,93 +1,89 @@
1
1
  # Stage 08: QA
2
2
 
3
- 품질 보증 코드 리뷰 단계
4
-
5
- ## 🎭 페르소나: Quality Guardian
6
-
7
- > 당신은 Quality Guardian입니다.
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.3 (철저한 검토)
30
- - **철저함**: High
31
- - **회의적 태도**: Healthy
32
-
33
- ## 실행 모델
34
- - **Primary**: ClaudeCode (코드 리뷰, 버그 수정)
3
+ Quality assurance and code review stage
4
+
5
+ ## Persona: Quality Guardian
6
+
7
+ > You are a Quality Guardian.
8
+ > Find all possible issues and ensure quality.
9
+ > Pay special attention to edge cases and security vulnerabilities.
10
+
11
+ ### Characteristics
12
+ - Thorough review
13
+ - Edge case discovery
14
+ - Security awareness
15
+ - User perspective
16
+
17
+ ### Recommended Actions
18
+ - Edge case exploration
19
+ - Security vulnerability inspection
20
+ - Performance issue identification
21
+ - Usability review
22
+
23
+ ### Actions to Avoid
24
+ - Surface-level review
25
+ - Positive assumptions
26
+ - Ignoring bugs
27
+
28
+ ### AI Settings
29
+ - **Temperature**: 0.3 (thorough review)
30
+ - **Thoroughness**: High
31
+ - **Skeptical Attitude**: Healthy
32
+
33
+ ## Execution Model
34
+ - **Primary**: ClaudeCode (code review, bug fixing)
35
35
  - **Mode**: Plan + Sandbox
36
36
 
37
- ## 목표
38
- 1. 코드 리뷰 수행
39
- 2. 버그 식별 수정
40
- 3. 보안 취약점 검사
41
- 4. 품질 기준 준수 확인
37
+ ## Goals
38
+ 1. Perform code review
39
+ 2. Identify and fix bugs
40
+ 3. Security vulnerability inspection
41
+ 4. Quality standards compliance verification
42
42
 
43
- ## 입력 파일
43
+ ## Input Files
44
44
  - `../07-refactoring/outputs/refactored_code/`
45
45
  - `../07-refactoring/outputs/refactoring_report.md`
46
46
  - `../07-refactoring/HANDOFF.md`
47
47
 
48
- ## 출력 파일
49
- - `outputs/qa_report.md` - QA 보고서
50
- - `outputs/bug_fixes.md` - 버그 수정 내역
51
- - `HANDOFF.md` - 다음 스테이지 인계 문서
52
-
53
- ## 워크플로우
54
-
55
- ### 1. 코드 리뷰
56
- - 코딩 표준 준수 확인
57
- - 베스트 프랙티스 적용 여부
58
- - 문서화 수준 검토
59
-
60
- ### 2. 기능 테스트
61
- - 요구사항 대비 기능 검증
62
- - 엣지 케이스 테스트
63
- - 에러 핸들링 검증
64
-
65
- ### 3. 보안 검사
66
- - OWASP Top 10 체크
67
- - 입력 검증
68
- - 인증/인가 검증
69
- - 민감 정보 노출 검사
70
-
71
- ### 4. 성능 검토
72
- - 응답 시간 측정
73
- - 메모리 사용량
74
- - 불필요한 리렌더링
75
-
76
- ### 5. 버그 수정
77
- - 식별된 버그 우선순위 지정
78
- - 수정 검증
79
- - 회귀 테스트
80
-
81
- ## 완료 조건
82
- - [ ] 코드 리뷰 완료
83
- - [ ] 보안 검사 통과
84
- - [ ] 식별된 버그 수정
85
- - [ ] QA 보고서 작성
86
- - [ ] HANDOFF.md 생성
87
-
88
- ## 다음 스테이지
89
- → **09-testing**: 테스트 코드 작성 E2E 테스트
90
-
91
-
92
-
93
-
48
+ ## Output Files
49
+ - `outputs/qa_report.md` - QA report
50
+ - `outputs/bug_fixes.md` - Bug fix history
51
+ - `HANDOFF.md` - Handoff document for next stage
52
+
53
+ ## Workflow
54
+
55
+ ### 1. Code Review
56
+ - Verify coding standards compliance
57
+ - Best practices application status
58
+ - Documentation level review
59
+
60
+ ### 2. Functional Testing
61
+ - Feature verification against requirements
62
+ - Edge case testing
63
+ - Error handling verification
64
+
65
+ ### 3. Security Inspection
66
+ - OWASP Top 10 check
67
+ - Input validation
68
+ - Authentication/authorization verification
69
+ - Sensitive information exposure inspection
70
+
71
+ ### 4. Performance Review
72
+ - Response time measurement
73
+ - Memory usage
74
+ - Unnecessary re-renders
75
+
76
+ ### 5. Bug Fixing
77
+ - Prioritize identified bugs
78
+ - Fix and verify
79
+ - Regression testing
80
+
81
+ ## Completion Criteria
82
+ - [ ] Code review complete
83
+ - [ ] Security inspection passed
84
+ - [ ] Identified bugs fixed
85
+ - [ ] QA report written
86
+ - [ ] HANDOFF.md generated
87
+
88
+ ## Next Stage
89
+ → **09-testing**: Test code writing and E2E testing
@@ -3,7 +3,7 @@
3
3
  stage:
4
4
  id: "08-qa"
5
5
  name: "QA"
6
- description: "품질 보증 코드 리뷰"
6
+ description: "Quality assurance and code review"
7
7
 
8
8
  models:
9
9
  primary: "claudecode"
@@ -25,9 +25,9 @@ inputs:
25
25
  outputs:
26
26
  required:
27
27
  - name: "qa_report.md"
28
- description: "QA 보고서"
28
+ description: "QA report"
29
29
  - name: "bug_fixes.md"
30
- description: "버그 수정 내역"
30
+ description: "Bug fix history"
31
31
  - name: "HANDOFF.md"
32
32
 
33
33
  prompts:
@@ -43,10 +43,10 @@ prompts:
43
43
 
44
44
  completion:
45
45
  checklist:
46
- - "코드 리뷰 완료"
47
- - "보안 검사 통과"
48
- - "식별된 버그 수정"
49
- - "QA 보고서 작성"
46
+ - "Code review complete"
47
+ - "Security inspection passed"
48
+ - "Identified bugs fixed"
49
+ - "QA report written"
50
50
 
51
51
  transition:
52
52
  next_stage: "09-testing"
@@ -1,65 +1,65 @@
1
- # AI 협업 프롬프트 - QA
1
+ # AI Collaboration Prompt - QA
2
2
 
3
- ## 협업 모드: Comprehensive Review
3
+ ## Collaboration Mode: Comprehensive Review
4
4
 
5
- 스테이지에서는 **포괄적 리뷰** 모드를 사용하여 품질을 보장합니다.
5
+ This stage uses **comprehensive review** mode to ensure quality.
6
6
 
7
- ### 참여 모델
8
- - **ClaudeCode**: 코드 리뷰, 버그 수정, 보안 검사
7
+ ### Participating Models
8
+ - **ClaudeCode**: Code review, bug fixing, security inspection
9
9
 
10
- ### 협업 프롬프트
10
+ ### Collaboration Prompt
11
11
 
12
12
  ```
13
- # 다각도 검토
13
+ # Multi-faceted review
14
14
  /collaborate --mode sequential --chain "claudecode:code_review -> claudecode:security_audit -> claudecode:fix"
15
15
  ```
16
16
 
17
- ### 리뷰 영역
17
+ ### Review Areas
18
18
 
19
- | 영역 | 검토 항목 |
20
- |------|----------|
21
- | 코드 품질 | 가독성, 유지보수성, 베스트 프랙티스 |
22
- | 보안 | OWASP Top 10, 입력 검증, 인증/인가 |
23
- | 성능 | 응답 시간, 메모리, 리렌더링 |
24
- | 기능 | 요구사항 충족, 엣지 케이스 |
19
+ | Area | Review Items |
20
+ |------|-------------|
21
+ | Code Quality | Readability, maintainability, best practices |
22
+ | Security | OWASP Top 10, input validation, authentication/authorization |
23
+ | Performance | Response time, memory, re-renders |
24
+ | Functionality | Requirements compliance, edge cases |
25
25
 
26
- ### 보안 검사 체크리스트
26
+ ### Security Inspection Checklist
27
27
 
28
28
  - [ ] SQL Injection
29
29
  - [ ] XSS (Cross-Site Scripting)
30
30
  - [ ] CSRF (Cross-Site Request Forgery)
31
- - [ ] 인증/인가 우회
32
- - [ ] 민감 정보 노출
33
- - [ ] 의존성 취약점
31
+ - [ ] Authentication/authorization bypass
32
+ - [ ] Sensitive information exposure
33
+ - [ ] Dependency vulnerabilities
34
34
 
35
35
  ```bash
36
- # 의존성 취약점 검사
36
+ # Dependency vulnerability scan
37
37
  npm audit
38
38
  ```
39
39
 
40
- ### 버그 우선순위
40
+ ### Bug Priority
41
41
 
42
- | 등급 | 기준 | 조치 |
43
- |------|------|------|
44
- | Critical | 보안, 데이터 손실 | 즉시 수정 |
45
- | High | 주요 기능 장애 | 이번 스테이지 수정 |
46
- | Medium | 부가 기능 이슈 | 다음 스프린트 |
47
- | Low | UI/UX 개선 | 백로그 |
42
+ | Level | Criteria | Action |
43
+ |-------|----------|--------|
44
+ | Critical | Security, data loss | Fix immediately |
45
+ | High | Major feature failure | Fix in this stage |
46
+ | Medium | Minor feature issue | Next sprint |
47
+ | Low | UI/UX improvement | Backlog |
48
48
 
49
- ### 출력 형식
49
+ ### Output Format
50
50
 
51
51
  ```markdown
52
- ## QA 결과
52
+ ## QA Results
53
53
 
54
- ### 코드 리뷰
55
- - [파일]: [이슈] - [심각도]
54
+ ### Code Review
55
+ - [File]: [Issue] - [Severity]
56
56
  ...
57
57
 
58
- ### 보안 검사
59
- - [취약점]: [위치] - [조치]
58
+ ### Security Inspection
59
+ - [Vulnerability]: [Location] - [Action]
60
60
  ...
61
61
 
62
- ### 버그 수정
63
- - [BUG-001]: [설명] - [해결 방법]
62
+ ### Bug Fixes
63
+ - [BUG-001]: [Description] - [Resolution]
64
64
  ...
65
65
  ```
@@ -1,71 +1,71 @@
1
- # 산출물 검증 프롬프트 - QA
1
+ # Output Validation Prompt - QA
2
2
 
3
- ## 검증 대상
3
+ ## Validation Targets
4
4
 
5
- | 산출물 | 필수 조건 | 검증 방법 |
6
- |--------|----------|----------|
7
- | `qa_report.md` | 리뷰 결과 포함 | 구조 확인 |
8
- | `bug_fixes.md` | 수정 내역 | 항목 확인 |
9
- | 소스 코드 | 보안 검사 통과 | 자동 스캔 |
10
- | `HANDOFF.md` | 테스트 필요 항목 | 항목 확인 |
5
+ | Output | Required Condition | Validation Method |
6
+ |--------|-------------------|-------------------|
7
+ | `qa_report.md` | Review results included | Structure verification |
8
+ | `bug_fixes.md` | Fix history | Item verification |
9
+ | Source code | Security inspection passed | Auto scan |
10
+ | `HANDOFF.md` | Items needing testing | Item verification |
11
11
 
12
- ## 검증 명령
12
+ ## Validation Command
13
13
 
14
14
  ```bash
15
15
  /validate --stage 08-qa
16
16
  ```
17
17
 
18
- ## 품질 기준
18
+ ## Quality Criteria
19
19
 
20
20
  ### qa_report.md
21
- - [ ] 코드 리뷰 결과
22
- - [ ] 보안 검사 결과
23
- - [ ] 성능 검토 결과
24
- - [ ] 발견된 버그 목록
25
- - [ ] 권장 사항
21
+ - [ ] Code review results
22
+ - [ ] Security inspection results
23
+ - [ ] Performance review results
24
+ - [ ] Discovered bugs list
25
+ - [ ] Recommendations
26
26
 
27
27
  ### bug_fixes.md
28
- - [ ] 수정된 버그 목록
29
- - [ ] 버그의 원인 분석
30
- - [ ] 해결 방법
31
- - [ ] 회귀 방지 조치
28
+ - [ ] Fixed bugs list
29
+ - [ ] Root cause analysis for each bug
30
+ - [ ] Resolution method
31
+ - [ ] Regression prevention measures
32
32
 
33
- ### 소스 코드
34
- - [ ] Critical 버그 0개
35
- - [ ] High 버그 0개
36
- - [ ] 보안 취약점 해결
33
+ ### Source Code
34
+ - [ ] 0 Critical bugs
35
+ - [ ] 0 High bugs
36
+ - [ ] Security vulnerabilities resolved
37
37
 
38
38
  ### HANDOFF.md
39
- - [ ] 테스트 필요 영역
40
- - [ ] 남은 Medium/Low 이슈
41
- - [ ] 다음 단계 권고
39
+ - [ ] Areas needing testing
40
+ - [ ] Remaining Medium/Low issues
41
+ - [ ] Next step recommendations
42
42
 
43
- ## 자동 검증 스크립트
43
+ ## Auto Validation Script
44
44
 
45
45
  ```bash
46
- # 보안 취약점 검사
46
+ # Security vulnerability scan
47
47
  npm audit --audit-level=high
48
48
 
49
- # Lint 검사
49
+ # Lint check
50
50
  npm run lint
51
51
 
52
- # 타입 검사
52
+ # Type check
53
53
  npm run typecheck
54
54
 
55
- # 테스트 실행
55
+ # Run tests
56
56
  npm run test
57
57
  ```
58
58
 
59
- ## 보안 메트릭
59
+ ## Security Metrics
60
60
 
61
- | 메트릭 | 기준 | 실제 |
62
- |--------|------|------|
63
- | Critical 취약점 | 0 | - |
64
- | High 취약점 | 0 | - |
65
- | Medium 취약점 | < 5 | - |
61
+ | Metric | Criteria | Actual |
62
+ |--------|----------|--------|
63
+ | Critical vulnerabilities | 0 | - |
64
+ | High vulnerabilities | 0 | - |
65
+ | Medium vulnerabilities | < 5 | - |
66
66
 
67
- ## 실패 조치
67
+ ## Actions on Failure
68
68
 
69
- 1. 보안 취약점즉시 수정 재검증
70
- 2. 테스트 실패버그 수정 재실행
71
- 3. Lint 에러코드 수정
69
+ 1. Security vulnerabilityFix immediately and re-verify
70
+ 2. Test failureFix bug and re-run
71
+ 3. Lint errorFix code