From fable5-skills
Launches a fresh-context subagent to verify finished work instead of self-critique. Useful when self-review misses mistakes or for multi-agent harnesses.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fable5-skills:verifier-subagentThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fable 5 dispatches and sustains parallel subagents dependably enough to make this practical at scale, and the pattern is worth defaulting to: a separate subagent with a clean context outperforms self-critique at catching defects, because it doesn't share the maker's assumptions or blind spots.
Fable 5 dispatches and sustains parallel subagents dependably enough to make this practical at scale, and the pattern is worth defaulting to: a separate subagent with a clean context outperforms self-critique at catching defects, because it doesn't share the maker's assumptions or blind spots.
The agent that produced the work does not grade it. Give the verifier the specification and the output -- never the maker's reasoning or narration about what it did. A verifier that reads "I fixed the race condition by adding a lock" will look for a lock; a verifier that only reads the diff will look for a race condition.
Split out a subtask when it is independent of your current context, large enough to amortize the handoff, and specifiable in a few sentences plus file pointers. Don't delegate tightly coupled edits -- coordination cost exceeds the parallelism gain.
For a long-running build, run verification at a defined interval (every N components, every X hours), not once at the end. A defect caught at component 3 is cheap; the same defect caught after component 40 depend on it is not.
A subagent brief needs exactly: the goal (one sentence), inputs (paths or data), a checkable definition of done, constraints (what not to touch), and where to write results. If you can't fill in all five, the task isn't ready to delegate.
npx claudepluginhub kenhuangus/fable5 --plugin fable5-skillsPatterns for parallel subagent delegation with Claude Fable 5: split tasks, async coordination, long-lived workers, and verifiers with clean contexts.
Executes implementation plans by dispatching fresh subagents per task, with two-stage spec compliance and code quality review after each task. Supports task sizing (small/medium/large).
Executes implementation plans by dispatching fresh subagents per task, with task-level spec compliance and code quality reviews plus a final branch review.