| name | deployment |
| description | Prepare deployment configuration, environment setup, health checks, and rollback procedures |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
Deployment Skill
Prepare production-ready deployment configurations.
When to Use
- Creating deployment configurations
- Setting up CI/CD pipelines
- Configuring environment variables
- Writing health checks
- Planning rollback procedures
Deployment Checklist
Pre-Deployment
Deployment
Post-Deployment
Environment Variables Template
NODE_ENV=production
PORT=3000
DATABASE_URL=postgres://...
JWT_SECRET=<secret>
REDIS_URL=redis://...
Health Check Endpoint
{
"status": "healthy",
"version": "1.0.0",
"checks": {
"database": "connected",
"redis": "connected"
}
}
Rollback Procedure
- Detect issue via monitoring
- Execute rollback command
- Verify health checks pass
- Investigate root cause
- Fix and redeploy