Codex desktop app pegs CPU on macOS after latest update; fans surge and system lags even on small requests
What version of the Codex App are you using (From “About Codex” dialog)?
Latest version as of April 18, 2026 after updating the Codex desktop app on macOS. I do not have the exact build number in front of me.
What subscription do you have?
Pro (100 USD)
What issue are you seeing?
After updating to the latest Codex desktop app on macOS, the app appears to use very high local CPU even for very small requests. The machine’s fans ramp up aggressively, the whole computer starts lagging, and Codex becomes unexpectedly heavy to use.
In Activity Monitor, the Codex process was observed at about 276.5% CPU during a small request.
This did not feel normal before the update.
What steps can reproduce the bug?
- Update the Codex desktop app to the latest version on macOS.
- Open the Codex app.
- Send even a small / simple request.
- Observe Activity Monitor and overall system behavior.
- CPU usage for
Codexcan spike very high (in my case around 276.5%), fans become very loud, and the whole Mac starts lagging.
What is the expected behavior?
Small requests should not cause runaway local CPU usage, loud fan ramping, or whole-system lag. Since model inference is remote, the desktop app should remain relatively light during normal use.
Additional information
- Platform: macOS
- Symptom started after updating to the latest Codex desktop app version.
- Repro seems possible with very small requests, not just large tasks.
- I have a screenshot from Activity Monitor showing the
Codexprocess at 276.5% CPU.
If useful, I can follow up with the exact app version from the About dialog and additional system details.
7 Comments
Additional evidence from Activity Monitor on macOS:
The high CPU usage is not limited to the main
Codexprocess. There are also multiple hot renderer helper processes.Observed at the same time:
Codex Helper (Renderer)at about 118.8% CPUCodex Helper (Renderer)at about 117.3% CPUWindowServerat about 45.1% CPUCodexprocess at about 35.3% CPUThis suggests the regression may be concentrated in renderer / UI activity rather than only the main app process.
Combined with the earlier screenshot showing
Codexat about 276.5% CPU, this looks like a desktop rendering/performance issue after the recent update, and it correlates with loud fan ramping and whole-system lag even on small prompts.I can provide the exact app version and macOS version if needed.
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
Closing this out — fixed after the latest app update. gg wp
still screaming for me on latest version
<img width="260" height="223" alt="Image" src="https://github.com/user-attachments/assets/2f616cf5-d2aa-477f-974c-5ac299fe6e5f" />
<img width="513" height="117" alt="Image" src="https://github.com/user-attachments/assets/25cde922-f533-448d-aae4-7103e519ecd6" />
@agplusman for me is not plug spin hot but results similar
<img width="1057" height="136" alt="Image" src="https://github.com/user-attachments/assets/88dffc33-d194-42e1-8f83-e45898e4bbf9" />
Why has such a serious issue occurred, and why doesn't the official team provide downloads for previous versions???
Reproducing on current build. Adding a concrete signal from the logs in case it helps:
System
26.422.21637(Electron41.2.0)26.5(25F5058e), Darwin25.5.0CPU / memory at peak (from
ps aux)| Process | %CPU | RSS |
|---|---|---|
|
Codex(main) | 108% | 503 MB ||
Codex Helper (Renderer)| 122% | 1.98 GB ||
codex app-server| 1.3% | 44 MB |App is idle — no open thread, no active turn — but both main and renderer sit at 100%+ indefinitely.
What's driving it: a tight idle-poll loop in the
[git] [git-origins]worker.Single 5-minute session log (
~/Library/Logs/com.openai.codex/YYYY/MM/DD/codex-desktop-<uuid>-<pid>-t1-i1-*.log):grep -c "worker-complete"→ 13,879dirCount=0 elapsedMs=0 originCount=0— nothing actually changed, nothing to resolveSample (from start of log):
Ruling out state-driven theories:
~/.codex/state_5.sqlitethreadstable: 0 rows (no saved threads)~/.codex/config.toml: only[projects."$HOME"] trust_level = "trusted", nothing stale"~"stringsENOENT: path does not exist: ~warning on the very first tick, then never repeats — so this is not #13988With essentially no local state to drive it, the 27 Hz poll rate looks like a code-level default rather than something clearable by clearing caches, wiping
~/.codex, or resetting workspaces. That also matches that users in this thread report no improvement from the usual reset workflows.Tangent that may or may not be related: the very first worker-complete fired with
dirCount=1 elapsedMs=1resolved a workspace whose path was a literal"~"(unexpanded). Looks like something is passing the tilde straight tofssomewhere inworker.js— see stack:LY → ZZ.getStableMetadata → ZZ.getRepoRepository → ZZ.getWorktreeRepository. It doesn't cause the loop, but it's a separate path-expansion bug worth flagging.Happy to share full (redacted) log files or run any extra diagnostics if useful.