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,60 +1,60 @@
1
1
  # Stage 10: CI/CD & Deployment
2
2
 
3
- 배포 파이프라인 설정 배포 단계
4
-
5
- ## 🎭 페르소나: DevOps Specialist
6
-
7
- > 당신은 DevOps Specialist입니다.
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.2 (안전 최우선)
30
- - **안전성 집중**: Critical
31
- - **자동화 수준**: High
32
-
33
- ## 실행 모델
34
- - **Primary**: ClaudeCode (CI/CD 설정)
35
- - **Mode**: Headless - CI/CD 환경 자동화
36
-
37
- ## 목표
38
- 1. CI/CD 파이프라인 설정
39
- 2. 배포 환경 구성
40
- 3. 모니터링 설정
41
- 4. 문서화 완료
42
-
43
- ## 입력 파일
44
- - `source_code/` - 최종 소스 코드
3
+ Deployment pipeline setup and deployment stage
4
+
5
+ ## Persona: DevOps Specialist
6
+
7
+ > You are a DevOps Specialist.
8
+ > Build safe and repeatable deployment processes.
9
+ > Always consider rollback possibilities and set up monitoring.
10
+
11
+ ### Characteristics
12
+ - Automation expertise
13
+ - Security emphasis
14
+ - Monitoring design
15
+ - Rollback readiness
16
+
17
+ ### Recommended Actions
18
+ - Automated pipelines
19
+ - Environment separation
20
+ - Rollback strategy
21
+ - Monitoring setup
22
+
23
+ ### Actions to Avoid
24
+ - Manual deployment
25
+ - Hardcoded configuration
26
+ - Ignoring security
27
+
28
+ ### AI Settings
29
+ - **Temperature**: 0.2 (safety first)
30
+ - **Safety Focus**: Critical
31
+ - **Automation Level**: High
32
+
33
+ ## Execution Model
34
+ - **Primary**: ClaudeCode (CI/CD configuration)
35
+ - **Mode**: Headless - CI/CD environment automation
36
+
37
+ ## Goals
38
+ 1. CI/CD pipeline setup
39
+ 2. Deployment environment configuration
40
+ 3. Monitoring setup
41
+ 4. Documentation completion
42
+
43
+ ## Input Files
44
+ - `source_code/` - Final source code
45
45
  - `../09-testing/outputs/tests/`
46
46
  - `../09-testing/outputs/test_report.md`
47
47
  - `../09-testing/HANDOFF.md`
48
48
 
49
- ## 출력 파일
49
+ ## Output Files
50
50
  - `outputs/.github/workflows/` - GitHub Actions
51
- - `outputs/deployment_config/` - 배포 설정
52
- - `outputs/deployment_log.md` - 배포 로그
53
- - `HANDOFF.md` (최종)
51
+ - `outputs/deployment_config/` - Deployment configuration
52
+ - `outputs/deployment_log.md` - Deployment log
53
+ - `HANDOFF.md` (final)
54
54
 
55
- ## 워크플로우
55
+ ## Workflow
56
56
 
57
- ### 1. CI 파이프라인 설정
57
+ ### 1. CI Pipeline Setup
58
58
  ```yaml
59
59
  # .github/workflows/ci.yml
60
60
  name: CI
@@ -71,47 +71,43 @@ jobs:
71
71
  - run: npm test
72
72
  ```
73
73
 
74
- ### 2. CD 파이프라인 설정
75
- - 스테이징 환경 배포
76
- - 프로덕션 환경 배포
77
- - 롤백 전략
78
-
79
- ### 3. 환경 설정
80
- - 환경 변수 관리
81
- - 시크릿 설정
82
- - 도메인/SSL
83
-
84
- ### 4. 모니터링 설정
85
- - 에러 트래킹 (Sentry)
86
- - 성능 모니터링
87
- - 로그 수집
88
-
89
- ### 5. 문서화
90
- - 배포 가이드
91
- - 운영 매뉴얼
92
- - 트러블슈팅 가이드
93
-
94
- ## 배포 플랫폼 옵션
95
- - **Vercel**: Next.js 권장
96
- - **Railway**: 풀스택
97
- - **AWS**: 엔터프라이즈
74
+ ### 2. CD Pipeline Setup
75
+ - Staging environment deployment
76
+ - Production environment deployment
77
+ - Rollback strategy
78
+
79
+ ### 3. Environment Configuration
80
+ - Environment variable management
81
+ - Secret configuration
82
+ - Domain/SSL
83
+
84
+ ### 4. Monitoring Setup
85
+ - Error tracking (Sentry)
86
+ - Performance monitoring
87
+ - Log collection
88
+
89
+ ### 5. Documentation
90
+ - Deployment guide
91
+ - Operations manual
92
+ - Troubleshooting guide
93
+
94
+ ## Deployment Platform Options
95
+ - **Vercel**: Recommended for Next.js
96
+ - **Railway**: Full-stack
97
+ - **AWS**: Enterprise
98
98
  - **Cloudflare**: Edge
99
99
 
100
- ## 완료 조건
101
- - [ ] CI 파이프라인 설정
102
- - [ ] CD 파이프라인 설정
103
- - [ ] 스테이징 배포 성공
104
- - [ ] 프로덕션 배포 성공
105
- - [ ] 모니터링 설정
106
- - [ ] 배포 문서 작성
107
- - [ ] HANDOFF.md 생성 (최종)
108
-
109
- ## 파이프라인 종료
110
- 이것이 마지막 스테이지입니다. 배포 완료 후:
111
- 1. 전체 프로젝트 회고
112
- 2. 학습 내용 문서화
113
- 3. 유지보수 계획 수립
114
-
115
-
116
-
117
-
100
+ ## Completion Criteria
101
+ - [ ] CI pipeline configured
102
+ - [ ] CD pipeline configured
103
+ - [ ] Staging deployment successful
104
+ - [ ] Production deployment successful
105
+ - [ ] Monitoring configured
106
+ - [ ] Deployment documentation written
107
+ - [ ] HANDOFF.md generated (final)
108
+
109
+ ## Pipeline Completion
110
+ This is the final stage. After deployment completion:
111
+ 1. Project retrospective
112
+ 2. Document lessons learned
113
+ 3. Establish maintenance plan
@@ -3,7 +3,7 @@
3
3
  stage:
4
4
  id: "10-deployment"
5
5
  name: "CI/CD & Deployment"
6
- description: "배포 파이프라인 설정 배포"
6
+ description: "Deployment pipeline setup and deployment"
7
7
 
8
8
  models:
9
9
  primary: "claudecode"
@@ -26,11 +26,11 @@ inputs:
26
26
  outputs:
27
27
  required:
28
28
  - name: ".github/workflows/"
29
- description: "GitHub Actions 워크플로우"
29
+ description: "GitHub Actions workflows"
30
30
  - name: "deployment_config/"
31
- description: "배포 설정 파일"
31
+ description: "Deployment configuration files"
32
32
  - name: "deployment_log.md"
33
- description: "배포 로그"
33
+ description: "Deployment log"
34
34
  - name: "HANDOFF.md"
35
35
 
36
36
  prompts:
@@ -46,15 +46,15 @@ prompts:
46
46
 
47
47
  completion:
48
48
  checklist:
49
- - "CI 파이프라인 설정"
50
- - "CD 파이프라인 설정"
51
- - "스테이징 배포 성공"
52
- - "프로덕션 배포 성공"
53
- - "모니터링 설정"
54
- - "배포 문서 작성"
49
+ - "CI pipeline configured"
50
+ - "CD pipeline configured"
51
+ - "Staging deployment successful"
52
+ - "Production deployment successful"
53
+ - "Monitoring configured"
54
+ - "Deployment documentation written"
55
55
 
56
56
  transition:
57
- next_stage: null # 마지막 스테이지
57
+ next_stage: null # Final stage
58
58
  prerequisites:
59
59
  - "09-testing"
60
60
  handoff_required: true
@@ -1,28 +1,28 @@
1
- # AI 협업 프롬프트 - CI/CD & Deployment
1
+ # AI Collaboration Prompt - CI/CD & Deployment
2
2
 
3
- ## 협업 모드: Deployment Chain
3
+ ## Collaboration Mode: Deployment Chain
4
4
 
5
- 스테이지에서는 **배포 체인**을 사용하여 안전한 배포를 수행합니다.
5
+ This stage uses **deployment chain** to perform safe deployment.
6
6
 
7
- ### 참여 모델
8
- - **ClaudeCode**: CI/CD 설정, 배포 자동화
7
+ ### Participating Models
8
+ - **ClaudeCode**: CI/CD configuration, deployment automation
9
9
 
10
- ### 협업 프롬프트
10
+ ### Collaboration Prompt
11
11
 
12
12
  ```
13
- # 배포 체인
13
+ # Deployment chain
14
14
  /collaborate --mode sequential --chain "claudecode:ci_setup -> claudecode:cd_setup -> claudecode:deploy"
15
15
  ```
16
16
 
17
- ### 배포 단계
17
+ ### Deployment Steps
18
18
 
19
- | 단계 | 작업 | 검증 |
20
- |------|------|------|
21
- | CI 설정 | 빌드/테스트 파이프라인 | 테스트 통과 |
22
- | CD 설정 | 스테이징/프로덕션 파이프라인 | 환경 분리 |
23
- | 배포 | 실제 배포 실행 | 헬스 체크 |
19
+ | Step | Task | Verification |
20
+ |------|------|--------------|
21
+ | CI Setup | Build/test pipeline | Tests pass |
22
+ | CD Setup | Staging/production pipeline | Environment separation |
23
+ | Deploy | Execute actual deployment | Health check |
24
24
 
25
- ### CI/CD 파이프라인 구성
25
+ ### CI/CD Pipeline Configuration
26
26
 
27
27
  ```yaml
28
28
  # .github/workflows/ci.yml
@@ -41,40 +41,40 @@ jobs:
41
41
  - run: npm run build
42
42
  ```
43
43
 
44
- ### 배포 플랫폼 선택
44
+ ### Deployment Platform Selection
45
45
 
46
- | 플랫폼 | 장점 | 권장 사용 |
47
- |--------|------|----------|
48
- | Vercel | Next.js 최적화 | 프론트엔드 |
49
- | Railway | 풀스택 지원 | 풀스택 |
50
- | AWS | 확장성 | 엔터프라이즈 |
51
- | Cloudflare | Edge 배포 | 정적/Edge |
46
+ | Platform | Advantages | Recommended Use |
47
+ |----------|------------|-----------------|
48
+ | Vercel | Next.js optimized | Frontend |
49
+ | Railway | Full-stack support | Full-stack apps |
50
+ | AWS | Scalability | Enterprise |
51
+ | Cloudflare | Edge deployment | Static/Edge |
52
52
 
53
- ### 롤백 전략
53
+ ### Rollback Strategy
54
54
 
55
55
  ```bash
56
- # 롤백 준비
57
- /checkpoint --reason "배포 전 상태"
56
+ # Rollback preparation
57
+ /checkpoint --reason "Pre-deployment state"
58
58
 
59
- # 롤백 실행 (필요시)
59
+ # Execute rollback (if needed)
60
60
  /restore checkpoint_id
61
61
  ```
62
62
 
63
- ### 출력 형식
63
+ ### Output Format
64
64
 
65
65
  ```markdown
66
- ## 배포 결과
66
+ ## Deployment Results
67
67
 
68
- ### CI 파이프라인
69
- - 빌드: 성공/실패
70
- - 테스트: 통과/실패
71
- - Lint: 통과/실패
68
+ ### CI Pipeline
69
+ - Build: Success/Failure
70
+ - Tests: Pass/Fail
71
+ - Lint: Pass/Fail
72
72
 
73
- ### CD 파이프라인
74
- - 스테이징: [URL]
75
- - 프로덕션: [URL]
73
+ ### CD Pipeline
74
+ - Staging: [URL]
75
+ - Production: [URL]
76
76
 
77
- ### 모니터링
78
- - 에러 트래킹: [설정 여부]
79
- - 성능 모니터링: [설정 여부]
77
+ ### Monitoring
78
+ - Error tracking: [Configured/Not configured]
79
+ - Performance monitoring: [Configured/Not configured]
80
80
  ```
@@ -1,93 +1,93 @@
1
- # 산출물 검증 프롬프트 - CI/CD & Deployment
1
+ # Output Validation Prompt - CI/CD & Deployment
2
2
 
3
- ## 검증 대상
3
+ ## Validation Targets
4
4
 
5
- | 산출물 | 필수 조건 | 검증 방법 |
6
- |--------|----------|----------|
7
- | `.github/workflows/` | CI 파이프라인 | 구조 확인 |
8
- | `deployment_config/` | 환경 설정 | 구조 확인 |
9
- | `deployment_log.md` | 배포 기록 | 항목 확인 |
10
- | `HANDOFF.md` | 최종 상태 | 항목 확인 |
5
+ | Output | Required Condition | Validation Method |
6
+ |--------|-------------------|-------------------|
7
+ | `.github/workflows/` | CI pipeline | Structure verification |
8
+ | `deployment_config/` | Environment settings | Structure verification |
9
+ | `deployment_log.md` | Deployment records | Item verification |
10
+ | `HANDOFF.md` | Final state | Item verification |
11
11
 
12
- ## 검증 명령
12
+ ## Validation Command
13
13
 
14
14
  ```bash
15
15
  /validate --stage 10-deployment
16
16
  ```
17
17
 
18
- ## 품질 기준
18
+ ## Quality Criteria
19
19
 
20
20
  ### .github/workflows/
21
- - [ ] CI 워크플로우 존재 (ci.yml)
22
- - [ ] CD 워크플로우 존재 (cd.yml)
23
- - [ ] 빌드 단계 포함
24
- - [ ] 테스트 단계 포함
25
- - [ ] 배포 단계 포함
21
+ - [ ] CI workflow exists (ci.yml)
22
+ - [ ] CD workflow exists (cd.yml)
23
+ - [ ] Build step included
24
+ - [ ] Test step included
25
+ - [ ] Deploy step included
26
26
 
27
27
  ### deployment_config/
28
- - [ ] 환경 변수 관리
29
- - [ ] 시크릿 설정 가이드
30
- - [ ] 도메인/SSL 설정
28
+ - [ ] Environment variable management
29
+ - [ ] Secrets configuration guide
30
+ - [ ] Domain/SSL configuration
31
31
 
32
32
  ### deployment_log.md
33
- - [ ] 스테이징 배포 기록
34
- - [ ] 프로덕션 배포 기록
35
- - [ ] 배포 URL
33
+ - [ ] Staging deployment record
34
+ - [ ] Production deployment record
35
+ - [ ] Deployment URLs
36
36
 
37
- ### HANDOFF.md (최종)
38
- - [ ] 프로젝트 완료 체크리스트
39
- - [ ] 운영 가이드 링크
40
- - [ ] 모니터링 설정 확인
37
+ ### HANDOFF.md (Final)
38
+ - [ ] Project completion checklist
39
+ - [ ] Operations guide links
40
+ - [ ] Monitoring configuration verification
41
41
 
42
- ## 자동 검증 스크립트
42
+ ## Auto Validation Script
43
43
 
44
44
  ```bash
45
- # GitHub Actions 워크플로우 확인
45
+ # Check GitHub Actions workflows
46
46
  ls -la outputs/.github/workflows/
47
47
 
48
- # 워크플로우 유효성 검사 (yamllint)
48
+ # Workflow validity check (yamllint)
49
49
  yamllint outputs/.github/workflows/*.yml
50
50
 
51
- # 배포 설정 확인
51
+ # Check deployment configuration
52
52
  ls -la outputs/deployment_config/
53
53
  ```
54
54
 
55
- ## CI/CD 검증
55
+ ## CI/CD Verification
56
56
 
57
- | 항목 | 기준 | 확인 |
58
- |------|------|------|
59
- | CI 워크플로우 | 존재 | - |
60
- | CD 워크플로우 | 존재 | - |
61
- | 스테이징 배포 | 성공 | - |
62
- | 프로덕션 배포 | 성공 | - |
63
- | 헬스 체크 | 통과 | - |
57
+ | Item | Criteria | Verified |
58
+ |------|----------|----------|
59
+ | CI workflow | Exists | - |
60
+ | CD workflow | Exists | - |
61
+ | Staging deployment | Success | - |
62
+ | Production deployment | Success | - |
63
+ | Health check | Pass | - |
64
64
 
65
- ## 모니터링 체크리스트
65
+ ## Monitoring Checklist
66
66
 
67
- - [ ] 에러 트래킹 설정 (Sentry )
68
- - [ ] 성능 모니터링 설정
69
- - [ ] 로그 수집 설정
70
- - [ ] 알림 설정
67
+ - [ ] Error tracking configured (Sentry, etc.)
68
+ - [ ] Performance monitoring configured
69
+ - [ ] Log collection configured
70
+ - [ ] Alerts configured
71
71
 
72
- ## 문서 체크리스트
72
+ ## Documentation Checklist
73
73
 
74
- - [ ] 배포 가이드
75
- - [ ] 운영 매뉴얼
76
- - [ ] 트러블슈팅 가이드
77
- - [ ] 롤백 절차
74
+ - [ ] Deployment guide
75
+ - [ ] Operations manual
76
+ - [ ] Troubleshooting guide
77
+ - [ ] Rollback procedure
78
78
 
79
- ## 파이프라인 완료 확인
79
+ ## Pipeline Completion Verification
80
80
 
81
81
  ```bash
82
- # 모든 스테이지 완료 확인
82
+ # Verify all stages complete
83
83
  /status
84
84
 
85
- # 최종 검증
85
+ # Final validation
86
86
  /validate --all
87
87
  ```
88
88
 
89
- ## 실패 조치
89
+ ## Actions on Failure
90
90
 
91
- 1. CI 실패워크플로우 수정
92
- 2. 배포 실패설정 확인 재시도
93
- 3. 헬스 체크 실패로그 분석 수정
91
+ 1. CI failureFix workflow
92
+ 2. Deployment failureCheck configuration and retry
93
+ 3. Health check failureAnalyze logs and fix
@@ -45,7 +45,7 @@ jobs:
45
45
  env:
46
46
  NODE_ENV: production
47
47
 
48
- # Vercel 배포 예시
48
+ # Vercel deployment example
49
49
  - name: Deploy to Vercel (Staging)
50
50
  id: deploy
51
51
  uses: amondnet/vercel-action@v25