Leaderboard/Agent Orchestration/fable-mode
Last commit on September 2, 2026·Created on June 13, 2026

mrtooher/fable-mode

A framework for staged execution and delegation in multi-agent planning workflows
Combined rank
#362
across all skills
In Agent Orchestration
#22
category rank
Stars
864
+0.7% in last 7d
Forks
93
+1.1% in last 7d
Watchers
11
0.0% in last 7d
Traction scoreGitHub stars can be faked, so popularity alone can be misleading. Traction Score looks for broader signs of recent attention, adoption, and active maintenance.
TL;DR

Fable Mode provides a structured discipline for AI agents tackling large, open-ended tasks. It replaces immediate execution with a requirement for written stage plans and explicit delegation to specialized agents, ensuring that complex workflows are broken down into verifiable steps.

This approach is designed for automation builders who need to reduce fabrication in research and enforce rigorous verification guardrails at lower execution tiers.

WHO IT'S FOR
AI agent / automation builders
implementing multi-stage planning and delegation workflows
Technical leads / architects
establishing rigorous AI execution guardrails and verification
AI power users
executing complex, multi-file research and coding tasks
Platform / DevEx teams
optimizing LLM performance across different model tiers
Repository contents

7 skill files

Compatible AgentsThe repository documents support for these agents. The skills may also work with other agents that can load SKILL.md files, but they may need some setup or small changes.

Use this skill collection

Follow the documented setup, then try a first task.

I’m using

Claude Code user-scope bundle

Installs: Complete fable-mode skill family and its agent definitions, installed at user scope under ~/.claude/skills/ and ~/.claude/agents/. · Claude Code

Before you start
  • Git must be available to run the documented clone command.
  • A Bash-compatible environment must be available to execute install.sh.

Platform: Claude Code

  1. In a terminal, run the documented command from the directory where you want the fable-mode repository cloned. It clones the repository, enters it, and runs the user-scope installer.

    git clone https://github.com/mrtooher/fable-mode.git && cd fable-mode && ./install.sh
install.sh · Checked Sep 18, 2026README.md · Checked Sep 18, 2026

Give it something to do.

Suggested first task

Create a verified two-source brief

Uses fable-mode

  • Two source files replacing [source path A] and [source path B]
  • A destination replacing [output path]
  • The comparison question or decision the brief should address
Use the fable-mode skill to produce a short brief comparing [source path A] and [source path B]. Write the brief to [output path]. Start with a numbered stage map, give each stage a check that can fail, map every load-bearing claim to one of the supplied sources, perform the required self-critique, and apply the mandatory double-check delivery gate before presenting the result.
SKILL.md · Checked Sep 18, 2026
Suggested first task

Verify a finished deliverable

Uses double-check

  • A finished artifact replacing [artifact path]
  • Its requirements or acceptance criteria replacing [spec path]
Use the double-check skill to verify the finished deliverable at [artifact path] against the requirements in [spec path]. Check the existing output rather than redoing the task. Fix any confirmed FAIL and re-run its specific failed check, then provide the verification summary. Run only one double-check on this deliverable.
double-check/SKILL.md · Checked Sep 18, 2026
Suggested first task

Safely perform an exact-word replacement

Uses execution-guardrails

  • The exact word replacing [old word]
  • The replacement replacing [new word]
  • The file replacing [file path]
Use the execution-guardrails skill while replacing the exact word [old word] with [new word] in [file path]. First verify that the target occurrence exists. Use a unique targeted anchor when possible; otherwise use word-boundary matching, never a bare substring replacement. Afterward, check the file for glued or malformed compound words and report only confirmed problems.
execution-guardrails/SKILL.md · Checked Sep 18, 2026