Claude Code Daily Briefing - 2026-06-10

Release Summary

VersionDateKey Changes
v2.1.1706/9Adds access to Claude Fable 5; fixes sessions not saving transcripts from the VS Code integrated terminal / shells with inherited env
v2.1.1696/8--safe-mode, /cd, disableBundledSkills, self-hosted runner post-session hook (covered earlier)
v2.1.1686/6Bug fixes and stability

v2.1.170 landed yesterday (6/9). The headline isn’t a bug fix — it’s that Anthropic’s new model, Claude Fable 5, is now usable inside Claude Code. You have to update to this version before you can select it.

Full release notes


New Features & Practical Usage

Claude Fable 5 — Anthropic’s first public “Mythos-class” model (6/9, access via v2.1.170)

On June 9, Anthropic released Claude Fable 5, the first Mythos-class model it has made safe enough for general use. Anthropic calls it “state-of-the-art on nearly all tested benchmarks” and more capable than any model it has previously made generally available, with a particular edge on complex tasks that run for days.

What stands out from a developer’s seat:

(The restricted Mythos 5 variant reported strong results in drug design, molecular biology, and genomics — but that’s a separate, non-public track; see Security below.)

Pricing is $10 per million input tokens and $50 per million output tokens — under half the price of Claude Mythos Preview, and roughly double Opus 4.8 (per TechCrunch). To use it:

claude update                    # update to v2.1.170+ first (required)
claude --model claude-fable-5    # or pick it via /model in-session

On subscriptions it’s included free on Pro, Max, Team, and seat-based Enterprise from 6/9 to 6/22, then requires usage credits from 6/23 (full restoration to standard plans pending capacity). The API exposes it immediately as claude-fable-5 at standard rates. (Follow the official docs for the exact model ID and selection flow.)

Anthropic — Claude Fable 5 and Claude Mythos 5


Developer Workflow Tips

Clean up and capture artifacts after a session ends — the self-hosted runner post-session hook (v2.1.169)

v2.1.169 added a post-session lifecycle hook for the self-hosted runner. It runs exactly where the name says: after the session ends, just before the workspace is deleted. If your CI spins up an agent session in a disposable workspace and then throws it away, this is the place to ship logs, artifacts, and coverage reports out — or tear down temporary resources — before the workspace disappears.

Where the Stop hook is a gate before a turn ends, post-session is cleanup after the whole session is done — different firing points. (Follow the official self-hosted runner docs for the exact payload and config.)

GitHub v2.1.169

Subagents don’t inherit parent skills — preload them explicitly

A common trap: subagents do not automatically inherit the parent session’s skills. If a subagent needs a skill’s knowledge or procedure, you must preload it explicitly — the full skill body is injected at startup, not merely “made available.” Most “it worked in the main session but not in the subagent” reports trace back to exactly this.

A clean rule of thumb: want the same instructions inline → Skill; want context isolation or parallelism → Subagent; but if that subagent needs a skill, pass it in deliberately.

Claude Code Docs — Best practices

Before you call it “done,” have a fresh-context subagent review the diff

The longer an agent works unattended, the more an independent check before counting the work as done matters. An effective pattern: spin up a subagent in a fresh context, hand it only the diff, and ask it to report what’s missing against the requirements. The main session has already “acclimated” to the code it wrote and tends to miss gaps; a reviewer that sees only the change and the criteria catches them without that bias.

If the Stop-hook gate is the “keep going until tests pass” guard, this is the “filter once more before a human looks” reviewer — used together, they raise the quality of unattended work.

Claude Code Docs — Best practices


Security & Limitations

Fable 5 ships “with safeguards built in” — classifier fallbacks, Mythos 5, and Project Glasswing (6/9)

The notable part of this launch isn’t just the capability — it’s the constraints wrapped around it. Fable 5 includes three classifier systems that automatically redirect high-risk requests to a Claude Opus 4.8 response instead.

The same model with some safeguards lifted is Mythos 5, available only to vetted cyberdefenders and critical-infrastructure providers — through Project Glasswing, a collaboration with the U.S. government (an upgrade from April’s Mythos Preview). The throughline is clear: the more powerful the model, the more tightly Anthropic gates who can use it and for what.

Anthropic — Claude Fable 5 and Claude Mythos 5


Community News


Minor Changes



Interesting Projects & Tools