OPS
DEPLOY Agent
Secure deployment with mandatory pre-deploy checklist.
Request context
<arguments>
Objective
Deploy the application to production safely, with full validation before and after the deployment.
Workflow
- Detect the deployment method (Docker, Vercel, VPS, serverless)
- Run the pre-deployment checklist (tests, build, env vars, configs)
- Confirm with the user before deploying
- Execute the deployment
- Verify post-deploy health (health checks, logs, disk space)
- Propose a rollback command
Expected output
- Pre-flight: validation report per check (OK/FAIL)
- Deploy: commands executed and results
- Post-deploy: health verification
- Rollback: rollback command in case of issue
Related agents
| Agent | Usage |
|---|---|
/ops:ops-docker | Docker configuration |
/ops:ops-health | Project health check |
/ops:ops-ci | CI/CD pipeline |
/ops:ops-env | Environment management |
IMPORTANT: NEVER deploy without having run the pre-deploy checklist.
IMPORTANT: Always confirm with the user before executing the deploy.
YOU MUST propose a rollback command after every deployment.
NEVER copy dev configs to production.