Deployment Runbook Prompt
Turn a deploy into a runbook anyone can execute — ordered steps, preconditions, verification at each gate, and the rollback hook, instead of tribal knowledge.
Overview
A deploy that lives in one engineer's head is a single point of failure. This prompt produces a deployment runbook: the ordered steps, the precondition checks before each, the verification that each step succeeded before moving on, and the rollback hook at every gate. The result is a document a teammate can run without you on the call.
Why This Works
- Per-step verification stops a broken deploy from continuing on a bad assumption
- Written preconditions catch the missing backup or approval before it bites
- A runbook removes the single-person dependency from shipping
Best for
- Manual or semi-automated deploys
- Teams where only one person knows how to ship
- Releases that need an auditable execution trail
Not for
- Designing rollback triggers specifically — use the Rollback Plan Prompt
- Fully automated CI/CD where the pipeline is the runbook
Use cases
- Documenting a deploy so anyone on the team can run it
- Turning a manual deploy into a repeatable checklist
- Onboarding a new engineer onto the release process