đ§ How OpenAIâs Codex Team Uses Their Coding Agent
TL;DR: Today, weâre releasing a new episode of our podcast AI& I, whereDan Shipper sits down with two members of the team building OpenAIâs coding agent, Codex,Thibault Sottiaux , head of Codex,__andAndrew Ambrosino , member of technical staff on the Codex app.Watch onX or YouTube, or listen on Spotify or Apple Podcasts.
A little after 4 p.m. PT on Super Bowl Sunday, a wave of people took their eyes off the game to download a coding agent. It wasnât the wings, the beer, or Bad Bunny that inspired them. It was one of the many AI ads that airedâspecifically, OpenAIâs plug for its coding agent, Codex.
Thibault Sottiaux , head of Codex, and Andrew Ambrosino , a member of technical staff on the Codex app, say their systems came under heavy load almost immediately after the spot aired. Even better, a lot of people also reached out to tell them that the ad inspired them to build, they told Dan Shipper on __AI& I_ _this week.
The conversation caps off a few busy weeks for the Codex team: Since the start of February, theyâve shipped a desktop app , GPT-5.3 Codexâa new flagship model âand a research preview of a model thatâs almost too fast to follow. The momentum is showing up in the numbers, too. Usage has grown fivefold since the start of the year, and more than a million people now use Codex each week. Dan talks to the pair about the strategy decisions behind what theyâve built, the workflows they rely on inside Codex, and how a lightning-fast model potentially solves the next bottleneck for coding agents.
Here is a link to the episode transcript.
You can check out their full conversation:
Here are some of the themes they touch on:
A look inside OpenAIâs strategy to ship new products
Sottiaux and Ambrosino talk Dan through the decisions and tradeoffs that went into their new launches.
A warmer coding agent thatâs still for builders
As weâve written, GPT-5.3 Codex feels more user-friendly than its predecessorsâwarmer and more creativeâwhile still maintaining its technical prowess. That shift was echoed in OpenAIâs decision to run a Super Bowl ad for Codex rather than ChatGPT, signaling a bet that coding agents are ready for a mainstream audience.
Still, OpenAI views Codex as its most powerful coding tool, one that requires a certain level of technical fluency. Sottiaux describes the target user as âtechnicalâ or âtechnical adjacentââsomeone with familiarity in areas like data science, for exampleâand says that to get the most out of it, you should be able to read code. For the wider, less technical audience, he adds, OpenAI plans to eventually bring a similar experience into ChatGPT, which will not assume engineering literacy of its users.
Even so, the team is adamant that professional developers deserve a âdedicated experience.â Ambrosino notes that while the Codex app shares clear DNA with ChatGPTâfeatures such as the central chat-style interface and the auto-named conversationsâit was purpose-built to âshowcase the power of the models and the way [they] could change the [software] development lifecycle.â
OpenAI believes your coding agent doesnât belong in a terminal or the IDE
The decision to build a dedicated graphical user interface (GUI)âa visual, point-and-click interface rather than a text-only terminal approachâfor the Codex app was, by the teamâs own admission, a break from trending design choices. Ambrosino describes the app as a âdaily driver,â with the terminal and the integrated development environment (IDE)âan all-in-one environment for writing code where many developers have traditionally workedâreserved for the occasional specialized task.
According to them, a terminal works well for firing off quick tasks, but starts to feel limiting once agents become multimodalâdrawing diagrams, generating images, and responding to voice instructionsâor once youâre running several in parallel and need to keep track of them all.
OpenAI designed Codex to dynamically show only the tools and views you need at that moment. âWe came to the conclusion thatâŚthese models are great at knowing whatâs neededâŚfor what type of task,â Ambrosino says. Sottiaux adds that the AI is already acting on far more than just codeâlike filing tickets in project management software Linear and posting to Slackâand cramming all of that into an IDE âwould feel very odd.â
How the Codex team teaches AI to read between the lines
Achieving a balance between the model being good at following instructions and intuiting user intent is something the team obsesses over. Codex has historically excelled at the former, but when they optimize too hard in that direction, the model starts to overindex on literal wording and miss intent in ways a human never would. Sottiaux takes the example of a typo in a prompt that ends up verbatim in the code, rather than the model inferring what you obviously meant.
The team is also investing in what they call âpersonalitiesââessentially, a measure of how supportive or blunt the model should be. While the previous default leaned heavily terse and direct, now thereâs a friendlier, more supportive option, and users can toggle between the two. Both Sottiaux and Ambrosino still use the pragmatic âpersonality.â âYou should feel like you have your own little personal Codex,â Sottiaux says, âthat works in exactly the way that you want it to work.â
How the Codex team uses its own AI
Two features make the Codex app especially powerful: âautomations,â which let you schedule prompts to run hourly, daily, or at whatever cadence you set, and âskills,â which bundle instructions so that Codex can connect to external tools and run workflows that go beyond code generation, including research, reporting, and writing. These are a few automations and skills that Sottiaux and Ambrosino find useful:
- Keeping code changes ready to ship. When multiple people are working on the same codebase, their changes can collideâone personâs update breaks anotherâs, creating âmerge conflictsâ that have to be manually untangled. Ambrosino runs an automation every hour or two that scans for these conflicts and quietly resolves them, so that when a change is ready to ship, it can go live immediately.
- Daily team digest. Every morning at 9 a.m., Ambrosino gets an automated report summarizing everything that was merged into the Codex app over the previous day, including who contributed what, grouped by theme. Itâs a quick way to stay on top of a fast-moving codebase without having to manually track every changeâespecially useful in the chaos leading up to a launch.
- Random bug hunter. Sottiaux runs an automation multiple times a day that picks a random file from the codebase and looks for bugs. It uses a random number generator to choose where to start, so each run explores a different corner of the code. The automation usually picks up on non-critical bugs that nobody wouldâve gone looking for and are trivial to fix.
- Silent bug fixer. Another team favorite: an automation that reviews the pull requests youâve done over the past day, scans for signs that anything is breaking. It pushes a fix before anyone notices you shipped a bug.
- Daily marketing intel. Sottiaux runs a daily automationâtuned with a custom skill to do deep researchâthat searches the web for how users are perceiving and talking about Codex, and compiles what it finds into a short report.
- One-click publish. After writing code, a developer still has to save it with an explanation (called a âcommitâ), open a pull request for teammates to review it, and write a clear title and summary describing what changed and why. Ambrosino built a âyeetâ skill that does all of that automatically.
- Custom book for his kids. Ambrosino used the Codex appâs image generation skill to create a personalized book for his kids. He started by prompting Codex to write a script based on his daughtersâ ages, the cities theyâve lived in, and the arc of their lives so far. Once he approved the script, Codex generated an image for every page, then stitched everything together into a printable PDF.
Speed is a dimension of intelligence
We said GPT-5.3-Codex-Spark, the smaller, speed-optimized version of OpenAIâs GPT-5.3 Codex, is fast enough to blow your hair back âand it is. âWe do slow it down ever so slightly, just so you can see the words come in a little bit smoother,â Ambrosino says. The team sees speed unlocking different ways of working
- Staying in the flow. The first is simply staying in the flow. Sottiaux describes using the new model as âsculpting codeâ in real time. At first, the speed is almost disorienting, but within minutes, you adjustâand once you do, going back to anything slower is hard to imagine.
- Replacing brittle tools with intelligent ones. Programmers rely on Git, a version control system for tracking code changes, to save and share changes to their code, and while itâs powerful, itâs also notoriously finicky. If the code is in even a slightly unusual state, simple actions like âpublish this changeâ can trigger confusing errors that require manual cleanup. Thatâs why many apps struggle to make Git feel smooth or intuitive: There are too many edge cases to account for with rigid, pre-programmed buttons. Ambrosino suggests that a fast enough AI model can potentially change this. Instead of relying on brittle scripts that only work when everything is perfectly set up, the AI can look at the situation in real time and figure out what needs to happen.
- Redirecting the model while it works. Mid-turn steering is the ability to send a new instruction while the model is still working, and have it adapt without stopping its thinking process. Codex already supports this, but paired with the new model, the experience would feel more and more like a fluid conversation. Sottiaux is especially excited about combining this with voiceâtalking to the model in natural language, redirecting it as you go, watching the implementation happen almost instantly.
Code review is the next bottleneck
With speed close to being solved, the next bottleneck is review. Models can generate code faster than ever. But will it be bug-free? Will the button in the settings panel do what itâs supposed to? That still requires a human to click through the app and check for consistency.
The OpenAI team is exploring what that process looks like with AI involved. The Codex app already has a review mode that annotates diffs (side-by-side comparisons showing exactly which lines of code were added, removed, or changed). Speed helps here, too, Sottiaux adds. A faster model that helps you understand the code youâre reviewing offsets some of the pressure created by the sheer volume now being produced.
Ambrosino hints at a more ambitious direction: If a model can prove a bug fix works by retracing the exact click path a user would take, code review, as we know it, might matter lessâyouâd verify the outcome directly rather than reading the code as a proxy. The team already has skills in the Codex app that click around the app, screenshot the results, and attach them to a pull request to show what changed (and why it works).
What do you use AI for? Have you found any interesting or surprising use cases? We want to hear from youâand we might even interview you.
Timestamps
- Introduction: 00:01:27
- OpenAIâs evolving bet on its coding agent: 00:05:27
- The choice to invest in a GUI (over a terminal): 00:09:42
- The AI workflows that the Codex team relies on to ship: 00:20:38
- Teaching Codex how to read between the lines: 00:26:45
- Building affordances for a lightning-fast model: 00:28:45
- Why speed is a dimension of intelligence: 00:33:15
- Code review is the next bottleneck for coding agents: 00:36:30
- How the Codex team positions itself against the competition: 00:41:24
You can check out the episode on X, Spotify, Apple Podcasts, or YouTube. Links are below:
- Watch on X
- Watch on YouTube
- Listen on Spotify (make sure to follow to help us rank!)
- Listen on Apple Podcasts
Miss an episode? Catch up on Danâs recent conversations with LinkedIn cofounder Reid Hoffman ; the team that built Claude Code, Cat Wu and __Boris Cherny ; Vercel cofounder Guillermo Rauch ; podcaster Dwarkesh Patel ; and others, and learn how they use AI to think, create, and relate.
If youâre enjoying the podcast, here are a few things I recommend:
- __to Every
- Follow Dan on X
- Subscribe to Everyâs YouTube channel Rhea Purohit is a contributing writer for Every focused on research-driven storytelling in tech. You can follow her on X at @RheaPurohit1 and on LinkedIn.
To read more essays like this, subscribe to __, and follow us on X at @every and on LinkedIn.