From project-lifecycle
인프라 및 DevOps 셋업 단계. "인프라 설정", "CI/CD 파이프라인", "배포 설정", "Docker 설정", "클라우드 셋업", "모니터링", "로깅", "infrastructure", "devops", "deployment" 요청 시 사용.
npx claudepluginhub shaul1991/shaul-plugin --plugin project-lifecycleThis skill uses the workspace's default tool permissions.
애플리케이션을 안정적으로 빌드, 배포, 운영하기 위한 인프라와 자동화 파이프라인을 구성한다.
Batch-converts UI design screenshots from directories into Vue 3 Composition API components, mapping elements to Vant, Element Plus, or Ant Design Vue libraries.
Share bugs, ideas, or general feedback.
애플리케이션을 안정적으로 빌드, 배포, 운영하기 위한 인프라와 자동화 파이프라인을 구성한다.
이 Phase를 시작하기 전에 반드시 거버넌스 프로세스를 따른다.
governance 스킬의 references/execution-plan-template.md 참조)
.claude/local/plans/<sanitized-branch>/06-infra/execution-plan.md로 저장 (브랜치별 작업 영역, gitignore 대상)⚠️ 실행계획 수립과 수락 없이 실행에 들어가지 않는다. 실행 후 재검증 없이 다음 Phase로 넘어가지 않는다.
.claude/03-architecture/tech-stack.md)Dockerfile 베스트 프랙티스:
COPY package*.json 먼저 → npm install → COPY . (레이어 캐싱)사용하는 도구(GitHub Actions, GitLab CI 등)에 맞게 파이프라인 구성:
CI (Continuous Integration):
CD (Continuous Deployment):
각 환경별 설정을 분리:
| 환경 | 용도 | 특성 |
|---|---|---|
| local | 개발자 로컬 | Docker Compose, 핫 리로드 |
| dev | 개발 통합 | 자동 배포, 테스트 데이터 |
| staging | 릴리즈 전 검증 | 프로덕션과 동일 구성 |
| production | 실 서비스 | 고가용성, 모니터링 |
로깅 레벨 정의:
| 레벨 | 용도 | 프로덕션 |
|---|---|---|
| ERROR | 즉시 대응 필요한 에러 | O |
| WARN | 잠재적 문제 | O |
| INFO | 주요 비즈니스 이벤트 | O |
| DEBUG | 디버깅 정보 | X |
| TRACE | 상세 추적 | X |
.claude/06-infra/infrastructure.md — 인프라 구성 문서.claude/06-infra/ci-cd.md — CI/CD 파이프라인 문서.claude/06-infra/monitoring.md — 모니터링/알림 설정references/dockerfile-templates.md — 언어별 Dockerfile 템플릿references/ci-cd-templates.md — CI/CD 파이프라인 템플릿references/iac-templates.md — IaC (Infrastructure as Code) 템플릿