Claude Code Daily Briefing - 2026-06-10
Release Summary
| Version | Date | Key Changes |
|---|---|---|
| v2.1.170 | 6/9 | Adds access to Claude Fable 5; fixes sessions not saving transcripts from the VS Code integrated terminal / shells with inherited env |
| v2.1.169 | 6/8 | --safe-mode, /cd, disableBundledSkills, self-hosted runner post-session hook (covered earlier) |
| v2.1.168 | 6/6 | Bug 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.
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:
- Software engineering: In early testing, Stripe pointed Fable 5 at a 50-million-line Ruby codebase and completed a full migration in a single day — work a team would have done by hand over roughly two months. Anthropic says it more than doubles Opus 4.8 on the hardest coding benchmarks.
- Vision: SOTA results, including reconstructing web-app source from screenshots and finishing Pokémon FireRed from raw screenshots with no helper tools.
- Long context + memory: with file-based memory, persistent memory lifted Fable 5’s performance 3x more than it did Opus 4.8’s — a signal that the gap widens in agentic workflows that lean on memory and subagents.
(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.)
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.
- How often it fires: in fewer than 5% of sessions; more than 95% run entirely on Fable 5’s own responses.
- Covered domains: ① cybersecurity (exploitation/offensive tasks — zero compliance with harmful single-turn requests, even against 30 public jailbreak techniques), ② biology & chemistry (dual-use, notably AAV gene-therapy design), and ③ distillation (blocking extraction by competitors in authoritarian countries).
- Robustness: an external bug bounty with over 1,000 hours of testing produced no universal jailbreaks (UK AISI made some progress within an initial window).
- Data retention: a new 30-day retention policy applies to Mythos-class traffic, used for safety purposes only.
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
- Warning that “AI is getting dangerous,” then shipping its most powerful public model days later: TechCrunch flagged the timing. Anthropic recently urged a “coordinated brake pedal” on frontier AI and warned about recursive self-improvement (RSI) (the essay covered in earlier briefings) — then, days later, released its most capable publicly available model, complete with safeguards that route high-risk requests to Opus 4.8. That “warn and ship in the same week” tension is the defining industry story of the week. TechCrunch
- DeepSeek V4 Pro edges GPT-5.5 Pro on precision: across four custom coding and task-completion challenges, DeepSeek V4 Pro scored 38.0 vs GPT-5.5 Pro’s 33.0. DeepSeek led on instruction- and constraint-following precision, while GPT-5.5 Pro lost points making unnecessary modifications — useful backdrop to the competitive landscape Fable 5 is entering. runtimewire
Minor Changes
- Transcript-saving fix: sessions launched from the VS Code integrated terminal — or any shell that inherited Claude Code env vars — no longer fail to save transcripts (and no longer go missing from
--resume) (v2.1.170) - Couldn’t pick Fable in Claude Code Desktop (6/9), fixed by updating: new models only appear after the client is updated — if a new model is missing, run
claude updatefirst - Vertex/Foundry default 5-minute idle timeout restored: a stalled stream now aborts instead of hanging indefinitely (v2.1.169)
- Windows
claude -phang fixed:claude -pno longer hangs or appears slow during slash-command scanning on Windows (v2.1.169) - Remote Control, input, and TaskCreate fixes: Remote Control no longer gets stuck “reconnecting” after resumption, Up/Down no longer jump past wrapped rows in long input, and
TaskCreatereliability improved with automatic input repair (v2.1.169)
Recommended Reads
- “Loop Engineering — designing systems that prompt agents” (Addy Osmani): instead of prompting an agent by hand every time, design loops where the agent prompts itself — weaving together automations, worktrees, skills, plugins/connectors, and subagents plus persistent memory. The human’s job shifts to validation and code comprehension, and architecting that loop becomes the real leverage. Squarely relevant if you’re figuring out how to wire Claude Code’s hooks, subagents, and skills together. Addy Osmani
- “AI is Slowing Down” (Ed Zitron): AI companies have committed to enormous compute spending but lack the revenue to justify it by 2030 — unless costs crater or revenue explodes, the argument goes, the current investment structure collapses under its own weight. Read next to a capability leap like Fable 5, it’s the contrarian macro question: capability keeps climbing, but does the economics? Where’s Your Ed At
- “How is Linear so fast? A technical breakdown”: Linear’s perceived speed comes from a local-first architecture — the browser holds its own IndexedDB and updates the UI in milliseconds without waiting on the server — plus aggressive code splitting, service-worker pre-caching, and fine-grained observable state. A craftsman’s reminder that even in the age of agent-generated code, products that feel fast are won on architecture decisions. performance.dev
Interesting Projects & Tools
- claude-self-improving-skills — a plugin that bolts a “Hermes-style self-improvement loop” onto Claude Code: it auto-distills the procedures learned on a complex task into a
SKILL.mdfor reuse in future sessions, implementing Hermes Agent’s self-improving-skills idea via Claude Code’s hooks, subagents, and slash commands. A feedback loop where the AI gets steadily more capable by documenting its own experience — the “Loop Engineering” idea above, made concrete. GitHub - korean-bank-tx-crawler — fetch Korean bank transactions in 3 lines of Python: a Python library that pulls transaction history from Korean banks automatically, no manual Excel export — handy for managing shared accounts like club finances. It currently supports KB Kookmin and Woori Bank (you need internet-banking quick-inquiry enabled). A small utility in the spirit of “replace repetitive manual work with a few lines of code.” GitHub