Superdialog Playbook Skill — Development skill for Claude Code
Claude Code / Codex skill for authoring and reviewing SuperDialog voice-agent playbook YAMLs — schema reference, 15-point failure-pattern checklist, interrupt-guard code pattern.
How to install Superdialog Playbook Skill
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open ankitai-s/superdialog-playbook-skill and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Superdialog Playbook Skill does
Claude Code / Codex skill for authoring and reviewing SuperDialog voice-agent playbook YAMLs — schema reference, 15-point failure-pattern checklist, interrupt-guard code pattern.
Alternatives in Development
- Skill Authoring Standard — The DNA of every skill in this repository 5.3k ★
- Stop Review Gate — You are reviewing uncommitted changes before the author finishes their turn 664 ★
- Src Hunter Skill — 实战 SRC / 众测 / Bug bounty 漏洞挖掘 Claude Code skill — 19 个攻击类 playbook、305 个结构化 payload、263 个 WAF/EDR 绕过、2887 份 Ha 602 ★
README
superdialog-playbook-skill
[](https://github.com/ankitai-s/superdialog-playbook-skill) [](https://github.com/ankitai-s/superdialog-playbook-skill) [](LICENSE) [](playbook/references/checklist.md)
A skill for building, reviewing, and fixing **SuperDialog voice-agent playbook YAMLs** — the `persona` / `llm` / `journeys` / `checkpoints` / `interrupts` / `policies` / `knowledge_base` schema that drives a Director+Talker voice agent.
Works identically in **Claude Code** and **Codex** — both load the same `SKILL.md` + `references/` format natively, no conversion needed.
How a playbook actually runs
Every turn, the **Director** (a fast/cheap LLM) reads the transcript and decides whether to advance the checkpoint, fire an interrupt, or stay — then the **Talker** (usually a stronger LLM) speaks from whatever checkpoint the Director landed on. Almost every hard bug in a playbook traces back to something left to Director/Talker *judgment* that should have been made *structural* instead.
sequenceDiagram
autonumber
actor Caller
participant Runtime
participant Director as Director LLM
(judge: llm | expr)
participant Talker as Talker LLM
Caller->>Runtime: speaks this turn
Runtime->>Director: evaluate(transcript, current checkpoint)
alt slot filled / expr condition met
Director-->>Runtime: advance -> next checkpoint
else caller said something matching an interrupt
Director-->>Runtime: interrupt -> target checkpoint
else nothing resolved yet
Director-->>Runtime: stay
end
Runtime->>Talker: current checkpoint's guidance + slots
Talker-->>Caller: spoken
Related Skills
Contract Basics Skill
The CONTRACT mnemonic — 8-point checklist every agent applies when reviewing any contract:
Playbook Builder Skill
This repository contains two Claude skills: one for generating organization specific playbook skills, and the
Edge
Walk a deliverable through the Playbook §2 edge-case checklist and scaffold the tests that genuinely apply.
Create Architecture
Guided, section-by-section authoring of the master architecture document for the game. Reads all GDDs, the sys
Build Domain Dict Skill
Claude Code / Codex skill for authoring supervoice Domain Dictionaries — STT vocabulary, TTS pronunciation, an
Blickwechsel
A change of perspective on your own teaching. Audits a lecture you already teach from the student's point of v
Related Agents
Ansible Manager
Owns Ansible-based configuration management — playbook/role authoring, idempotency enforcement, inventory (sta
Opengrep Rule Engineer
Expert in OpenGrep (FOSS Semgrep fork) and Semgrep rule authoring. Writes precise patterns, taint-tracking rul
Data Loader Pre Flight
Go/no-go checklist for a planned data load. SfSkills data workflow agent, /preflight-load: reads its AGENT.md