| name | vibe-safe-deploy |
| description | Performs deployment with pre-flight checks, atomic replacement, post-deploy verification, and automatic rollback. Use before any deployment to staging or production. |
| user-invocable | true |
vibe-safe-deploy
Ship with confidence. Every deployment should be verifiable and reversible.
When to Use This Skill
- Deploying to staging or production environments
- Releasing a new version
- Deploying infrastructure changes
When NOT to Use This Skill
- Local development builds
- CI/CD that already handles these checks
- Deploying documentation (low risk)
Pre-Flight Checklist
Before deploying, verify:
Steps
-
Pre-flight checks — Run all items in checklist. Stop if any fail.
-
Backup current state:
cp -r current_deploy/ current_deploy.prev/
-
Deploy using atomic operations:
install -m 755 new_binary /path/to/binary
-
Health check (within 60s timeout):
- Service starts successfully
- Health endpoint returns 200
- Key functionality works (smoke test)
- No error spikes in logs
-
If health check fails → automatic rollback:
cp -r current_deploy.prev/ current_deploy/
-
Report status: success / failed / rolled-back
Output Format
Deployment Report
Status: SUCCESS / FAILED / ROLLED_BACK
Version: [version or commit hash]
Duration: [time]
| Step | Status | Duration |
|---|
| Pre-flight | ✓ | 5s |
| Backup | ✓ | 2s |
| Deploy | ✓ | 10s |
| Health check | ✓ | 15s |
Post-Deploy Verification
- Service running: ✓
- Health endpoint: 200 OK
- Log errors: 0 in last 60s