Delegate Fable logo

Delegate Fable

Organization
instructa
delegate-fable

Delegate a bounded task from a Codex session to a Fable-powered Cursor Agent in the same Herdr workspace, then wait for and collect the result. Use when Codex should bring in Fable for an independent read-only review or make Fable the sole writer for an implementation while Codex pauses and reviews afterward. Trigger for requests such as "ask Fable", "have Fable review this", "let Fable implement this", or recurring Codex-to-Cursor handoffs in Herdr.

Overview

Publisherinstructa
Repositoryagent-skills
Skill namedelegate-fable
Stars
141
Forks
16
Bundled files
2
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 2 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by instructa on GitHub. Read the source before you install it.

Installation

Install the Delegate Fable AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/instructa/agent-skills.git /tmp/agent-skills
mkdir -p .claude/skills
cp -r /tmp/agent-skills/skills/delegation/delegate-fable .claude/skills/delegate-fable
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Delegate Fable in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Delegate Fable on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Delegate Fable is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Delegate to Fable

Delegate through Herdr with one explicit mode:

  • review: Keep Fable read-only. Use for plans, diffs, bugs, architecture, tests, or independent verification.
  • implement: Make Fable the sole writer. Stop editing until Fable finishes, then inspect and verify its work.

Default to review when the user's authorization is ambiguous. Never infer permission to edit from phrases such as "take a look" or "check this".

Prepare the handoff

Create a self-contained task containing:

  • the objective and relevant project context;
  • the exact scope and files when known;
  • current evidence, errors, or competing hypotheses;
  • constraints and explicit non-goals;
  • required verification and return format.

Do not forward the entire conversation. Preserve only information needed to complete the delegated task.

Before implement, inspect the current workspace state and preserve unrelated or pre-existing changes. Tell Fable not to commit, check in, shelve, push, switch branches, or alter workspace configuration unless the user explicitly requested it.

Run the delegation

Resolve this skill's directory and invoke its script. Pass the task with --task, --task-file, or stdin.

bash
bash <skill-dir>/scripts/delegate-fable.sh review \
  --target-title "Fable 5 Reviewer" \
  --task "Review the current change for correctness, regressions, and missing tests."
bash
bash <skill-dir>/scripts/delegate-fable.sh implement \
  --task "Implement the agreed fix within the stated scope and run the relevant verification."

The script must:

  1. Honor --target first, then --target-title. A requested target is mandatory: if it is missing or busy, stop instead of falling back to another Cursor pane.
  2. Without an explicit target, prefer a settled pane titled Fable 5 Reviewer, then reuse another idle Fable Cursor Agent in the current Herdr workspace. Split only when no Fable pane exists.
  3. Submit the task, handle the known Cursor Enter fallback, wait for settlement, and return visible output.
  4. Leave the Fable pane open for follow-up work.

Do not manually duplicate these steps unless the script reports a concrete failure.

Default to one complete Fable turn per hypothesis. If the response lacks the required handoff sections, report an incomplete handoff; do not start a new pane or automatically send an open-ended continuation. On timeout, send Escape to cancel the active turn, collect its last output, and stop.

Handle the result

For review, report Fable's findings with your own assessment. Do not implement findings unless the user separately authorizes changes.

For implement:

  1. Resume ownership only after Fable settles.
  2. Inspect the actual changed files and version-control state.
  3. Run proportionate verification independently.
  4. Report what Fable changed, what you verified, and any remaining risk.

If Fable is blocked, show the blocking output to the user. Never auto-approve permissions, destructive actions, commits, check-ins, shelvesets, pushes, or branch changes.

If the script reports that no Herdr environment is available, stop and explain that the skill must run from an agent pane inside Herdr.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Delegate Fable AI skill do?

Delegate a bounded task from a Codex session to a Fable-powered Cursor Agent in the same Herdr workspace, then wait for and collect the result. Use when Codex should bring in Fable for an independent read-only review or make Fable the sole writer for an implementation while Codex pauses and reviews afterward. Trigger for requests such as "ask Fable", "have Fable review this", "let Fable implement this", or recurring Codex-to-Cursor handoffs in Herdr.

Why use Delegate Fable on TypingMind?

Because you install it once and use it with any model. Delegate Fable is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Delegate Fable in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/instructa/agent-skills/tree/main/skills/delegation/delegate-fable. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Delegate Fable?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Delegate Fable?

As many as you like. As long as a model supports skills, you can use Delegate Fable with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Delegate Fable AI skill free?

It is published on GitHub by instructa. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇