Welcome back. Barely a week after Anthropic researchers rang the alarm bells about the dangers of AI, CEO Dario Amodei has penned an essay calling for a slowdown. And he’s being backed by, wait for it, drumroll please... Elon Musk and Sam Altman? Full details below.
Also: Swap Siri's brain for Claude with a secret code, Uncle Bob Martin’s advice for developers in 2026, and a cheap-token scam targeting devs.
Today’s Brief
How a Spotify PM cut his token bill by 90%
Land an inference engineering job
High throughput agentic engineering (tutorial)
How SpaceXAI developers use Grok Bot (cookbook)

TODAY IN PROGRAMMING

Anthropic CEO Dario Amodei. Made with Midjourney.
Frontier AI labs want to hit the brakes: Anthropic CEO Dario Amodei warns that model capabilities are outrunning safety, and Sam Altman and Elon Musk back him up. Amodei's checkpoint proposal requires teams to lock releases behind alignment certifications the moment a model learns to break out of standard sandboxes. If you build on frontier APIs, expect fewer small updates and bigger, heavily audited jumps instead. The real roadblock is geopolitics. Amodei admits the plan falls apart if China keeps racing ahead, while Trump dismissed the slowdown outright saying, “Whoever wins AI wins.”
Cursor's latest launch can tackle almost 100 PRs a day: Cursor just rolled out Projects, a persistent workspace where a coordinator agent routes coding tasks to subagents on demand. Each Project runs on a dedicated cloud machine, keeping builds moving even after you shut your laptop. Agents can follow PRs, pick up bugs from Slack, and trigger fixes on their own. Because they share memory, plans, and artifacts, Cursor says Projects can keep context for months. Check out the beta here.
AI startups are betting on domain-specific agent harnesses: YC boss Garry Tan says nearly every non-hardware startup at their latest demo day is building a domain-specific harness. Think of the agent harness as everything wrapped around the model: tools, files, memory, and the logic that decides when a job is done. Pack your domain expertise into that layer, and you can swap GPT for Claude without rebuilding from scratch. OpenAI, LangChain, and Anthropic are already smoothing the way. Start building here.

PRESENTED BY TIGERDATA
Metrics, embeddings, analytics-all in the Postgres you already run. TimescaleDB brings hypertables for time-series data at scale, pgvector and pgvectorscale for AI-ready embeddings, and continuous aggregates for real-time analytics into one system.
No syncing pipelines between databases. No data drift. No second platform to maintain or debug.
Same SQL, same tools. One system to operate.
Start a trial today and get $1000 in credits

INSIGHT
How a Spotify PM cut his Claude Code token bill by 90%

Source: The Code, Superhuman
The truth about tokens. Research firm Gartner predicts that by 2028, rising token usage will push AI coding costs past the average developer's salary. But a lot of those tokens may not even be going toward reasoning. Dimitri Mazmanov, a principal product manager at Spotify, found that his agent was burning them on something far duller: reading files. He dug in and cut token use on routine reads by roughly 90%. The basic idea here is to stop paying a frontier model for work a cheaper one handles just as well.
The fix. Mazmanov used Portal, Spotify's developer platform, to spin up small, single-purpose agents, each running on demand on a cheaper model with no servers to manage. Moving the mechanical work off the frontier model (Claude in his case), two components did the lifting:
The reader handles big files. Instead of feeding several large files into Claude, a cheaper model reads them and returns a short summary. The raw files never touch Claude’s context.
The writer tackles boilerplate. Give it a spec and an example to follow, and it generates tests or config in the same style, then writes everything straight to disk.
The plugin routes the work. It catches large file reads and sends them to the cheaper model automatically, leaving Claude free for tasks that genuinely need better judgment.
Stay on review. Route your debugging, safety-critical logic, and direct edits straight to the frontier model. In one benchmark, a cheaper model completely missed a subtle thread-safety bug that Claude caught instantly. You also want to keep direct edits on the flagship model. Summaries lose exact line numbers, and routing small files between lightweight agents burns more overhead than it saves.
You can copy the setup. Spotify has made their setup public, so any team can try the same workflow.

IN THE KNOW
What’s trending on socials and headlines

Meme of the day.
Hidden Hooks: A dev found a secret code in iOS 27 that could let you replace Siri’s brain with Claude, and the demos are wild (597K views).
Uncle Bob's Warning: In a 5-minute video the coding legend breaks down why your carefully built AI harness might already be obsolete (1.5M views).
Token Trap: An OpenCode founder's warning reveals why cheap AI tokens could cost you everything, plus how to stay safe (3.6K likes).
Code City: Ever wondered what 2.5 million lines of code look like all at once? A dev found a way to visualize an entire codebase, and the result is incredible (1M views).
Plot Twist: AI CEOs keep warning that we need to slow down. A viral post argues the real reason may have far less to do with safety (19K likes).
Hot Job Alert: Inference engineering jobs doubled in just six months, with salaries hitting $850K. If you want in, this guide shows you where to start (3.3K bookmarks).

TOP & TRENDING RESOURCES
Top Tutorial
How to execute high-throughput agentic engineering (by a Meta engineer): This tutorial shows how you can keep several agents working in parallel while staying focused on the important decisions. You’ll see how to route different tasks to different models, manage multiple agent sessions, review outputs in one place, and add extra validation before risky code gets merged.
Top Repo
Glance (1.1K ⭐): Give your Mac a Face ID-like unlock using its webcam. It runs face recognition and liveness checks on-device, keeps your biometric data local, and unlocks by typing your stored password when it recognizes you.
Trending Cookbook
How SpaceXAI developers use Grok Bot: This guide breaks down how to scale from a single Grok Bot to an entire fleet across your engineering workflow. You’ll learn the fundamentals, real-world engineering use cases, and how to tailor bots for specific roles so you can offload repetitive tasks without cluttering your pipeline.

AI CODING HACK
How to review Claude's edits without leaving the terminal
Claude Code finishes a task, you ask what it touched, and you either trust the summary or tab out to run git diff. An Anthropic engineer shared the fix: a diff panel that sits beside the conversation and refreshes as Claude edits.
Step 1: Update to v2.1.260 or later:
claude updateStep 2: Switch to fullscreen rendering:
/tui fullscreenStep 3: Toggle the panel:
/diffUncommitted changes now appear beside the chat while Claude works. Your terminal must be at least 110 columns wide. Full details in the interactive mode docs.

IN CASE YOU MISSED IT
Our most-clicked story from yesterday
A dev asked the creator of Claude Code how to stop his codebase from turning into slop, and he shared his full playbook.
Grow customers & revenue: Join companies like Google, IBM, and Datadog. Showcase your product to our 350K+ engineers and 150K+ followers on socials. Get in touch.
Whenever you're ready to dive deeper
We put together a few guides on coding agents, agentic engineering, and leadership frameworks to help you level up in your career. Browse all our guides.
What did you think of today's newsletter?
You can also reply directly to this email if you have suggestions, feedback, or questions.
Until next time — The Code team



