Safe deployment operations — health checks, promotion gates, rollback, drift detection, and worker scaling across dev/staging/production.
| Workflow | Calls | Achieves |
|---|---|---|
| Safe Promotion | 3 | Check → promote → verify |
| Rollback | 2 | Revert → verify health |
| Drift Detection | 1-2 | Find config mismatches |
| Scale | 1 | Adjust worker capacity |
- Deploys without health checks
- No rollback plan
- Config drift undetected
- Production promoted without staging verification
- Health checked before AND after promotion
- Rollback always available
- Drift detected proactively
- Staging must be healthy before production
git clone https://github.com/zavora-ai/skill-environment-deployment.git \
~/.skills/skills/environment-deploymentRequired: mcp-environment (10 tools)
Cross-MCP: mcp-cicd (CI verification), mcp-itsm (rollback on incidents), mcp-slack (deploy notifications)
environment-deployment/
├── SKILL.md # Decision tree + workflows + MUST DO/MUST NOT DO
├── scripts/
│ └── deploy_readiness.py
├── references/
│ ├── tool-sequences.md
│ ├── cross-mcp-workflows.md
│ └── examples.md
├── README.md
└── LICENSE
User: "Is production ready for v2.3.1?"
Result:
Deploy Readiness Check:
✅ CI passes (run_200)
✅ Staging healthy
✅ No drift detected
❌ Approval pending (@eng_lead)
→ Not ready: needs approval
python scripts/deploy_readiness.py '{"ci_status": "success", "staging_health": "healthy", "drift_detected": false, "approved": false}'![]() James Karanja Maina |
|---|
Apache-2.0 — Part of ADK-Rust Enterprise. Built with ❤️ by Zavora AI
