Claude docs changes for June 10th, 2026 [diff]
Executive Summary
- Claude Fable 5 (Mythos-class model) is now generally available via Claude Code v2.1.170, with full documentation coverage across the API and advisor tool
- New server-side fallback and fallback credit beta features allow automatic retrying of refused Fable 5 requests on another model (e.g. Opus 4.8) without double-paying prompt cache costs
- Scheduled deployments are now documented for Managed Agents, enabling cron-based autonomous agent runs with full lifecycle management (pause, unpause, archive, manual run)
- New comprehensive advisor tool documentation for Claude Code, including Fable 5 model pairing support and billing details
- New Deployments and Deployment Runs API endpoints added across all SDK languages
New Claude Code versions
2.1.170
New features
- Introduced Claude Fable 5: a Mythos-class model now available for general use, exceeding the capabilities of any previously generally-available model. Requires v2.1.170 for access.
Major bug fixes
- Fixed sessions not saving transcripts (and not appearing in
--resume) when launched from the VS Code integrated terminal or any shell that inherited Claude Code environment variables.
Claude Code changes
New Documents
advisor [Source]
New comprehensive document covering the advisor tool, which lets Claude consult a second (typically stronger) model at key decision points during a task. Covers how to enable the advisor via /advisor command, advisorModel setting, or --advisor flag; supported model pairings (including Fable 5 as both main and advisor model starting from v2.1.170); billing details; prompt caching behavior; and comparison with related features like opusplan and subagents.
API changes
New Documents
api/beta/deployment_runs [Source]
New API reference for the Deployment Runs resource. Documents the BetaManagedAgentsDeploymentRun object and lists endpoints to retrieve and list deployment run records, which track individual scheduled or manual deployment execution attempts including session creation success/failure.
api/beta/deployments [Source]
New API reference for the Deployments resource. Documents CRUD endpoints plus lifecycle operations: create, list, retrieve, update, archive, pause, unpause, and manually run a deployment. The BetaManagedAgentsDeployment object includes schedule configuration (cron expression, timezone, upcoming run times), pause/archive status, and agent/environment references.
build-with-claude/fallback-credit [Source]
New guide covering the fallback credit beta feature, which avoids double-billing prompt cache write costs when retrying a refused Fable 5 request on another model. Documents the opt-in flow using the fallback-credit-2026-06-01 beta header, how to read fallback_credit_token and fallback_has_prefill_claim from a refusal's stop_details, how to construct the retry request, and error handling for rejected token redemptions.
build-with-claude/refusals-and-fallback [Source]
New guide covering how to detect and handle Fable 5 refusals (stop_reason: "refusal"). Documents stop_details fields (category, explanation), when refusals are billed, and three fallback strategies: server-side fallback (single API call with fallbacks parameter and server-side-fallback-2026-06-01 beta header), SDK middleware (BetaRefusalFallbackMiddleware), and manual retry with fallback credit. Includes pitfalls, streaming behavior, and how to handle refusals in Message Batches.
managed-agents/scheduled-deployments [Source]
New guide for scheduled deployments in Managed Agents. Documents how to create a deployment with a cron schedule and timezone (IANA), how deployment runs track execution history (success and failure), lifecycle management (pause, unpause, archive), failure behavior for rate limits and archived resources, and how to trigger a manual run outside the schedule.
Changed documents
agents-and-tools/tool-use/advisor-tool [Source]
- Added Claude Fable 5 (
claude-fable-5) and Claude Mythos 5 (claude-mythos-5) as supported executor/advisor model pairings. Both models can only advise themselves. [line 37] [Source]
api/beta [Source]
- Added two new beta header values:
server-side-fallback-2026-06-01andfallback-credit-2026-06-01to theAnthropicBetaenum. - Added
claude-fable-5("Next generation of intelligence for the hardest knowledge work and coding problems") andclaude-mythos-5("Most capable model for cybersecurity and biology research") to the model enum. - Added
allowed_fallback_modelsfield toBetaModelInfo— lists model IDs accepted asfallbacks[i].modelon the Messages API; empty list meansfallbacksparameter is not supported for that model as primary.
api/beta/messages/create [Source]
- Added new
fallbacksrequest parameter — an optional array of fallback model configurations to retry when Fable 5 refuses. - Added
fallback_credit_tokenrequest parameter — pass the token from a prior refusal'sstop_detailsto avoid double-paying prompt cache costs on retry. - Added new
BetaFallbackBlockParamcontent block type — echoed back from a prior response at model-handoff boundaries; position is load-bearing for thinking verification hash chains. - Added
stop_detailson responses with newfallback_credit_tokenandfallback_has_prefill_claimfields for refusal handling.
api/beta/models/list [Source]
- Added
allowed_fallback_modelsfield to theBetaModelInforesponse object, listing model IDs this model accepts as fallback targets on the Messages API.