Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
← All Claude Code issues

This week in Claude Code · Jun 22, 2026

Fable 5 Frozen by Export Order, v2.1.183 Blocks Destructive Commands, TypeScript SDK Gets code_execution Tool

Get the next issue in your inbox. Weekly · Free

unsubscribe anytime.

TLDR;

The week's headline was Fable 5 going dark due to US export controls. The model launched to acclaim June 9, then a government export order June 12-13 forced global suspension of both Fable 5 and Mythos 5; as of June 21 they remain offline and an NSA breach claim has complicated Anthropic's restoration talks with Trump officials. Meanwhile, five Claude Code CLI versions shipped (v2.1.178-v2.1.185): new Tool(param:value) permission syntax, /config key=value shortcuts, automatic blocking of destructive git commands in auto mode, and stream-stall recovery. TypeScript SDK v0.105.0 added a native code_execution tool and lazy partial JSON parsing across all platform variants. The Agent SDK billing overhaul planned for June 15 was quietly paused. Audit your model ID references and update to v2.1.185 before your next deployment.

API & Model Updates

Fable 5 and Mythos 5 suspended globally by US export order; restoration negotiations stalled by NSA breach claim

  • Fable 5 launched to wide developer acclaim on June 9; within 96 hours a US government export control order (June 12-13) forced Anthropic to suspend both Fable 5 and Mythos 5 worldwide.
  • By June 16 security leaders were publicly calling for the controls to be lifted and Anthropic and Trump officials began negotiating a restoration deal, reportedly aided by G7 discussions.
  • As of June 21, both models remain offline - an NSA breach claim has since complicated the talks and no restoration date has been announced.

Editor’s read: If you hardcoded claude-fable-5 or claude-mythos-5 anywhere, your agents are silently broken right now - fix this before anything else.

Anthropic TypeScript SDK v0.105.0: native code_execution tool and lazy partial JSON parsing across all platform variants

  • On June 18, Anthropic released TypeScript SDK v0.105.0 adding a first-class code_execution tool and lazy partial JSON parsing for streaming tool calls; the same lazy-parsing update shipped simultaneously to Bedrock (v0.31.0), Vertex (v0.18.0), Foundry (v0.4.0), and AWS (v0.5.0) SDK variants.

Editor’s read: Lazy partial JSON parsing means you can start rendering tool arguments to a UI before the stream finishes - meaningfully better perceived latency.

Claude Code & CLI

v2.1.178: Agent teams simplified, Tool(param:value) inline permission syntax (June 16)

  • Released June 16, v2.1.178 simplifies the agent teams configuration model and introduces a Tool(param:value) inline permission syntax that lets you scope tool access at the invocation level rather than globally in settings.

Editor’s read: Tool(param:value) permissions are the right way to lock down dangerous tools per-task - stop relying on global allowlists.

v2.1.183: Automatic blocking of destructive git commands and deprecated model warnings (June 19)

  • Released June 19, v2.1.183 blocks destructive git commands (force-push, reset --hard, branch -D) in auto mode by default and surfaces deprecation warnings whenever a config references a deprecated or unavailable model ID.
  • critical now that Fable 5 and Mythos 5 are suspended.

Editor’s read: The destructive git blocking is on by default in auto mode - test your CI workflows before upgrading to ensure intended force operations still work.

Agent SDK & Managed Agents

MCP Ecosystem

Developer Tools & Community

Anthropic research: agentic coding delivers persistent returns to expertise (June 16)

  • Anthropic published economic research on June 16 analyzing how Claude Code usage maps to expertise and task value, providing data-backed framing for the claim that agentic coding returns compound value over time rather than linear substitution of labor.

Editor’s read: Good ammunition for the 'why I build with AI' conversation - bookmark before your next client pitch.

Boris Cherny: Claude Code used to make progress deciphering Linear A, a 3,500-year-old undeciphered script (June 19)

  • Claude Code co-creator Boris Cherny shared on June 19 a session where Claude Code was applied to Linear A, a Minoan script unbroken by human scholars for over a century, and made meaningful analytical progress.
  • a striking demonstration of long-horizon agentic reasoning on open-ended research tasks.

Editor’s read: If it can make headway on a 3,500-year-old unsolved problem, it can handle your legacy codebase.

Community & Independent Developers

levelsio on what to build as an indie developer in 2026 (June 15)

  • On June 15, Pieter Levels shared his framework for indie developer positioning in 2026, arguing that niche specificity matters more than ever as the tooling gap closes and generic AI-assisted products converge.

Editor’s read: Worth reading before starting your next side project - the window for generic AI wrappers is closing fast.

Rauchg: Vercel launches Fluid compute on microVMs with no function runtime ceiling (June 15)

  • On June 15, Guillermo Rauch announced Vercel Fluid compute.
  • microVM-based infrastructure that removes the traditional serverless function runtime ceiling, enabling the longer-running workloads that multi-step Claude Code agentic pipelines require.

Editor’s read: If you run Claude Code agentic pipelines on Vercel, Fluid compute removes the timeout wall that kills long tasks - try it.

Competitor Dev Tools

GLM-5.2: Z.ai's 753B open-weights model tops Artificial Analysis leaderboard and beats GPT-5.5 on coding (June 17)

  • Simon Willison covered Z.ai's GLM-5.2 on June 17.
  • a 753-billion-parameter open-weights model that claimed the top spot on the Artificial Analysis leaderboard and outperformed GPT-5.5 on coding benchmarks, making it the most capable freely deployable coding model to date.

Editor’s read: With Fable 5 offline, GLM-5.2 is worth a serious look if you need frontier-adjacent coding ability you can self-host or run cost-free.

Research & Safety

Microsoft discloses AutoJack: a single malicious web page can turn an AI coding agent into an RCE vector (June 18)

  • Microsoft disclosed AutoJack on June 18, a prompt-injection technique where a single malicious web page can hijack a running AI coding agent and execute arbitrary code on the host.
  • applicable to any agent with web browsing or fetch capability, including Claude Code with web tool integrations.

Editor’s read: If your Claude Code agent can browse or fetch URLs, read this disclosure and add sandboxing or input sanitization before your next client demo.

Action Items

Immediate

  • Audit all .claude/settings files and agent configs for references to claude-fable-5 or claude-mythos-5 - both are suspended globally and will cause silent failures; swap to claude-opus-4-8 or claude-sonnet-4-6 as fallbacks
  • Update Claude Code to v2.1.185 (npm install -g @anthropic-ai/claude-code@2.1.185) for stream-stall recovery and the deprecation model warnings from v2.1.183
  • Test your CI pipelines against v2.1.183's destructive git command blocking before rolling it out to production automation - ensure intended force operations still function
  • Review the Tool(param:value) inline permission syntax from v2.1.178 to tighten agent tool scope per-task rather than relying on global allowlists
  • Read the Microsoft AutoJack disclosure if any of your agents have browser access or call external URLs - evaluate your sandbox posture now

By Jun 29

  • Monitor Anthropic communications on Fable 5/Mythos 5 restoration - model availability could change quickly once negotiations conclude
  • Upgrade to Anthropic TypeScript SDK v0.105.0 and evaluate the native code_execution tool if you are building sandboxed code-running features in your agents
  • Check billing plan configuration - the June 15 Agent SDK credit pool overhaul was paused but is expected to be rescheduled; understand what usage would move to a separate pool when it lands

All Resources

Every Monday morning

This week in Claude Code

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.