Runbook Brief
Scaffolds an agent brief for producing an operational runbook. The rendered brief instructs an agent to analyze a service's architecture, document dependencies and failure modes, create step-by-step operational procedures, define escalation paths, and produce a runbook suitable for on-call engineers.
| Name | brief-runbook |
| Version | 0.1.0 |
| Category | operations |
| License | Apache-2.0 |
| Persona | operations |
| Tags | brief, runbook, operations, incident, on-call |
| Source | templates/brief-runbook |
Render it
Three front doors, one catalog. Pick whichever suits the caller.
# CLI
npx @nanohype/sdk render brief-runbook --out ./my-app
# SDK
import { LocalSource, renderTemplate } from "@nanohype/sdk";
const result = await renderTemplate(source, "brief-runbook", variables);
# MCP — from an agent
get_template({ name: "brief-runbook" })Variables
Required
ProjectNamestring- Project or team that owns this service
ServiceNamestring- Name of the service this runbook covers
Optional
InfraProviderstring — defaults toaws- Primary infrastructure provider (aws, fly, vercel, cloudflare)
IncidentSeverityLevelsstring — defaults toP1,P2,P3,P4- Comma-separated severity levels used by the organization
What it produces
1 files. Placeholder names such as __APP_NAME__ are what the renderer substitutes into.
brief.mdComposes with
- Pairs with
runbook - Pairs with
monitoring-stack - Nests inside
monorepo