Execute Vercel production deployment checklist and rollback procedures. Use when deploying Vercel integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "vercel production", "deploy vercel", "vercel go-live", "vercel launch checklist".
/plugin marketplace add jeremylongshore/claude-code-plugins-plus-skills/plugin install vercel-pack@claude-code-plugins-plusThis skill is limited to using the following tools:
Complete checklist for deploying Vercel integrations to production.
npm test)# Pre-flight checks
curl -f https://staging.example.com/health
curl -s https://www.vercel-status.com
# Gradual rollout - start with canary (10%)
kubectl apply -f k8s/production.yaml
kubectl set image deployment/vercel-integration app=image:new --record
kubectl rollout pause deployment/vercel-integration
# Monitor canary traffic for 10 minutes
sleep 600
# Check error rates and latency before continuing
# If healthy, continue rollout to 50%
kubectl rollout resume deployment/vercel-integration
kubectl rollout pause deployment/vercel-integration
sleep 300
# Complete rollout to 100%
kubectl rollout resume deployment/vercel-integration
kubectl rollout status deployment/vercel-integration
| Alert | Condition | Severity |
|---|---|---|
| API Down | 5xx errors > 10/min | P1 |
| High Latency | p99 > 5000ms | P2 |
| Rate Limited | 429 errors > 5/min | P2 |
| Auth Failures | 401/403 errors > 0 | P1 |
async function healthCheck(): Promise<{ status: string; vercel: any }> {
const start = Date.now();
try {
await vercelClient.ping();
return { status: 'healthy', vercel: { connected: true, latencyMs: Date.now() - start } };
} catch (error) {
return { status: 'degraded', vercel: { connected: false, latencyMs: Date.now() - start } };
}
}
kubectl rollout undo deployment/vercel-integration
kubectl rollout status deployment/vercel-integration
For version upgrades, see vercel-upgrade-migration.