[macOS] Fix for the SkyComputerUseService spawn storm (hundreds of processes, 10+ GB RAM, blank screen, kernel panic) on Codex 26.820 #43891
Unanswered
celesticlabs
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
If Codex for Mac is making your machine lag, your screen go blank, or your MacBook kernel-panic, run this first:
pgrep -f SkyComputerUseService | wc -lIf that number is in the hundreds, it is not your hardware. Codex 26.820 launches its Computer Use helper at startup, the helper (26.819, on an
alphaupdate channel that now returns 403) rejects the app withApple Event error -10000: Sender process is not authenticated, and Codex respawns it about 8 times per second for two minutes. Every copy stays alive. On my M5 / 16 GB: 978 processes, 5 GB swap, WindowServer watchdog kills, thenpanic: userspace watchdog timeout: no successful checkins from WindowServer.There are ~156 open issues on this (#38841, #38760, #40153, #25744, #38455, #25719 …). This post is the tested workaround, because none of the obvious ones hold:
plugins."computer-use@openai-bundled".enabled = false[mcp_servers.computer-use] enabled = falsenotifyhook /remote_control_enabled = falsecomputer-use-bundled-plugin-auto-install-disabled = true(global state)syspolicyd→ 0%, still swarm (568 helpers / 29.5 GB in 2 min)chmod 000+chflags uchgon the helper binaryManual version:
Because Codex replaces the bundle on every update, I wrapped it in a 160-line script with a 60-second relock LaunchAgent and
diagnose/install/status/unlock: https://github.com/celesticlabs/codex-guard (MIT, no sudo, no network). Computer Use is off while locked;unlockrestores it in one command once OpenAI ships a helper that accepts the app.If you find something that keeps Computer Use working and stops the spawns, please reply here and I will test it and update the README with credit.
All reactions