Technical Runbook as YAML Playbook

D

Daniel Okoye

@daniel-okoye

·

Generate operational runbooks in structured YAML format.

73 copies0 forks
Share this prompt:
Generate an operational runbook in YAML playbook format:

Procedure Description:
{{procedure_description}}

Prerequisites:
{{prerequisites}}

Steps:
{{procedure_steps}}

Output in this format:

```yaml
runbook:
  name: "{{runbook_name}}"
  version: "1.0.0"
  last_updated: "YYYY-MM-DD"
  owner: "team-name"
  
  description: |
    Detailed description of what this runbook accomplishes
    and when it should be used.

  prerequisites:
    access:
      - "AWS Console access"
      - "kubectl configured"
    knowledge:
      - "Understanding of service X"
    tools:
      - name: "awscli"
        version: ">= 2.0"

  steps:
    - id: 1
      name: "Step name"
      description: "What this step does"
      commands:
        - "command 1"
        - "command 2"
      expected_output: "What you should see"
      verification: "How to verify success"
      rollback: "How to undo if needed"
      estimated_time: "5m"
      
  rollback_procedure:
    - step: 1
      action: "Rollback action"
      
  escalation:
    on_failure: "#team-channel"
    contacts:
      - name: "On-call"
        method: "PagerDuty"
```

Ensure:
- All steps have verification
- Rollback procedures included
- Time estimates provided
- Escalation paths defined

Details

Category

Productivity

Use Cases

Runbook standardization creationOperational procedure documentationAutomation playbook generation

Works Best With

claude-opus-4.5gpt-5.2gemini-2.0-flash
Created Updated Shared

Related Prompts

Create your own prompt vault and start sharing