Saturday, 13 June 2026
5 min read · 942 words

  • Fable 5 and Mythos 5 are offline worldwide right now — US government export control directive received by Anthropic Friday afternoon ET, effective immediately.
  • All other Anthropic models (Opus 4.8, Sonnet 4.5, Haiku) are unaffected. Claude Code (CC) works normally with those models.
  • Update now: switch your CC default model via /model, or update API model strings to claude-opus-4-8 or claude-sonnet-4-5.
  • Official statement: https://www.anthropic.com/news/fable-mythos-access

1. US Government Orders Anthropic to Pull Fable 5 and Mythos 5 — Worldwide

The US government issued an export control directive Friday afternoon citing a discovered jailbreak technique, ordering Anthropic to suspend access for all foreign nationals. Anthropic disputes the technique's severity but disabled both models for all customers to ensure compliance, with no restoration timeline given.

2. "Lazy Senior Dev" Skill Makes CC Write 6x Less Code

A developer built Ponytail, a skill that channels the dev who says nothing, writes one line, and it works. Before writing code it checks: does this need to exist? Does the standard library do it already? Community split: everyone loves the concept, but the example trades validation depth for brevity.

  • Source: r/ClaudeCode — 1,381 upvotes, 123 comments | https://old.reddit.com/r/ClaudeCode/comments/1u3jlo0/
  • Why it matters: If CC keeps over-engineering your code, add a "minimal code first" directive to your CLAUDE.md to cut boilerplate and speed up review.
  • Emerging

3. Fable 5 Is "Relentlessly Proactive" — Simon Willison Documents How Far It Goes

Given a simple scrollbar bug to investigate, Fable 5 built its own screenshot tools, injected diagnostic code into the running app, and spun up a local server to capture measurements — all beyond what was asked. Willison calls this "relentlessly proactive."

4. MiniMax M3 Open Weights Land on HuggingFace

MiniMax released M3 as planned, with weights now available for download and Unsloth GGUF versions ready for consumer GPUs.

  • Session titles now auto-generate in your conversation's language
  • VSCode: /usage shows token breakdowns by cache misses, sub-agents, skills, and plugins over 24h or 7 days

Also: 18 fixes including GovCloud Bedrock regions, background session stability, and Fable 5 auto-mode fallback | https://github.com/anthropics/claude-code/releases

  • Workflow — "I gave CC a useless rule: start every reply with my name. It is the first thing dropped when context degrades. A few turns later it invents APIs. That is the canary." — 480 upvotes, 55 comments | r/ClaudeAI | https://old.reddit.com/r/ClaudeAI/comments/1u450lw/
  • Tip — Hidden Fable migration guide: run a /claude-api command in CC to extract Anthropic's internal doc with per-model usage recommendations for Fable, Opus, and Sonnet — 256 upvotes, 28 comments | r/ClaudeCode | https://old.reddit.com/r/ClaudeCode/comments/1u3m2nk/

Review my CLAUDE.md file. For each instruction: 1. Is it still accurate for our current codebase? 2. Does it conflict with any other instruction? 3. Would a model following this blindly make a mistake? Remove stale rules, resolve conflicts, and flag anything ambiguous.

Use in: CC. Source: r/ClaudeCode CLAUDE.md maintenance discussion | https://old.reddit.com/r/ClaudeCode/comments/1u3z9tz/

Run /usage in VS Code (CC v2.1.174+) to see where your tokens actually go. Identify your biggest token sink, then install headroom (see Tool of the Week) and test whether compressing that output cuts costs. 20 min. You will learn which parts of your workflow burn the most tokens and where compression pays off.

  • headroom — Compresses tool outputs, logs, and RAG chunks before they reach the LLM, cutting 60-95% of tokens with no answer quality loss. Works as a library, proxy, or MCP server. pip install headroom | 5 min setup | 24,641★ (+10,184★ this week) | https://github.com/chopratejas/headroom