1019 B
yaml
| 1 | schema: 1 |
| 2 | name: incident-runbook |
| 3 | owner: openagents |
| 4 | version: 1.0.0 |
| 5 | kind: workflow |
| 6 | title: Incident Runbook |
| 7 | summary: Triage, mitigate, communicate, and postmortem for production incidents, with timers and escalation rules |
| 8 | license: MIT |
| 9 | tags: [incident-response, oncall, reliability, postmortem, ops] |
| 10 | runtimes: [claude-code, codex, generic] |
| 11 | pricing: |
| 12 | model: free |
| 13 | amount_cents: 0 |
| 14 | currency: usd |
| 15 | entry: WORKFLOW.md |
| 16 | files: |
| 17 | - WORKFLOW.md |
| 18 | - templates/postmortem.md |
| 19 | - templates/status-update.md |
| 20 | inputs: |
| 21 | - name: severity |
| 22 | type: string |
| 23 | required: true |
| 24 | description: "Initial severity estimate: sev1 (critical, full outage) | sev2 (major, degraded) | sev3 (minor, limited impact)" |
| 25 | - name: incident_channel |
| 26 | type: string |
| 27 | required: false |
| 28 | description: Chat channel or thread to post status updates to, if applicable |
| 29 | - name: escalation_contact |
| 30 | type: string |
| 31 | required: false |
| 32 | description: Who/what to page if the incident is not mitigated within the severity's escalation window |
| 33 | requires: [] |
| 34 |