“Software program engineering is altering, and by the tip of 2025 it’s going to look essentially completely different.” Greg Brockman’s opening line at OpenAI’s launch occasion set the tone for what adopted. OpenAI launched Codex, a cloud‑native software program agent designed to work alongside builders.
Codex will not be a single product however a household of brokers powered by codex‑1, OpenAI’s newest coding mannequin. Codex CLI, arrived a couple of weeks in the past as a light-weight companion that runs inside your terminal. As we speak the highlight shifts to its greater, distant agent that’s avialble completely on ChatGPT. You’ll be able to spin up 1000’s of parallel “mini‑computer systems” and sort out a number of duties whilst you’re off grabbing espresso. This text goes to be an outline of Codex on ChatGPT, and we are going to quickly be releasing some undertaking primarily based articles on the subject.
From Autocomplete to Autonomous Vibe Coding
OpenAI’s journey towards agent-like coding started in 2021 with the unique Codex mannequin, which powered GitHub Copilot. On the time, it labored like a sensible autocomplete, serving to you end strains of code. Since then, with years of progress in reinforcement studying, Codex has turn out to be extra succesful.
As we speak, within the occasions of vibe coding, you merely describe what you need in plain language, and Codex figures out how one can construct it. The most recent mannequin, Codex‑1, is constructed on OpenAI’s o3 structure and fine-tuned on actual pull requests. It’s educated to generate code, comply with finest practices like linting, testing, and constant model, making it useful for real-world growth.
Also Learn: A Information to Grasp the Artwork of Vibe Coding
How you can Entry Codex within the ChatGPT Interface?
- Open ChatGPT and go to “Codex” sidebar within the left navigation rail you’ll see a brand new “Codex (beta)” icon. Click on it to disclose the agent dashboard.
- Join GitHub (first‑time solely): A single OAuth click on authorises Codex to learn/write in your repos. You’ll be able to prohibit it to particular organisations or private tasks.

- Choose a repository & department: Decide the undertaking you’d like Codex to work on (e.g.,
major
orfunction/ui‑overhaul
). The agent clones this department into its personal sandbox. - Configure the setting (optionally available): Add setting variables, secrets and techniques, or setup instructions, similar to a CI job. Linters and formatters are pre‑put in, however you may override variations.
- Select a activity template:
- Ask: “Clarify the structure.”
- Code: “Discover and repair the flakey take a look at in test_api.py.”
- Recommend: Let Codex scan the repo and suggest upkeep chores.
- Or simply kind a customized instruction in pure language.
- Run & multitask: Press “Launch”. Every job spins up its personal micro‑VM; you may queue dozens in parallel and proceed chatting elsewhere in ChatGPT.
- Evaluate outcomes: Inexperienced examine‑marks point out passing exams. Click on a activity card to see the diff, the mannequin’s rationalization, and the complete work‑log.
- Merge or iterate: Hit “Open PR” to push the department again to GitHub or reply to the duty with comply with‑up directions if adjustments are wanted.
OpenAI Codex Demo
On this part, I’m sharing the completely different examples demostrating how this new software program growth agent can kind your life!
Instance 1: Speed up Growth
OpenAI engineer Nacho Soto demonstrates how Codex helps him start new duties sooner by establishing undertaking scaffolding, akin to Swift packages. Utilizing prompts, he may offload setup work and concentrate on constructing options, whereas Codex handles the remainder within the background.
Instance 2: Evaluate Workflows
Codex helps not simply code era but additionally evaluation workflows. Builders evaluation AI-generated pull requests, establish points like formatting, and immediate Codex to make corrections.
Instance 3: Fixing Papercuts with Codex
Engineer Max Johnson describes how Codex helps tackle small bugs and code high quality issues, with out disrupting focus. As an alternative of switching contexts, he delegates these duties to Codex and critiques the output later, enhancing the codebase.
Instance 4: Discovering Error in Codebase whereas on a Name
Calvin explains how Codex assists with pressing duties throughout on-call shifts. By sending stack traces to Codex, he rapidly will get diagnostics or fixes. It additionally helps tune alerts and handle routine ops work, lowering guide overhead.
o3 vs Codex
Immediate: “Please repair the next problem within the matplotlib/matplotlib repository. Please resolve the difficulty in the issue under by modifying and testing code recordsdata in your present code execution session. The repository is cloned within the /testbed folder. It’s essential to absolutely remedy the issue in your reply to be thought-about appropriate.”
Downside assertion:[Bug]: Home windows correction will not be appropriate in `mlab._spectral_helper`
### Bug abstractHome windows correction will not be appropriate in `mlab._spectral_helper`:
https://github.com/matplotlib/matplotlib/blob/3418bada1c1f44da1f73916c5603e3ae79fe58c1/lib/matplotlib/mlab.py#L423-L430The `np.abs` will not be wanted, and provides mistaken end result for window with destructive worth, akin to `flattop`.
For reference, the implementation of scipy could be discovered right here :
https://github.com/scipy/scipy/blob/d9f75db82fdffef06187c9d8d2f0f5b36c7a791b/scipy/sign/_spectral_py.py#L1854-L1859### Code for copy
```python
import numpy as np
from scipy import sign
window = sign.home windows.flattop(512)
print(np.abs(window).sum()**2-window.sum()**2)
```### Precise consequence
4372.942556173262
### Anticipated consequence
0
### Extra data
_No response_
### Working system
_No response_
### Matplotlib Model
newest
### Matplotlib Backend
_No response_
### Python model
_No response_
### Jupyter model
_No response_
### Set up
None
Output:
Statement:
The Codex-generated repair is extra correct and full than the o3 output, because it appropriately removes the pointless use of np.abs()
in window normalization inside mlab._spectral_helper
, which induced incorrect outcomes for home windows with destructive values like flattop
. Codex replaces the defective normalization with mathematically applicable expressions—utilizing (window**2).sum()
as a substitute of (np.abs(window)**2).sum()
—aligning with finest practices seen in SciPy’s implementation. It additionally provides a unit take a look at to validate conduct, making certain the repair is verifiable and sturdy. In distinction, the o3 output seems incomplete and doesn’t clearly tackle the core bug, making Codex the higher answer.
Working of Codex
- Codex writes code: The mannequin begins by producing code to unravel a given activity.
- It runs the code: The output isn’t just evaluated for plausibility, however truly executed.
- It checks take a look at outcomes: Codex observes whether or not the generated code passes the related exams.
- It will get rewarded provided that the duty is accomplished efficiently: In contrast to conventional LLMs that concentrate on next-word prediction, Codex solely will get a excessive rating if the code works end-to-end.
- It learns by way of suggestions: If the code fails, Codex retries: creating repro scripts, fixing lint errors, and adjusting formatting till it meets requirements.
- It evolves like a junior developer: This coaching methodology teaches Codex to behave much less like a textual content generator and extra like a considerate engineer following real-world coding practices.

Codex‑1 outperforms earlier fashions each in standardized benchmarks and inside OpenAI workflows. As proven under, it achieves larger accuracy on the SWE-Bench Verified benchmark throughout all try counts and leads in OpenAI’s inside software program engineering duties. This highlights Codex‑1’s real-world reliability, particularly for builders integrating it into day by day workflows.

A Peek Contained in the Cloud Workshop
Each time you press ⏎ Run within the Codex sidebar, the system creates a micro‑VM sandbox: its personal file‑system, CPU, RAM, and locked‑down community coverage. Your repository is cloned, setting variables injected, and customary developer instruments (linters, formatters, take a look at runners) pre‑put in. That isolation delivers two rapid advantages:
- Security & Reproducibility – Rogue scripts can’t contact your laptop computer or leak secrets and techniques; the entire run could be replayed later.
- Parallelism at Scale – Want to repair typos, harmonise time‑outs, and hunt a mysterious bug? Launch three duties and evaluation the outcomes aspect‑by‑aspect.
An optionally available AGENTS.md file acts like a README for robots: you describe the undertaking format, how one can run exams, most well-liked commit model, even a request to print ASCII cats between steps. The richer the directions, the smoother Codex behaves.
Availability, Limits & What’s Subsequent
Codex is presently out there to ChatGPT Professional, Enterprise, and Workforce customers. Free-tier and EDU customers are anticipated to realize entry quickly. In the course of the analysis preview, utilization is topic to beneficiant limits, however these could evolve primarily based on demand. Future plans embody an API for Codex, integration into CI pipelines, and unification between the CLI and ChatGPT variations to permit seamless handoffs between native and cloud growth.
Also Learn:
Conclusion
“I simply landed a multi‑file refactor that by no means touched my laptop computer.”
– OpenAI Engineer
Tales like that trace at a future the place coding resembles excessive‑stage orchestration: you present intent, the agent grinds by way of the small print. Codex represents a shift in how builders work together with code, transferring from writing the whole lot manually to orchestrating high-level duties. Engineers now focus extra on intent and validation, whereas Codex handles execution. For a lot of, this alerts the start of a brand new growth workflow, the place human and agent collaboration turns into the usual moderately than the exception.
How are you planning to make use of Codex? Let me know within the remark part under!
Login to proceed studying and luxuriate in expert-curated content material.