Situation-keyed devops procedures agents follow instead of improvising.

Operational playbooks

Intent — A library of documented, devops-themed decision procedures (when situation X arises, take these steps in this order) that agents and orchestrators consult instead of reasoning from scratch, so recurring operational situations (a broken deploy, a wedged cron, a stuck worktree, a chicken-and-egg recovery) get a consistent, pre-reasoned, incident-tested response.

SummarySituation-keyed devops procedures agents follow instead of improvising.
TargetAgent · Governance-doc mechanisms
Formagent-output
EnforcementSoft (probabilistic) — a playbook aims the response; it informs, it does not block. Its value is that the correct steps are written down and discoverable at the moment they're needed.

Motivation — the failure it kills

Operational situations recur: a deploy fails a known way, a cron loop can't self-recover, a worktree is destroyed mid-flight, an alert gate deadlocks. Each time, an agent under incident pressure re-derives a response from first principles and gets the sharp edges wrong: a flailing git reset destroys landed work, a naive cron restart re-enters the same loop, a "cleanup" removes a live worktree. The failure is inconsistent, error-prone operational response that recurs on every incident, and the cost is highest exactly when time is shortest.

Why it's not just "let the agent reason it out from the docs"

An agent can reason a response out from the docs, and it will, badly, under time pressure, re-deriving a procedure a human already worked out and debugged once. A playbook removes the re-derivation: it names the trigger, gives the ordered steps, and lists the reflexes to avoid (the reset-that-destroys, the restart-that-loops), all reasoned once when no incident was burning. It is the devops runbook promoted to a first-class governance document the orchestrator is explicitly told to consult, closer to a reusable skill than to prose documentation.

Mechanism

Each playbook names a triggering situation, the ordered response steps, and the anti-pattern reflexes to avoid. Playbooks are cross-referenced two ways: from the terse rule index (which points at the long-form procedure), and from the substrate that emits the triggering signal, so the observability surface for a topic carries "baseline-healthy · what-looks-wrong · which playbook to open." The orchestrator is instructed, at the trigger, to consult the relevant playbook rather than improvise.

Adopt it — the operational-playbook starter gives the per-situation entry shape: the triggering question, the inspect command, baseline-healthy (quantified), and what-looks-wrong → what-it-means → what-to-do (with the deadlock/wedge escape where a substrate can get stuck). Add one entry per signal the substrate emits.

Prerequisites

Consequences & costs

Known uses

Related mechanisms