oncall-runbook-executor
Use during an incident or routine on-call task to execute a YAML-defined runbook step by step. Each step has a description, an optional precheck command, the action command, and an expected outcome. Produces a tamper-evident execution log. Vendor-neutral; works with any shell-capable agent runtime.
Works with
---
name: oncall-runbook-executor
description: Use during an incident or routine on-call task to execute a YAML-defined runbook step by step. Each step has a description, an optional precheck command, the action command, and an expected outcome. Produces a tamper-evident execution log. Vendor-neutral; works with any shell-capable agent runtime.
license: MIT
---
# On-Call Runbook Executor
## When to invoke
- "Run the database failover runbook."
- "Walk me through the certificate rotation playbook."
- "Execute the deploy rollback steps."
## Inputs needed
1. **Runbook YAML** — see schema below.
2. **Mode** — `dry-run` (default; prints commands) or `execute` (runs them).
3. **Approval prompts** — interactive `--confirm` prompt before each action by default.
## Runbook schema
```yaml
name: deploy-rollback
description: Roll back the most recent deploy of svc-checkout
owner: sre-oncall
prechecks:
- desc: kubectl is configured
cmd: kubectl version --client --output=yaml
steps:
- id: identify_revision
desc: Identify the previous revision
cmd: kubectl rollout history deploy/svc-checkout | tail -3
expect_zero_exit: true
- id: rollback
desc: Roll back to the previous revision
cmd: kubectl rollout undo deploy/svc-checkout
requires_confirm: true
- id: verify
desc: Wait for rollout to complete
cmd: kubectl rollout status deploy/svc-checkout --timeout=120s
expect_zero_exit: true
postchecks:
- desc: 5xx is back to baseline
cmd: ./scripts/check_5xx.sh
```
## Workflow
1. **Load** the runbook YAML.
2. **Run prechecks** — abort if any precheck fails.
3. For each **step**:
- Print step description and command.
- In `execute` mode and if `requires_confirm`, prompt the operator.
- Run command, capture stdout/stderr/exit.
- Compare to expectation; mark pass/fail.
4. **Run postchecks**.
5. **Emit** a Markdown execution log (timestamps, exit codes, outputs).
## Guardrails
- Default mode is `dry-run`; require an explicit `--mode execute` to run anything.
- Steps with `requires_confirm: true` must prompt unless `--yes` is set.
- Never auto-skip a failed precheck — abort and surface clearly.
- Truncate captured output to a configurable max bytes per step.
## Reference code
`runbook.py` reads YAML, executes locally, and writes a Markdown log.More Observability skills
google-agents-cli-observability
google/agents-cli
>
azure-observability
microsoft/azure-skills
Azure Observability Services including Azure Monitor, Application Insights, Log Analytics, Alerts, and Workbooks. Provides metrics, APM, distributed tracing, KQL queries, and interactive reports. USE FOR: Azure Monitor, Application Insights, Log Analytics, Alerts, Workbooks, metrics, APM, distributed tracing, KQL queries, interactive reports, observability, monitoring dashboards. DO NOT USE FOR: instrumenting apps with App Insights SDK (use appinsights-instrumentation), querying Kusto/ADX clusters (use azure-kusto), cost analysis (use azure-cost-optimization).
social
coreyhaines31/marketingskills
When the user wants help creating, scheduling, or optimizing social media content for LinkedIn, Twitter/X, Instagram, TikTok, Facebook, or other platforms, or wants to do social listening and engagement triage. Also use when the user mentions 'LinkedIn post,' 'Twitter thread,' 'social media,' 'content calendar,' 'social scheduling,' 'engagement,' 'viral content,' 'what should I post,' 'repurpose this content,' 'tweet ideas,' 'LinkedIn carousel,' 'social media strategy,' 'grow my following,' 'TikTok video,' 'Reels,' 'Shorts,' 'video script,' 'video hook,' 'short-form video,' 'create a reel,' 'social listening,' 'brand mentions,' 'competitor monitoring,' 'top posts to comment on,' 'find people asking for,' 'carousel,' 'slide-by-slide,' or 'document post.' Use this for social media content creation, repurposing, scheduling, short-form video scripting, and social listening. For broader content strategy, see content-strategy. For paid ads, see ad-creative. For earned media, see public-relations.

