| name | vercel-prod-checklist |
| description | Vercel production deployment checklist with rollback and promotion procedures.
Use when deploying to production, preparing for launch,
or implementing go-live and instant rollback procedures.
Trigger with phrases like "vercel production", "deploy vercel prod",
"vercel go-live", "vercel launch checklist", "vercel promote".
|
| allowed-tools | Read, Bash(vercel:*), Bash(curl:*), Grep |
| version | 1.18.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","vercel","deployment","production","checklist"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
Vercel Prod Checklist
Overview
Complete pre-production checklist for Vercel deployments covering environment variables, domain configuration, performance, security, monitoring, and instant rollback procedures.
Prerequisites
- Staging deployment tested and verified
- Production domain DNS configured
- Production environment variables set
- Monitoring and alerting configured
Instructions
Step 1: Pre-Deploy Verification
vercel env ls --environment=production
vercel build --prod
npm test
Step 2: Production Deploy
vercel --prod
vercel promote https://my-app-git-main-team.vercel.app
curl -X POST "https://api.vercel.com/v13/deployments" \
-H "Authorization: Bearer $VERCEL_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "my-app",
"target": "production",
"gitSource": {
"type": "github",
"repoId": "123456789",
"ref": "main",
"sha": "abc123"
}
}'
Step 3: Domain Configuration
vercel domains add yourdomain.com
vercel domains inspect yourdomain.com