Coordinated release process with versioning, changelog, and deployment gates. Use when: planning releases, managing versions, or coordinating deployments.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Coordinated release process with versioning, changelog, and deployment gates. Use when: planning releases, managing versions, or coordinating deployments.
MAJOR.MINOR.PATCH
│ │ └─ Bug fixes, no new features
│ └─────── New features, backward compatible
└───────────── Breaking changes
Git Workflow
# Feature branch
git checkout -b release/1.2.3
# Update version
npm version patch # or minor/major# Create PR to main
gh pr create --base main --head release/1.2.3
# After approval, tag and deploy
git tag v1.2.3
git push origin v1.2.3
Deployment Gates
Gate
Criteria
Owner
Code Review
2 approvals
Team
Tests
100% pass
CI
Security
No HIGH/CRITICAL
Security
Performance
FCP < 3s, LCP < 5s
Performance
Changelog
Updated
Author
Hotfix Process
# Create hotfix branch
git checkout -b hotfix/1.2.4
# Fix and test# Merge to main
git checkout main && git merge hotfix/1.2.4
# Tag immediately
git tag v1.2.4 && git push origin v1.2.4