OpenAI has integrated its Codex desktop agent into the ChatGPT mobile apps for iOS and Android, letting developers monitor, approve, and steer long‑running code tasks from their phones. The feature works via QR‑code pairing, requires the latest Codex for Mac and ChatGPT app releases, and will later expand to Windows hosts.
Codex now lives inside the ChatGPT mobile app
OpenAI’s latest update folds the Codex desktop agent into the ChatGPT app for iPhone, iPad, and Android. Rather than a separate mobile client, the Codex UI appears as a new tab inside the existing ChatGPT experience. When you connect the app to a machine running Codex—whether a MacBook, a Mac mini server, or a cloud‑based devbox—the mobile client pulls the live state of every active thread, approval queue, and plugin context.

How the pairing works
- Install the newest versions – Codex 1.7+ on macOS (or the upcoming Windows build) and ChatGPT 5.2+ on iOS/Android.
- Launch Codex on the host machine – The desktop app displays a QR code.
- Scan from the phone – Open the ChatGPT app, tap the Codex tab, and scan the code. A secure TLS tunnel is established automatically.
- Start interacting – The mobile UI shows a list of running jobs, recent terminal output, screenshots, diffs, and test results.
The QR‑code step mirrors the way Apple’s AirPlay pairing works, but the connection is encrypted end‑to‑end and expires after 24 hours of inactivity.
What developers can actually do from a phone
| Mobile action | What happens on the host | Example use case |
|---|---|---|
| Approve a pending command | Codex receives a signed approval token and continues the workflow. | Review a generated migration script before it touches production DB. |
| Inject a new prompt | The prompt is sent to the active Codex session and the model re‑generates output. | Add a missing edge‑case test after spotting a failure in the logs. |
| Switch model version | The host swaps the underlying LLM (e.g., from GPT‑4‑Turbo to GPT‑5.5) without restarting Codex. | Move to a higher‑capability model for a performance‑critical build. |
| View screenshots / terminal output | Real‑time screen captures and stdout streams are streamed to the phone. | Spot a UI rendering glitch while a CI job runs on a remote Mac mini. |
| Open a file in the host editor | A deep‑link is sent to the host IDE (VS Code, Xcode, etc.) and the file is highlighted. | Jump to a failing test file directly from a notification. |
All sensitive assets—API keys, local certificates, and the file system—remain on the host machine. The phone only receives display data and command acknowledgments, which keeps the attack surface minimal.
Impact on iOS and Android development workflows
For teams that already use Codex to automate code reviews, generate boilerplate, or run long‑lasting CI tasks, the mobile integration removes the “always‑at‑desk” bottleneck. A developer can:
- Stay in the loop while traveling – Approve a PR generated overnight without pulling a laptop.
- Coordinate across platforms – iOS engineers can approve a backend migration while waiting for a simulator build on a Mac.
- Reduce context‑switching – Instead of opening a remote desktop client, the ChatGPT UI presents just the information needed to make a decision.
Because the feature relies on the same Codex‑for‑Mac binary, iOS developers do not need to adjust their codebase. The only requirement is the updated ChatGPT app, which is available on the App Store and Google Play.
Migration steps for existing Codex users
- Back up your current Codex configuration – Export the
~/.codex/config.jsonfile; the mobile pairing will read it automatically. - Update both apps – On macOS, run
brew upgrade codexor download the latest dmg from the official site. On mobile, update via the store. - Enable remote access – In the Codex preferences, toggle Allow mobile connections and set a strong device password.
- Pair the devices – Follow the QR‑code flow described above. The first connection will prompt you to trust the device fingerprint.
- Test with a non‑critical job – Run a simple script (e.g.,
echo "hello") and approve it from the phone to confirm the round‑trip works.
After confirming the connection, you can start moving longer tasks—such as nightly builds or integration tests—into the remote workflow.
What’s coming next?
OpenAI has hinted at a Windows host client that will be released later this year. Once that lands, the same mobile UI will be able to control Codex instances running on a Windows devbox, expanding the cross‑platform reach.
In parallel, the company announced a Codex‑Pro subscription that adds higher‑throughput model slots and priority access to the upcoming GPT‑5.5‑Turbo. For teams that already pay for ChatGPT Plus, the subscription is an optional add‑on.
Bottom line
The integration turns the ChatGPT mobile app into a lightweight command‑center for Codex, giving iOS and Android developers the ability to monitor, approve, and steer AI‑assisted coding tasks without leaving their phones. The approach respects security boundaries, requires only a QR‑code pairing, and is ready for production use today.
Read the full announcement on the OpenAI blog and check the ChatGPT release notes for detailed platform requirements.

Comments
Please log in or register to join the discussion