Welcome back. Anthropic has been making headlines lately, but until now, none of the news was about a new model launch. That just changed. It looks like we all are in for a treat with the release of Anthropic's most advanced models yet for coding and knowledge work. Let's get into it.

Also: How to secure agent logins, a Pi setup built for marathon coding sessions, and what day one at OpenAI actually looks like.

Today’s Brief

  • How AI is erasing the language barrier for your codebase

  • Universities don’t teach you debugging skills

  • How to build a software factory (tutorial)

  • Guide to prompting Fable 5.1 (cookbook)

TODAY IN PROGRAMMING

Click here to watch how Fable 5.1 works.

Anthropic makes its best coding model cheaper to run: The AI lab just shipped Claude Fable 5.1, its strongest model yet for complex coding tasks. Alongside it, Mythos 5.1 was also launched which is a restricted version with safeguards for life sciences and cybersecurity. Anthropic claims Fable 5.1 will cost about 25% less than Fable 5 for most typical workloads. It also doubled Terminal-Bench-Science scores and cut cache costs by 75%. If you’re trying this model out for the first time, check out these techniques from Anthropic engineer Lance Martin for getting the most out of it.

World Labs drops one AI model for gaming, robotics, and VFX: The AI lab under the leadership of Fei-Fei Li (also known as the Godmother of AI) just dropped Atlas. It’s a powerful model that generates image and video frames with pixel-perfect camera control and 3D reconstruction. Game developers can export those scenes directly into engines like Unity and Unreal. Robotics teams can use them to train robots in simulation before moving to the physical world. Atlas will power World Labs' Marble product and their World API, so it fits right into existing team workflows. Get on the waitlist for access here.

OpenAI's next model hides how it thinks: The ChatGPT maker's upcoming model Astra uses a technique called recurrent depth to boost coding performance and cut costs. This means that instead of reasoning in plain English, the model does most of its "thinking" through internal number patterns you can't read. Basically, more like solving a problem in your head than on a whiteboard. That makes it harder to audit an agent's steps, and safety researchers warn it weakens monitoring. OpenAI is reportedly limiting the technique for now. Full report here, but just a heads-up: it needs a paid subscription.

PRESENTED BY MAJOR

Your business teams already vibe code AI agents and apps. Right now the only pipeline between a prompt and production is you.

Major is that pipeline: build, secure, orchestrate, deploy. Every run governed and audit-logged, guardrails set once.

Production-ready in hours, not weeks.

INSIGHT

AI is erasing the language barrier for your codebase. Here’s how you should pick a stack now:

Source: The Code, Superhuman

Language choice used to follow the team, not the problem. You picked what your engineers already knew, because learning a new language took months. This decision shaped many architecture decisions, and it often pushed leaders toward the safe and familiar option.

But language doesn’t matter anymore. Flask creator Armin Ronacher argues that LLMs are flipping this logic on its head. The friction of learning a new language no longer stops you from choosing the right language for your codebase. Here are the shifts Ronacher sees in the industry: 

  • Teams now pick languages based on marketing and performance because LLMs let them ship fast, reliable code in Rust without the learning curve.

  • Even "hard" languages like Zig gain traction despite a skeptical AI community, as the barrier to entry for low-level programming officially collapses.

  • AI agents build high-performance tools like Cloudflare's browser-based Git engine and Vercel's fx assistant, letting developers choose speed and efficiency over their current skill sets. 

What is the lesson for leaders? Match the language to the problem, not to your current skill mix. If a task needs speed and a small footprint, you can now choose a "hard" language and let an agent help your team use it.

You still need control. Do not treat this freedom as a free pass. First, judge the strengths of a language yourself; do not follow hype alone. Second, keep a skilled engineer on every unfamiliar stack to check the agent's work. The learning cost drops, but the cost of a wrong, unreviewed choice does not.

IN THE KNOW

What’s trending on socials and headlines

Meme of the day.

  • Debug Debate: A Google researcher says a recent shift in how universities teach programming is leaving new developers without essential debugging skills. Her viral clip has the whole dev community picking sides (1M views).

  • Imperfect UI: A designer just dropped a library that brings a human touch back to polished interfaces. One quick install makes your UI feel alive instead of machine-made (2.8K likes).

  • Agent Logins: A tech founder shares a new tool that lets agents sign into websites without ever touching your password. Try it here (1.5K bookmarks).

  • Engineer CEO: Apple’s new CEO is missing the one credential most other tech leaders have. This viral thread traces his 25-year climb from engineer to the top spot (3.4M views).

  • Marathon Agents: Most agents fail when working with long-horizon tasks. This VP just posted the setup he uses to keep one running for 7+ hours straight (1.1K bookmarks).

  • Day One: Ever wonder what onboarding at OpenAI is like? One of their engineers just shared the breakdown, and it turns out hires start shipping code on day one (2.2K likes).

TOP & TRENDING RESOURCES

Click here to watch the tutorial.

Top Tutorial

How this senior engineer builds an AI software factory: This tutorial shows how to build an AI-powered software factory using tools like Cursor. Developers learn to automate coding workflows and leverage AI agents to reliably build, test, and ship high-quality software features at maximum speed.

Top Tool

Kilo Code: A fully native, open source coding agent built for both local and remote development. It features parallel agents in isolated worktrees, inline GitHub PRs and diffs, and support for over 500 models.

Trending Cookbook

Prompting Claude Fable 5.1 (by Anthropic): Fable 5.1 allegedly sometimes writes denser prose, goes quiet mid-task instead of giving updates, and loves rewriting whole files for tiny edits. Anthropic's new guide walks through fixes for each habit, and the good news here is your old prompts should still mostly just work.

AI CODING HACK

How to stop Codex from over-engineering small tasks

Ask GPT-5.6 Sol for a config change, and it builds a framework. This engineer shared a Scope Guard for AGENTS.md that stops it.

  • Step 1: Create AGENTS.md in your repo root. Codex reads it every session.

touch AGENTS.md
# Scope Guard
Make the minimum sufficient change.
- Read the relevant code directly.
- State outcome, non-goals, files, and proof before editing.
- Reuse existing code. Ask before adding dependencies or abstractions.
- Fix bugs at the root cause.
- If the plan grows, stop and rewrite it smaller.
  • Step 3: Start a new session. Rules load automatically.

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

IN CASE YOU MISSED IT

Our most-clicked story from yesterday

Check out our hands-on agentic engineering course, from understanding coding agents to putting them to work.

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