AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Efficient Fable

skill-anshmajumdar121-skill-x-efficient-fable · by anshmajumdar121

>

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-anshmajumdar121-skill-x-efficient-fable

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-anshmajumdar121-skill-x-efficient-fable)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
24d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Efficient Fable? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Efficient Fable (retweaked)

Use a high-cost frontier model as the orchestrator, architect, synthesizer, and final judge. Use cheaper subagents for the bounded heavy lifting that does not require the orchestrator's full judgment. The orchestrator retains truth-judgment; the subagents retain signal-gathering.

> This is the retweaked version adapted for the > skill-x collection. The > original lives at > BuilderIO/skills; > this version generalizes the orchestrator role beyond Claude > Fable, adds an explicit when-NOT-to-use section, and cross-references > the other skills in this collection.

When this skill shines

Reserve the orchestrator for:

  • Decomposing ambiguous work into clean parallel slices.
  • Architecture, product, and safety tradeoffs that need full judgment.
  • Reading conflicting subagent reports and deciding what matters.
  • Integrating partial implementations into one coherent plan.
  • Final review, risk assessment, and user-facing synthesis.

When NOT to use this skill

Skip the delegation pattern if any of these is true:

  • The work cannot be sliced into independent chunks (one tightly

coupled piece of logic).

  • No cheap subagents are available (you ARE the orchestrator and

the only worker).

  • The task is high-stakes single-source-of-truth (medical, legal,

financial advice) — keep all reasoning with the orchestrator.

  • The validation requires reading the entire output carefully (a

30-page legal memo, a 100k-line refactor diff).

  • The task is trivial — overhead exceeds value.

For the above, run in single-agent mode.

The 5-step delegation pattern

  1. Name the expensive-token risk. Large repo search, long logs,

broad docs, repetitive edits — anything where naive execution would burn orchestrator tokens.

  1. **Split independent work into subagents BEFORE reading everything

yourself.** Parallel slices for independent work; keep blocking or highly coupled work local.

  1. Use cheap subagents for: research scans, inventory, search

summaries, narrow bug hunts, browser/testing passes, test output reduction, bounded code edits.

  1. Ask subagents for concise evidence. Files, line references,

commands run, diffs, failures, screenshots, uncertainties, stop conditions they hit. See handoff packet format (§below).

  1. Spend orchestrator tokens on the decision layer. Compare

results, resolve conflicts, choose the implementation path, review the final patch.

Parallelize only independent actions. Do not run actions in parallel when one depends on the result, identifier, decision, or side effect of another.

The vetting protocol (CRITICAL)

Treat subagent reports as leads, not facts.

Before using a high-impact finding, opening a PR, or telling the user the work is done, the orchestrator should:

  1. Reopen the important cited files — confirm the subagent looked

at the right thing.

  1. Confirm the relevant line refs or failures — line numbers and

error messages must match the actual state.

  1. Review the final diff against the task — does the change

actually solve the problem, not just something adjacent?

  1. Test the change if material — run the verification, don't

trust the subagent's "it worked" report.

  1. Look for silent assumptions — subagents often invent defaults

that the orchestrator wouldn't.

Let lighter agents gather signal; keep truth-judgment with the orchestrator. This is the line that, if dropped, makes delegation unsafe.

Handoff packet format

Write delegated prompts as if the subagent has no useful chat context. Include only the context it needs:

  • The repo path and exact objective. What does "done" look like?
  • **The files, packages, or surfaces in scope and anything

explicitly out of scope.** Boundaries reduce drift.

  • The evidence format to return. Files, line refs, commands,

diffs, failures, screenshots, uncertainty.

  • The verification commands or browser flows to run, plus what

success should look like when knowable.

  • Stop conditions. If the code does not match the prompt, a

command fails after a reasonable retry, or the task needs out-of-scope files, stop and report instead of improvising.

Soft scenario defaults

Treat these as defaults, not rigid rules. Adapt to the task.

Research

  • Ask lighter agents to scan docs, prior art, APIs, and repo surfaces.
  • Orchestrator decides what evidence changes the plan.
  • Subagent output: list of relevant files + 1-line summary each, or

detailed answer to a narrow question.

Coding

  • Give cheaper agents bounded edits or candidate patches.
  • Orchestrator owns: shared-file coordination, integration, final

review.

  • Subagent output: diff with before/after, line refs, test run results.

Testing

  • Orchestrator suggests validation direction and the scripts / browser

checks that matter.

  • Lighter agents run targeted tests, browser flows, screenshots, log

reduction.

  • Subagent output: exact commands, failures, likely causes, whether

failures look flaky, environmental, or real.

Debugging

  • Use cheaper agents to cluster logs, reproduce issues, try small

fixes.

  • Orchestrator decides which diagnosis is most trustworthy.
  • Subagent output: ranked list of likely root causes with evidence.

If a task is tiny or the validation itself needs delicate judgment, keep it with the orchestrator.

Diagram

See assets/fable-orchestrator.png for the orchestrator-helpers diagram.

Claims (workload-dependent estimates, not guarantees)

For codebase-heavy work, this pattern is "up to 3-5× more cost-efficient and 2-4× faster" when independent research, coding, or testing slices can run in parallel. Actual savings depend on: how parallelizable the work is, the cost ratio between the orchestrator and subagents, and the overhead of handoff packets + vetting.

How this fits the rest of the skill-x collection

  • Use think-like-gpt-5-6 when you need full auditable

task-execution rigor (intake record, requirement IDs, risk register, validation report, completion note). Delegation is a cost optimization; rigor is a quality optimization. They are compatible.

  • Use super-skill when you want both: the GPT-5.6 Sol rigor

framework as the outer loop, with the Efficient Fable delegation pattern as a fast lane when parallelizable.

  • Use skill-zero when your task is specifically about probing

the hidden states of a coding agent (mechanistic interpretability via linear probes).

Pointers

  • Source of this retweak:

BuilderIO/skills/efficient-fable

  • Sister skill: [super-skill](../super-skill/SKILL.md) — rigor +

delegation, with self-evolution

  • Sister skill: [think-like-gpt-5-6](../think-like-gpt-5-6/SKILL.md)

— full rigor framework

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.