Anthropic launched Claude Fable 5 — its first publicly available Mythos-class model — on Tuesday (June 9), then on Friday (June 12) a US government export-control directive forced Anthropic to suspend Fable 5 and Mythos 5 for all users; access is still down with no restoration date. Meanwhile, two deadlines land today (June 15): Claude Sonnet 4 and Opus 4 API calls start erroring, and the agent/headless billing split goes live. Claude Code shipped eight releases this week (v2.1.169–v2.1.176) — nested subagents, Bedrock GovCloud fixes, and enforceAvailableModels for enterprise lockdown — and dynamic workflows reached general availability.
Sponsored by CodeRabbit
AI writes more code than ever. Reviewing it shouldn't mean scrolling forty files in alphabetical order.
CodeRabbit Review reorganizes any pull request from a flat file list into a structured, layer-by-layer walkthrough — the logical reading order of the change, not the order your platform happens to sort it. Every range gets a plain-language summary, with sequence diagrams, state machines, and ERDs generated inline wherever a visual earns its place.
Cohorts group related files so you review one idea at a time. Layers put foundational changes — data shapes, contracts — before the code that depends on them. Code Peek shows any symbol's definition and usages without leaving the tab, and Semantic Diff cuts past formatting noise to what actually changed. Comment on exact line ranges; native reviews and approvals post back to GitHub or GitLab.
From the team that pioneered AI code reviews: 2M reviews a week, 6M repos, 15K customers. Free for everyone in early access.
Released Tuesday, June 9, Claude Fable 5 is Anthropic's first generally available Mythos-class model, shipped day-one on the Claude API, Amazon Bedrock, Vertex AI, Microsoft Foundry, and GitHub Copilot at $10 per million input tokens and $50 per million output tokens (double Opus 4.8, with the 90% prompt-caching discount intact). Mythos 5 is the same underlying model with cyber safeguards lifted, restricted to Project Glasswing partners. Anthropic says Fable 5 leads on agentic coding (80.3% on SWE-Bench Pro versus Opus 4.8's 69.2%) and that Stripe used it to run a codebase-wide migration on a 50-million-line Ruby codebase in a day — work Anthropic estimates would have taken a team over two months by hand. Note: the model is suspended as of June 12 (see below), so day-one availability is currently moot.
On Friday, June 12 (the directive arrived at 5:21pm ET), the US government — citing national-security export-control authority — ordered Anthropic to suspend access to Fable 5 and Mythos 5 for any foreign national, whether inside or outside the United States, including Anthropic's own foreign-national employees. Because Anthropic cannot filter access by nationality in real time, it disabled both models for all customers worldwide to comply; every other Claude model (Opus 4.8, Sonnet 4.6) is unaffected. New sessions fall back to your default model or Opus 4.8, and API calls to claude-fable-5 return errors.
Anthropic is complying under protest. Per its statement, the government's letter gave no specific details; Anthropic's understanding is that the concern is a method of "jailbreaking" Fable 5, but it says the findings it was shown are minor or benign and that comparable capability is widely available from other public models (it cited OpenAI's GPT-5.5). Axios reported that Commerce Secretary Howard Lutnick sent the directive letter to Dario Amodei. As of this issue (June 15), access has not been restored and there is no ETA.
claude-sonnet-4-20250514 and claude-opus-4-20250514 — and the aliases claude-sonnet-4-0 / claude-opus-4-0 — stop accepting requests on June 15, 2026 (9am PT). After that, calls to these IDs return errors with no automatic fallback. Anthropic's recommended successors are claude-sonnet-4-6 and claude-opus-4-8. A global search for 20250514 across your code is the fastest way to find every call that needs updating.
claude -p Billing Splits from Subscription Today (June 15)Starting June 15, the Claude Agent SDK, claude -p headless mode, Claude Code GitHub Actions, and third-party agents move off your plan's subscription limit onto a separate monthly credit pool ($20 Pro / $100 Max 5x / $200 Max 20x), metered at full API rates with no rollover. Interactive Claude Code in the terminal or IDE is explicitly unaffected and keeps drawing from your subscription.
While Fable 5 is suspended, three behaviors are worth knowing before you wire it back in. (1) Safety classifiers return stop_reason: "refusal" on a successful HTTP 200 — not a network error, and not billed at Fable rates — with the server retrying on Opus 4.8; the Python, TypeScript, Go, Java, and C# SDKs ship refusal-fallback middleware, but anything calling the API directly must handle this stop reason explicitly. (2) The Opus-4.7-era tokenizer produces ~30% more tokens for the same text — recalibrate any cost or rate-limit math using the token-counting API with model: "claude-fable-5". (3) Mandatory 30-day data retention, with no zero-data-retention option — both Fable 5 and Mythos 5 are Covered Models; Microsoft restricted internal employee use over this policy while still selling the model to Copilot/Foundry customers.
The June 9 release (which also added the now-suspended Fable 5 access) introduced nested subagent support: subagents can spawn their own subagents up to five levels deep, enabling deeper autonomous task decomposition.
A dense run of six releases (June 10–12):
~/.aws config when AWS_REGION is unset; fixes GovCloud regions (us-gov-*) sending the wrong inference-profile prefix and causing 400 errors; caches awsCredentialExport credentials until their real Expiration instead of a fixed one hour.enforceAvailableModels managed setting makes the availableModels allowlist also constrain the Default model and blocks user/project settings from widening a managed allowlist./model picker shows Opus as its own row on Max/Team Premium/Enterprise; skill hot-reload no longer resends the full skill list on single-skill changes; hook if conditions for Edit(src/**), Read(~/.ssh/**), and Read(.env) now match correctly; Remote Control no longer silently switches the session model on web/mobile connect; tmux clipboard copy fixed.2.1.172 or later in CI. /plugin gained a search bar, and session titles now generate in your conversation's language (pin with the language setting).Run claude update to pull these in. (v2.1.176 release notes)
--safe-mode, /cd Command, disableBundledSkills
The June 8 release adds --safe-mode (or CLAUDE_CODE_SAFE_MODE) to start with all customizations disabled for troubleshooting; /cd moves a session to a new working directory without breaking the prompt cache; and disableBundledSkills hides bundled skills and built-in slash commands from the model. Also fixes enterprise managed MCP policies not being enforced on reconnect.
Dynamic workflows reached general availability on June 10. Describe a complex task and Claude writes its own orchestration script, fans out parallel subagents, and verifies results before surfacing them (trigger with ultracode or by asking Claude to "create a workflow"). Two headline migrations: Jarred Sumner ported the Bun runtime from Zig to Rust — roughly 750,000 lines, 99.8% test-suite pass rate, 11 days from first commit to merge, presented at Code with Claude Tokyo — and Anthropic says Stripe used Fable 5 plus workflows for the 50-million-line Ruby migration noted above.
Launched June 8: connector developers now have an observability dashboard showing active users, tool-call counts, directory ranking, per-tool error rates and latency, and usage broken down by Claude product (Claude, Claude Code, Cowork, etc.). A new in-app connector-submission portal is also live.
Released June 8: a new Swift package lets Apple developers use Apple's Foundation Models framework to call Claude for multi-step reasoning, code generation, and long-context tasks — @Generable-annotated typed Swift values arrive at the Claude API as structured data and responses stream back into SwiftUI views. At WWDC 2026 (June 9), Apple announced it would open-source the framework and open it to third-party models including Claude and Gemini.
Across four June releases: adds the claude-fable-5 model and fable alias to SDK types (v0.3.170); system/model_fallback now fires for all triggers — overloaded, server_error, and last_resort join model_not_found and permission_denied, so update any code that switches on the trigger field (v0.3.174); the plugins option accepts skipMcpDiscovery: true per plugin (v0.3.172); and v0.3.176 fixes turn result messages dropped when multiple turns complete during a background agent or workflow, plus background/remote/MCP task state not restored on session resume. Also: an experimental usage API and an sse browser option (v0.3.169). The Python SDK v0.2.96 pins mcp below 2.0.0 — check for conflicts if you manage that version yourself.
Launched June 9 at Code with Claude Tokyo: agents can now run on a cron schedule, and securely reach CLI tools via vault-stored environment variables injected at the network boundary (the agent never sees your actual key). New self-hosted sandbox guides cover five providers — Blaxel, E2B, Google Cloud, Namespace Labs, and Superserve.
Thariq (Anthropic) wrote up editing the Fable 5 launch video end-to-end with Fable 5 plus Claude Code — the model wrote the code and tool calls for transcription, ffmpeg, color grading, Figma MCP, and Remotion rendering. The slide deck is public if you want to replicate the workflow.
Anthropic's June 8 research post examines why AI has advanced faster in coding than biology ("bio databases are like cities built before cars") and what infrastructure changes would make them agent-navigable. Relevant for builders working on biomedical applications.
Two systems-integrator alliances landed this week: Tata Consultancy Services (June 12) and DXC Technology (June 11) will bring Claude into banking, aviation, healthcare, and other compliance-heavy enterprise systems. Relevant if you sell into regulated verticals.
Published June 12, Anthropic's first public-transparency report covers model behavior, safety evaluations, and policy commitments.
Anthropic's CEO published "Policy on the AI Exponential" (June 10), arguing AI is advancing faster than policymaking institutions can handle, alongside three initiatives — including Claude Corps (June 11), a $150M fellowship matching 1,000 early-career people with US nonprofits to use Claude in advancing their missions. Worth reading for signal on where Anthropic's regulatory posture is heading.
Today (June 15):
claude-sonnet-4-0 and claude-opus-4-0 (and the -20250514 IDs) — API calls return errors after today. Move to claude-sonnet-4-6 and claude-opus-4-8; search your code for 20250514.claude -p, Claude Code GitHub Actions, and third-party agents move to a separate credit pool today. Verify you have credits and that cost monitoring is updated; interactive Claude Code in the terminal is unaffected.claude update for the hook-path, Bedrock GovCloud, and Remote Control model-switch fixes.By June 18, 2026:
By July 1, 2026:
By August 5, 2026:
Want to catch up? Read every past issue of This week in Claude.
One tap is the fastest way to shape next week.
And I read every reply. Hit reply and tell me what you want more of, or less of, and it goes straight into the next issue.
A weekly digest for Claude Code builders. Model updates, releases, and notable tools. Every Monday morning.
TLDR; The headline might be what's not happening: Anthropic paused the June 15 Agent SDK billing change, so claude -p, the Agent SDK, Claude Code GitHub Actions, and third-party apps keep drawing from your subscription exactly as before — no credit to claim, nothing to do. Beyond that, a dense week across the Claude platform: Artifacts ship in Claude Code for Team and Enterprise, the Design ↔ Code sync goes bidirectional, and Opus 4.7 clocks in at 20× faster than last year's best human team...
TLDR; Anthropic filed a confidential S-1 with the SEC this week, opening the door to an IPO — but for builders, the June 15 deadline (model retirements + agent credit-pool split, both flagged last week) is now nine days out. Claude Code shipped five releases in the v2.1.160–v2.1.166 series with major new features: fallbackModel chaining, hardened cross-session security, version-range enforcement for platform teams, and a completely redesigned /fork that finally runs background agents with...
TLDR; Opus 4.8 is the headline this week — new model, same price, stronger coding benchmarks, and a genuinely useful new feature for agentic loops (mid-conversation system messages). Claude Code also shipped dynamic workflows in research preview, letting you throw hundreds of parallel subagents at your biggest migrations — Salesforce reports a 231-day migration completed in 13 days, and Bun's 700k-LOC Rust rewrite shipped in 6. Several hard deadlines are coming fast: the...