| name | production-deploy |
| description | Use when deploying to production, releasing a version, shipping to users, going live, or rolling back a deployment. Also handles deployment failures and health checks. |
Production Deployment Skill
Pre-Deploy Gate
All must pass before deploying:
npm test
npm run lint
npm run typecheck
If any fail: STOP. Do not deploy. Fix first.
Build
npm run build
Verify build output exists and looks correct.
Deploy
npm run deploy:prod
Post-Deploy Verification
Wait 60 seconds, then verify:
- Health check endpoint responds
- Key user flows work (login, core action)
- Error rate in monitoring is normal
- Response times are normal
If issues found → see @references/rollback.md
Monitoring
For post-deploy monitoring setup: @references/monitoring.md
Rollback
For rollback procedures: @references/rollback.md