How this is calculated (assumptions, not a promise)
Pricing per million tokens, input/output: Fable 5 $10/$50 · Opus 4.8 $5/$25 · Sonnet 5 $3/$15 · Haiku 4.5 $1/$5. Verify against platform.claude.com/docs — prices move.
All-Fable per task = copies × [context×$10 + (plan + thinking)×$50] + work×$50, no caching (the naive baseline doesn't set it up). Plan ≈ 700 output tokens; thinking tokens follow the effort setting.
Laddered per task = Fable decides+plans on cached context (repeated reads billed at ~15%) then the executor model does the work: context×0.15×$10 + (plan+thinking)×$50 + (context×0.15 + plan)×exec_in + work×exec_out. One executor, no redundant fan-out.
These are deliberately simple. Real bills vary with retries, tool calls, and cache hit rates — but the ratio is the point, and the ratio is structural.