BeClaude

agent-runbook

New
1GitHub TrendingGeneralby KnoxOps

Contract-based multi-agent skill framework for Claude Code & Codex — compile YAML runbooks into SKILL.md with loop, parallel, and checkpoint support.

First seen 6/17/2026

Summary

This skill enables developers to define multi-agent workflows as YAML runbooks, supporting loops, parallel execution, and checkpoints.

  • md file that Claude Code or Codex can follow, making complex agent orchestration simple and reproducible.

Install & Usage

1
Create the agents directory
mkdir -p .claude/agents
2
Save the agent file

Add the configuration to .claude/agents/agent-runbook.md

3
Invoke with @agent-name
@agent-runbook

Use Cases

Automate a multi-step code review process where different agents check style, security, and performance in parallel.
Run a data pipeline that processes files in batches with checkpointing to resume from failures.
Orchestrate a deployment workflow that builds, tests, and deploys across environments with conditional logic.
Create a customer support triage system that routes issues to appropriate agents based on intent classification.
Execute a research task where agents gather information, summarize findings, and generate a report sequentially.
Build a content generation pipeline that drafts, reviews, and publishes articles with human-in-the-loop approval.

Usage Examples

1

/agent-runbook compile my-workflow.yaml

2

Create a runbook that runs linting and unit tests in parallel, then deploys if both pass.

3

/agent-runbook runbook.yaml --checkpoint resume

View source on GitHub
agent

Security Audits

LicenseUnknownSourceWarnRepositoryPass

Frequently Asked Questions

What is agent-runbook?

This skill enables developers to define multi-agent workflows as YAML runbooks, supporting loops, parallel execution, and checkpoints. It compiles these runbooks into a SKILL.md file that Claude Code or Codex can follow, making complex agent orchestration simple and reproducible.

How to install agent-runbook?

To install agent-runbook: create the agents directory (mkdir -p .claude/agents), then add the config to .claude/agents/agent-runbook.md. Finally, @agent-runbook in Claude Code.

What is agent-runbook best for?

agent-runbook is a agent categorized under General. It is designed for: agent. Created by KnoxOps.

What can I use agent-runbook for?

agent-runbook is useful for: Automate a multi-step code review process where different agents check style, security, and performance in parallel.; Run a data pipeline that processes files in batches with checkpointing to resume from failures.; Orchestrate a deployment workflow that builds, tests, and deploys across environments with conditional logic.; Create a customer support triage system that routes issues to appropriate agents based on intent classification.; Execute a research task where agents gather information, summarize findings, and generate a report sequentially.; Build a content generation pipeline that drafts, reviews, and publishes articles with human-in-the-loop approval..