The Claude Fable 5 Setup Guide: How to Get the Most Out of New Model (Exact Config Inside)
The most powerful Claude ever is free until June 22. Then it costs 2x Opus. Here's how to actually use it.
Anthropic released the most powerful Claude ever yesterday.
You have 13 days to test it for free before it gets expensive.
Most people will run everything through it and burn out the free window.
Here's the setup that uses it only where it wins 👇
Before we dive in, I share daily notes on AI & vibe coding in my Telegram channel: https://t.me/zodchixquant🧠

What actually changed
Fable 5 is in a new tier. It's not Opus 5, it's something Anthropic calls Mythos-class, which sits above Opus.
The numbers that matter:
-
Solves 8 out of 10 hard coding problems on the standard test. Opus solves 7. GPT-5.5 solves under 6.
-
Reads your entire codebase in one go (about 2,500 pages of code at once).
-
Writes a 300-page document in one response without breaking.
-
Knows everything up to January 2026.
-
You call it claude-fable-5 in your code.
Stripe used it during early access to run a codebase-wide migration in one day. The same migration would have taken their team over two months by hand.
That's the kind of task Fable is built for. Long, complex, multi-stage work that previous models couldn't sustain.
The media could not be played. Reload
The pricing reality
Fable costs 2x Opus across the board:
Input Output Cached Fable 5 $10/M $50/M $1/M Opus 4.8 $5/M $25/M $0.50/M
If you spent $100 last week on Opus, you spend $200 this week running everything through Fable.
Real-world math on a typical 5,000-token task:
Per task 100/day Per month Fable 5 $0.25 $25 $750 Opus 4.8 $0.125 $12.50 $375
When Fable 5 is worth the $50
Use Fable only when the task pays off the price difference. Three categories.
Long autonomous work. Multi-step migrations, codebase-wide refactors, week-long research tasks. The kind of work where you'd otherwise babysit 4 hours of Opus retries. One clean Fable run beats 8 Opus retries on cost and time.
Vision-heavy tasks. Fable is now state-of-the-art for vision. Rebuilding a web app from screenshots, extracting numbers from scientific figures, parsing complex diagrams. If your task involves images, Fable is the right model.
The hardest coding problems. Tasks where Opus stalls or needs explicit hand-holding. If you've ever asked Opus the same thing 3 times in different ways, that task is Fable territory.
When Opus 4.8 still wins
Most daily work doesn't need Fable.
Short focused tasks. Single file edit, small refactor, one bug fix. Opus handles these in one shot. Paying 2x for the same outcome makes no sense.
High-volume work. Doc updates, commit messages, routine reviews. If you run a task 50 times a day, the math is brutal: $0.125 per task on Opus vs $0.25 on Fable is the difference between $375 and $750 a month for the same output.
Latency-sensitive work. Fable is bigger and runs longer per token. If you need fast iteration, Opus is faster.
The pattern most teams settle on: route by task complexity, hard high-value jobs to Fable, everything else to Opus or Sonnet.

The exact CLAUDE.md routing config
Drop this in your CLAUDE.md:
markdown
Model routing rules
Default model: claude-opus-4-8
Switch to claude-fable-5 only when at least one is true: - Task spans more than 5 files or is expected to take more than 30 minutes - Task involves images, screenshots, or vision (extract data, rebuild from visual, parse figures) - Previous attempts on Opus stalled or needed more than 2 retries - Task is async/autonomous and will run without human check-in for over an hour
For everything else, stay on Opus 4.8. Do not switch up because the task feels complex. Switch up only when the criteria above are met.
For doc updates, commit messages, simple migrations, single-file edits, use claude-sonnet-4-6.
Claude reads this on session start and routes itself. You don't need to think about it task by task.
Prompt caching for the 90% discount
Fable's input drops to $1 per million with prompt caching. Set it up in your client:
python client.messages.create( model="claude-fable-5", max_tokens=8000, system=[ { "type": "text", "text": large_system_prompt, "cache_control": {"type": "ephemeral"} } ], messages=[...] )
If you run the same system prompt or CLAUDE.md across 20 sessions a day, caching pays for itself in the first hour.
For Claude Code users, caching is on by default for project-level prompts, so the discount is automatic.
The free window: June 9 to June 22
Pro, Max, Team, and seat-based Enterprise plans include Fable 5 at no extra cost from June 9 through June 22.
After June 22, using Fable on those plans needs usage credits. The Anthropic team said they might extend the window if capacity allows, but plan as if it ends on the 22nd.
This is 13 days to test Fable on real work without paying for it.
The right move: route your top 5 complex tasks of the week to Fable, see if the output justifies the $50 per million for your specific workload, and decide before the window closes.
Common mistakes after a model release
You swap the model string globally and forget about routing. This is how budgets double. Always pair a model change with explicit routing rules in CLAUDE.md.
You don't test on your own work first. Anthropic's benchmark numbers are real, but your codebase is different. Run Fable on 5 of your hardest tasks before committing to it.
You ignore the free window. June 9 through June 22 is the rare moment when you can test the most capable Claude on real work without paying. Use it.
You assume bigger means slower means worse latency. Fable is bigger per token but it also stalls less and self-corrects more. Real-world tasks often finish faster on Fable than 3 retries on Opus.
You skip prompt caching. Without it, Fable is twice as expensive on input as it needs to be. Turn it on.

The 5-minute setup
1 minute: copy the routing rules into your CLAUDE.md.
1 minute: update model to claude-fable-5 in the calls that match the routing criteria (or let Claude Code route itself based on CLAUDE.md).
1 minute: turn on prompt caching for your system prompts.
2 minutes: queue your 5 hardest pending tasks and run them on Fable. See if the output justifies the cost.
Done. Before June 22 you'll know whether Fable belongs in your daily workflow or only in your hardest 5% of tasks.
The model didn't change your workflow. Your routing did.
Thanks for reading!
I share daily notes on AI, finance, and vibe coding in my Telegram channel: https://t.me/zodchixquant
