# Playbook Creator

> Guide for designing and creating high-quality, reusable workflows using the playbook tool group. Use this skill when: (1) You want to capture a successful multi-step process for future reuse, (2) A user asks to 'create a playbook' or 'automate this task', (3) You need to design a structured automation workflow with clear inputs, outputs, and success criteria. Triggers: 'create playbook', 'automate this process', 'design workflow'.

- Skill: `fritzprix/playbook-creator` (Agent Skill, multi-file: 5 files)
- Install (CLI): `npx skillmds@latest add fritzprix/playbook-creator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/fritzprix/playbook-creator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: fritzprix (https://skillmd.com/u/fritzprix)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/fritzprix/playbook-creator

---


# Playbook Creator

This skill provides a structured framework for designing and implementing High-Quality (HQ) reusable workflows. Playbooks transform transient task execution into persistent, repeatable automation.

## Core Workflow

To create an effective playbook, follow these sequential steps:

### 1. Identify the Goal and Success Criteria

A high-quality playbook must have a specific, measurable objective.
- **Goal**: What is the final state? (e.g., "Successfully deploy a React app to GitHub Pages")
- **Success Criteria**: What artifacts prove success? (e.g., "A 200 OK response from the live URL", "A 'build/' directory exists")

### 2. Design Atomic Steps

Break down the task into the smallest possible units of work that map to available tools.
- Each step should ideally call ONE tool.
- Use the **Pattern Reference** for common task structures: [workflow-patterns.md](references/workflow-patterns.md)

### 3. Map Data Flow and Dependencies

Define how data moves between steps using outputVariable and requiredData.
- **outputVariable**: Name the result of a step clearly (e.g., "extracted_source_code").
- **requiredData**: List the names of variables from previous steps that this step needs as input.
- Refer to the **Schema Reference** for JSON field details: [playbook-schema.md](references/playbook-schema.md)

### 4. Implementation and Registration

1. Draft the playbook JSON using the [playbook-template.json](assets/playbook-template.json) asset.
2. Call playbook__createPlaybook with your completed definition.
3. (Optional) Test the playbook immediately using playbook__selectPlaybook.

## Best Practices

- **Granularity**: Avoid monolithic steps. Granular steps allow for better error recovery and observability.
- **Explicit Success**: Always define requiredArtifacts. This allows the system to verify completion automatically.
- **Traceability**: Use meaningful IDs for stepId (e.g., "npm_install" instead of "step_1") and outputVariable names.

## Quick Links

- [Playbook Schema & Tool Reference](references/playbook-schema.md)
- [High-Quality Workflow Patterns](references/workflow-patterns.md)
- [Playbook JSON Template](assets/playbook-template.json)

