Tag: fable-5

  • Claude Fable 5 Explained — vs Opus and Sonnet, and What Changed in Claude Code

    Summary — the conclusion first

    On June 9, 2026, Anthropic shipped Claude Fable 5. Three things matter.

    • A new Mythos class now sits above the Opus tier, and Fable 5 is its first generally available model
    • On risky questions it doesn’t refuse — it hands the request over to Opus 4.8. Substitution, not a wall
    • Claude Code gained a /goal command: “don’t stop until this condition is true” is now a thing

    It costs twice as much as Opus 4.8 — and the real gap is bigger than 2x. Explained below.

    What shipped — Fable and Mythos

    Start with the naming. Mythos 5 is the base model. Fable 5 is the same model wearing safety classifiers, released to the public.

    Mythos 5 itself is restricted to vetted security researchers under a government-partnered program (Project Glasswing). What users and companies actually get is Fable 5.

    On benchmarks, Anthropic reports state-of-the-art results in coding (Cognition’s FrontierCode), financial reasoning (Hebbia), and vision. Stripe testified that a 50-million-line codebase migration “compressed months of engineering into days.”

    The numbers — against the existing lineup

    Here are the official specs of the four current models in one table.

    Fable 5 Opus 4.8 Sonnet 4.6 Haiku 4.5
    Position top tier (Mythos class) complex reasoning, agents speed-intelligence balance fastest, cheapest
    Context 1M tokens 1M 1M 200K
    Max output 128K 128K 64K 64K
    Price (in/out, per MTok) $10 / $50 $5 / $25 $3 / $15 $1 / $5

    One trap hides here. Fable 5 uses a new tokenizer, and the same text counts as roughly 30% more tokens than on older models (stated in the official docs). Double the unit price, more tokens per text — the effective cost gap is wider than the table suggests.

    Also: there is no off switch for thinking. Adaptive thinking is always on; you only control its depth.

    The safety design — substitution, not a wall

    This is the most interesting design choice. When Fable 5 detects high-risk topics — cybersecurity, biology, model distillation — it doesn’t refuse. It passes the request to Opus 4.8 to answer safely.

    Even in the API, a refusal isn’t an error: you get HTTP 200 with stop_reason: "refusal", plus a fallback parameter that retries on another model for you. Per the announcement, over 95% of sessions never trigger a fallback.

    I hit it firsthand while writing this post. My session was full of server-maintenance scripts and security gates; minutes after switching to Fable 5, the classifier flagged the session as “cybersecurity” and quietly swapped in Opus 4.8. Work continued — less like being blocked, more like a shift change.

    What changed in Claude Code

    Claude Code (the terminal AI coding tool) gained /goal. Set a completion condition — “all tests pass and lint is clean” — and the session keeps working until the condition is true.

    The design detail worth noticing: whether the condition is met is checked every turn by a separate evaluator, not by the model doing the work. The worker doesn’t grade its own homework.

    Boris Cherny, Claude Code’s creator, wrote that Fable is “the best model I have used for coding, by a wide margin” — fewer prompts and steers, better token efficiency, code quality, and self-verification, longer autonomous runs. A teammate compressed the shift into one line: “We used to verify that Claude did the work right. Now we verify that it’s doing the right work.”

    The context — a warning days before launch

    The timing is striking. Days before this release, Anthropic publicly urged major AI labs to build “a coordinated brake pedal” for frontier AI development. The strongest model and the strongest warning shipped in the same week.

    There’s criticism too: Mythos-class traffic carries mandatory 30-day data retention (no zero-retention option), and enterprises are already pushing back on AI costs in general.

    One line

    Fable 5 is less about raw power and more about structure. “Swap instead of refuse,” “graded by someone else instead of trusting itself” — the strongest model yet, shipped inside the strictest frame yet.

    Sources

    All numbers and quotes verified against these (as of 2026-06-10).