Welcome back. Anthropic's Fable 5 launch is causing a ton of controversy. The company reportedly apologized for secretly rerouting some requests to an older model, admitting it made the "wrong trade-off."

Meanwhile, developers are shipping all kinds of wild projects. One dev used Fable to reverse-engineer his Whoop heart rate data to figure out which coworker was stressing him out the most.

Also: Watch how Claude Fable 5 edited its launch video entirely through code, an ML researcher's playbook for landing frontier lab offers, and a new market for devs to build on.

Today’s Insights

  • Powerful new updates and hacks for devs

  • Why is company speed lagging despite AI coding gains

  • How to catch bugs before you commit

  • Trending social posts, top repos, and more

TODAY IN PROGRAMMING

Click here to see how Google's DiffusionGemma works.

Google unveils an experimental model that generates text 4x faster: The search giant just dropped DiffusionGemma, an experimental open model that drafts 256 tokens at once instead of generating word by word. Google says it hits 1,000+ tokens per second on a single H100. The speed comes with a trade-off. Output quality trails standard Gemma 4, so it's best for local work like code infilling and in-line edits. Download the weights.

Supermemory ships a local-first memory engine: The AI memory startup just announced Supermemory Local, a self-contained build that packs its graph engine and embedding model into a single download. It works with Claude, OpenClaw, Hermes, and other agents on any machine. SDKs make it easy to give an agent long-term memory or set up a company brain. Plus, if you pair it with a local model, nothing ever leaves your machine.

Anthropic brings Claude to Apple's AI framework: The AI lab just rolled out a Swift package that integrates Claude into Apple's Foundation Models framework as a server-side model. Developers can use it with the same API as Apple's on-device model, so streaming, tool calling, and structured output all work the same way. Requests go straight to the Claude API and never touch Apple's servers. It's in beta alongside the OS 27 releases.

Tweet Hunter helps 5,600+ founders stay consistent on X.

In one session, you get:

  • A full week of content queued

  • Automations running in the background

  • Stay visible without being online all day

All built on the official X API, so your account stays safe.

INSIGHT

Devs doubled their code output but their companies didn't get faster

Source: The Code, Superhuman

The flood of code is here. Engineers are writing twice as much code as they did just six months ago. Cursor says PR sizes tripled since January for top users, and Jellyfish found heavy AI adopters push twice as many PRs, with 72% of their code AI-assisted. Pragmatic Engineer's Gergely Orosz then points out in his breakdown that AI coding reached every industry, including automotive, in under a year.

Technical debt is piling up. Reviewers can't keep up, so most hit "LGTM" (looks good to me) without reading, while the few who still review are burning out. OpenCode's Dax Raad says AI mutes the guilt of shipping a hack, so the instinct to clean up debt never fires. The fallout: Amazon mandated senior sign-offs after AI-assisted changes caused outages, Windows 11 updates bricked devices, and third-party trackers put GitHub's uptime below one nine as agent traffic overwhelmed its infrastructure.

The fix is boring. The 2025 DORA report found AI amplifies whatever system you already have: some companies doubled their incidents, others cut them in half. The winners run the old playbook:

  • OpenCode CEO brought back heavy domain-driven design because agents need guardrails.

  • Veteran engineer Kent Beck uses tests to stop agents from shipping regressions.

  • Amazon put a human checkpoint before production.

Few are buying it. HashiCorp co-founder Mitchell Hashimoto says entire companies now ship bugs, betting agents will fix them before users notice. Meta reportedly gutted Instagram's Trust and Safety team days before hackers hijacked accounts through its own AI assistant. Kent Beck saw this with GUIs in the late 80s: everyone who could build one did, and the worst software came first. The teams fixing their quality checks now will make it out first. Read Pragmatic Engineer's full piece here.

IN THE KNOW

What’s trending on socials and headlines

Meme of the day.

  • Senior Brain: This 6-step setup trains you to think like a senior programmer, with a coding agent acting as your teacher (5.1K bookmarks).

  • No Editor Needed: An Anthropic engineer shared how Claude Fable edited its launch video entirely through code. He didn't open a video editor once (520K views).

  • Smart Split: Shadcn, creator of the shadcn/ui library, dropped a skill that puts Claude Fable on auditing your codebase and writing plans, then hands execution to cheaper models (7K bookmarks).

  • Star Trek Logic: Cohere's co-founder used a Star Trek analogy to explain why better LLMs aren't getting us closer to AGI.

  • Blue Bubble AI: An a16z partner mapped every AI assistant you can text on iMessage like a contact. Apple just approved its first agent, and that opens a new market for devs to build on.

  • Loop Logic: This skill rewrites and scores your plans on a loop until they can't get any better. Pairs well with Fable 5 (1.4K bookmarks).

  • Interview Playbook: A researcher who landed offers from DeepMind, Meta, and Cohere wrote up everything she learned. Here's the guide (2.4K likes).

AI CODING HACK

How to catch bugs before you commit

Agent sessions often leave you with a mess of uncommitted changes that nobody actually reviews before they're committed. Codex has a built-in fix for this. OpenAI documented a standalone review command that scans everything in your repo (staged, unstaged, and untracked) and flags issues with specific file references.

Just run this from your repo root:

codex review --uncommitted

# Or point the reviewer at what worries you
codex review --uncommitted "Focus on error handling and edge cases"

Every review shows up as a separate round. Just address the issues and keep rerunning the command until the diff is clean. Once it is, you're good to commit.

P.S. Get 50+ AI coding hacks for Claude Code, Cursor, and Codex here.

TOP & TRENDING RESOURCES

Click here to watch the tutorial.

Top Tutorial

How to build the best local agentic coding workflow: You’ll learn how to set up a local AI coding assistant using LM Studio and VS Code. The tutorial dives deep on how to select the best open-source models for your hardware, configure chat-driven code generation, and enable offline autocomplete entirely on your own machine.

Top Tool

SurrealDB: A multi-model database that makes building modern apps easy. It combines relational, document, and graph databases into one platform. You can build real-time apps and handle complex data without needing multiple systems.

Top Repo

Ouroboros (4.5K ⭐): An agent OS for AI coding. It turns unpredictable tasks into reliable workflows using structured contracts. Instead of messy prompting, it follows a clear process to interview, build, and evolve your code.

Trending Paper

Disentangling agent self-evolution: This paper looks at whether an AI's skill level affects how well it can improve itself using tools and prompts. It shows that while most models can create good updates, weaker ones struggle to actually use them correctly.

IN CASE YOU MISSED IT

Our most-clicked story from yesterday

Check out how Claude Fable 5 changed the Claude Code team's workflow. They've shared three big shifts they've seen firsthand.

Grow customers & revenue: Join companies like Google, IBM, and Datadog. Showcase your product to our 300K+ engineers and 150K+ followers on socials. Get in touch.

What did you think of today's newsletter?

Your feedback helps us create better emails for you!

Login or Subscribe to participate

You can also reply directly to this email if you have suggestions, feedback, or questions.

Until next time — The Code team

Keep Reading