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