Is Fable 5 Available on Claude Code? No β Anthropic Confirms Zero Traffic
Fable 5 is not on Claude Code. Anthropic staff confirmed June 25 they serve exactly zero Fable traffic β model picker listings were a UI bug. Day 15: GPT 5.6 gated preview reported. Opus 4.8 is the fallback.
Status (June 30, 2026 β Day 18): Fable 5 is not available on Claude Code for general users. June 27 Axios "within days" reporting has not produced a restore after the weekend. Anthropic's June 25 zero-traffic confirmation for Fable stands. Mythos partial restore (Annex A US critical-infra only) does not change Claude Code's consumer/developer Fable picker. Opus 4.8 remains the fallback. Live status β
Status (June 29, 2026 β Day 17): Fable 5 is not available on Claude Code for general users. Anthropicβs June 25 zero-traffic confirmation for Fable stands; no June 29 restoration post. Mythos partial restore (Annex A US critical-infra only) does not change Claude Codeβs consumer/developer Fable picker. Opus 4.8 remains the fallback. Live status β
Status (June 28, 2026 β Day 16): Fable 5 is not available on Claude Code for general users. No new restoration signal from Anthropic. The day's context: Zhipu AI reports its latest model matches Claude Mythos on security bug-detection benchmarks β the same capability class cited in the export control ban. If Zhipu open-sources this model (consistent with their GLM history), internationally-accessible Mythos-parity security AI would exist outside any US export control framework. Opus 4.8 remains the Claude Code fallback. Live status β
Status (June 27, 2026 β Day 15): Fable 5 is not available on Claude Code for general users. Anthropic's official June 27 post says Mythos 5 is redeploying to US critical-infrastructure organizations first; Fable 5 general use is still being negotiated with the government. Zero Fable traffic was confirmed June 25 β that still holds. Opus 4.8 is the fallback.
June 27 official Anthropic update:
Today, the government notified us that Mythos 5, our strongest cybersecurity model, can be redeployed to a set of US organizations that operate and defend critical infrastructure. We're restoring access for these organizations quickly, and we're continuing to work with the government to expand access to Mythos 5 and make Fable 5 available for general use again.
Sam McAllister (Anthropic staff, June 25): "We are currently serving exactly 0 traffic to Fable 5."Amol Avasare (Head of Growth, June 25): broad access reports were categorically false. Fable 5 may still appear in the model picker (UI bug); selecting it shows "Claude Fable 5 is currently unavailable." Use Opus 4.8.
Quick Answer: Fable 5 is not back on Claude Code. All June 25 social media reports of access were wrong. Opus 4.8 remains the fallback until Anthropic announces restoration on anthropic.com/news.
Learn more about loop engineering
What is Claude Fable 5?
Claude Fable 5 is Anthropic's 5th generation model built for your most ambitious, long-running work. It's designed to tackle days-long, complex, and asynchronous tasks that previous models couldn't sustain.
Key capabilities:
Agents: Work for days at a time, planning across stages and checking its own work
Coding: Handle large migrations, complex implementations, and multi-day autonomous sessions
Vision: Understand diagrams, charts, and PDFs to check outputs against goals
Self-Testing: Write its own tests to verify correctness
Running Fable 5 on Claude Code
According to Anthropic's official documentation, Fable 5 runs directly in Claude Code as an agent harness.
"Run Claude Fable 5 in an agent harness like Claude Code or Claude Managed Agents, and it can work for days at a time: planning across stages, delegating to sub-agents, and checking its own work."
What This Means for Developers
When you use Fable 5 in Claude Code, you get:
Multi-Day Sessions: Fable 5 can run autonomous coding sessions that span days, not just hours
Self-Correction: The model plans work, executes, tests itself, and iterates
Goal Command: Use /goal to define long-running objectives Fable 5 will work toward
Loop Engineering: Design self-correction loops where Fable 5 gets environmental feedback and improves
How to Access Fable 5
Version Requirement
Update to Claude Code v2.1.170 or later to access Fable 5.
Achieves 6x improvements over earlier models on complex tasks
Important: Safeguards & Data Retention
Automatic Safeguards
Fable 5 includes robust safeguards for cybersecurity and biology. Queries flagged in these domains are automatically routed to Opus 4.8 (you won't be charged Fable prices for rerouted requests).
Claude Fable 5 is state-of-the-art at coding, knowledge work, vision, and computer use.
According to Anthropic's benchmarks, Fable 5 outperforms other leading models on:
SWE-Bench (coding challenges)
Agent tasks (multi-step workflows)
Vision understanding (diagrams, charts, PDFs)
Long-horizon tasks (days-long projects)
Should You Use Fable 5 on Claude Code?
Use Fable 5 when:
You have a complex, multi-day coding project
You need to migrate or refactor large codebases
You want the model to work autonomously with minimal supervision
The task requires structural changes, not just simple edits
Skip Fable 5 for:
Quick one-off edits or bug fixes
Simple tasks that Claude Opus or Sonnet can handle
Budget-sensitive projects (Fable 5 is premium-priced)
Getting Started with Fable 5 on Claude Code
Update: Upgrade to Claude Code v2.1.170 or later (run claude --version to check)
If update fails, uninstall (npm uninstall -g @anthropic-ai/claude-code or brew uninstall claude-code) and reinstall
Access: Ensure you have API access or Enterprise plan subscription
Model Selection: Use claude-fable-5 as your model identifier
Define Goals: Use /goal for long-running autonomous work
Monitor Progress: Fable 5 will update you as it works through tasks
Review Output: Check completed work rather than supervising every step
Troubleshooting: Multiple Claude Code Installations
Problem: Wrong Version After Update
If claude --version shows an old version (like 2.1.23) even after installing 2.1.170, you likely have multiple Claude Code installations in your PATH.
How to Fix
Step 1: Identify all installations
which claude
# Example output: /Users/yash/.bun/bin/claude
Step 2: Remove ALL old installations
You may have Claude Code installed through:
npm (deprecated method)
Bun (package manager)
Homebrew (symlinks to npm)
Multiple npm locations (nvm, system npm, Homebrew npm)
Remove them all:
# npm (check all locations)
npm uninstall -g @anthropic-ai/claude-code
/opt/homebrew/bin/npm uninstall -g @anthropic-ai/claude-code
# Bun
bun remove -g @anthropic-ai/claude-code
# Homebrew cask
brew uninstall --cask claude-code
# Verify which is still activewhich claude
Step 3: Clean install
# MacOS/Linux (recommended method)
curl -fsSL https://claude.ai/install.sh | bash
# This installs to: ~/.local/bin/claude# Restart your terminal# Verify correct version
claude --version
# Should show: 2.1.170 (Claude Code)
Expected Installation Location
After a clean install, which claude should show:
MacOS/Linux:/Users/yourusername/.local/bin/claude
Windows:C:\Users\YourName\.local\bin\claude.exe
If it shows anything else (like /opt/homebrew/bin/claude or /.bun/bin/claude), you still have an old installation taking precedence.
Bottom Line: Claude Fable 5 represents a major leap in autonomous coding capabilities. Use it for your most ambitious projects where you need multi-day autonomy, self-correction, and frontier intelligence.
Update (June 25, 2026): Anthropic staff debunked viral return rumors β zero Fable traffic on Claude Code. Model picker UI bug only; selecting Fable 5 shows unavailable. Opus 4.8 fallback. Live status β