Welcome back. After Claude Opus 5 set a new record on the ARC-AGI-3 benchmark last week (considered to be the holy grail of difficult benchmarks), OpenAI managed to triple their score this week with a couple of minor tweaks. Sometimes the model matters less than the configuration.

Today’s Brief

  • A roadmap to AI Native Engineering

  • How to run Kimi K3 on a Mac Studio

  • Pro hack to cut your API bill in half

  • How to use Buzz (Slack alternative for agents)

TODAY IN PROGRAMMING

Click here to see the two API settings that tripled OpenAI’s scores on the ARC-AGI-3 benchmark.

GPT-5.6 Sol beats Opus 5 on ARC-AGI-3: The ChatGPT maker is fighting back after Anthropic's Opus 5 set a record score of 30.2 percent on ARC-AGI-3. While GPT-5.6 Sol initially trailed at just 7.8 percent, OpenAI argues the gap was due to configuration rather than model capability. By enabling two specific Responses API settings, they boosted Sol's score to 38.3 percent. ARC Prize founder notes that such adjustments are fair, provided that both cost and configuration details are clearly reported.

SpaceXAI debuts a faster voice model for agents: The Musk-led company just dropped Grok Voice Think Fast 2.0, a speech-to-speech model for voice agents that beats out OpenAI's GPT-Realtime-2.1 and Google's Gemini 3.1 Flash. With a response time of just 0.70 seconds, the model actually reasons while it speaks, allowing tool calls to trigger before the agent even finishes a sentence. Developers can now access the API for $0.08 per audio minute. More details on the API here.

AI coding is coming for the big IT outsourcers: For years, enterprise software was outsourced and billed by the hour. That era is (slowly) ending. Early Facebook executive Chamath Palihapitiya points to Infosys cutting its revenue forecast as proof clients now prioritize AI they can control. To meet that demand, his startup 8090 gives regulated teams a software factory to rewrite legacy code in weeks. Try it here.

GenAI is evolving by the minute, and security engineers need to know the latest threats to infrastructure.

Datadog’s latest guide on GenAI security will teach you about real-world attacks on how to secure against them, focusing on…

  • Containers, databases, cloud storage buckets, and Model Context Protocol (MCP) servers

  • Software and data such as training datasets, pre-trained large language models (LLMs), and third-party AI libraries

  • AI interfaces, chat interfaces, and API endpoints for supporting services

INSIGHT

So you want an AI-native engineering team but don’t know which tasks to automate? Here’s your guide:

Decision framework for task delegation to agents. Source: PostHog.

Ditch the seatbelt? As your team hands off more work to AI agents, it's totally normal to start questioning how much you can actually trust them. Most people assume that trust just builds naturally as the models get smarter, but trusting an agent just because of a model upgrade is like ditching your seatbelt because you bought a faster car. One of PostHog's engineers actually just shared a solid framework to help you figure out exactly which tasks you should be automating. 

Decision Framework. You need to judge every task on these two questions: 

  1. How easy is it to verify the work?

  2. How cheap is it to fix a mistake?

By mapping a task against these two axes, you land in one of four modes that tell you exactly how much autonomy is safe to grant before you even write a line of code:

  • Level 0 (Assistant): Hard to check and hard to undo. Keep the agent limited to advice and autocomplete for sensitive code.

  • Level 1 (Human-in-the-loop): Hard to check but easy to undo. Let the agent draft, but a reviewer needs to sign off before anything merges.

  • Level 2 (Delegation): Easy to check but hard to undo. The agent writes, and a final gate handles the merge. This is where most dev work lives today.

  • Level 3 (Self-driving): Easy to check and easy to undo. Think dependency bumps, lint fixes, or adding test coverage.

Next Steps. You can use PostHog’s guide to start bumping each task to the next stage until you hit that ultimate self-driving mode. Also, definitely check out OpenAI’s guide to AI-native engineering. It’s a great deep dive into how coding agents are actually speeding up the whole development lifecycle.  

Most agents borrow a human’s inbox (which breaks when that person leaves).

Nylas gives your agents their own inbox and calendar identity, so you can email your agent like a real person to get work done instantly:

Use case: Wealthie built one for their financial firm, and now advisors CC their agent on client emails for seamless productivity. 

IN THE KNOW

What’s trending on socials and headlines

Meme of the day.

  • Most-Recruited Role: One AI job now pays senior engineers $785K, even without any experience training models. Here's the 10-step roadmap to get there.

  • Open Season: Three paid AI apps got cloned into open-source versions this week. The newest is a fully local Granola alternative that records and transcribes meetings.

  • Run It Local: Kimi K3's 2.8T parameters make it near-impossible to run locally, so Unsloth compressed it from 1.56TB to 594GB. Run it on your Mac Studio (1.7M views).

  • It Confessed: Claude Opus 5 wiped a developer's production database, then caught the damage mid-run and reported itself before anyone noticed (6.1K likes).

  • Cache Trap: An ex-Google engineer found 84% of his API spend was going to cache reads and writes. One workflow change cut his bill in half (1.4K likes).

TOP & TRENDING RESOURCES

Click here to watch the tutorial.

Top Tutorial

How to build an agent team on Buzz: In this tutorial, you'll learn how to set up Buzz, a Slack-like app that allows multiple AI agents (Claude Code, Codex, Grok, and others) to work together as a team. It’ll show you how to create agents, select their models, build custom workflows, share compute, and manage everything right from your phone. 

Top Tool

CodexBar: This tool is an open-source macOS menu bar app that displays your OpenAI Codex usage at a glance using your existing CLI session without needing browser cookies or API keys.

Trending Cookbook

Codex-maxxing for long-running work (by OpenAI): Standard AI workflows often struggle with long-running tasks, as users are forced to constantly restart prompts and lose valuable context. This guide explores how Codex uses persistent threads, external memory vaults, and automated loops to create a continuous workspace capable of managing complex, ongoing projects.

AI CODING HACK

How to turn any Codex prompt into a repeatable script

Since Codex runs in a TUI (Terminal User Interface), any prompt you want to repeat, schedule, or integrate into CI usually has to be retyped manually. But the “codex exec” CLI command allows you to run those same prompts headlessly.

OpenAI engineer recently shared the specific set of flags he uses to streamline this process. 

  • Step 1: Run the prompt from the terminal with a pinned model and nothing else attached.

codex exec --ephemeral --ignore-user-config --model gpt-5.6-sol \
  -c 'mcp_servers={}' -c 'web_search="disabled"' \
  'Remove the duplicated validation logic in src/api/handler.ts.'
  • Step 2: Add that line to a script, cron job, or CI step. When comparing models, include "--cd runs/gpt-5.6-sol" to ensure every run has its own dedicated directory. 

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 this thread, which breaks down 10 AI projects that can help you land a job. 

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