Intel macOS: Computer Use unavailable because computer-use bundled plugin is missing
What version of the Codex App are you using (From “About Codex” dialog)?
26.422.30944
What subscription do you have?
ChatGPT Plus
What platform is your computer?
MacBook Pro 16-inch 2019 Intel, x86_64
What issue are you seeing?
The Computer Use feature is unavailable in Codex Desktop on my Intel Mac.
In Settings > Computer Use, the app shows that the Computer Use plugin cannot be used. There is no install button or way to enable it.
I checked the bundled plugins directory:
ls -la /Applications/Codex.app/Contents/Resources/plugins/openai-bundled/plugins/
find /Applications/Codex.app -iname '*computer*' -print | head -50
The bundled plugins directory only contains:
browser-use
latex-tectonic
There is no computer-use folder under:
/Applications/Codex.app/Contents/Resources/plugins/openai-bundled/plugins/
The logs appear to list computer-use as enabled, but the runtime marketplace only writes two plugins: browser-use and latex-tectonic.
Relevant log excerpt:
bundled_plugins_marketplace_sync_started disabledInstalledPluginCount=0 enabledPluginNames=["browser-use","computer-use","latex-tectonic"] forceInstallPluginNames=["browser-use"]
bundled_plugins_runtime_marketplace_written pluginCount=2 pluginNames=["browser-use","latex-tectonic"] targetMarketplaceRoot=/Users/kwj903/.codex/.tmp/bundled-marketplaces/openai-bundled
bundled_plugins_marketplace_added enabledPluginNames=["browser-use","latex-tectonic"] marketplaceName=openai-bundled
This looks like the computer-use bundled plugin is missing from the Intel macOS app bundle.
<img width="1128" height="802" alt="Image" src="https://github.com/user-attachments/assets/c84fa517-8a83-437b-a20c-d7b5fc20bd74" />
What steps can reproduce the bug?
- Install the latest Codex Desktop app for Intel macOS.
- Open Codex.
- Go to Settings > Computer Use.
- Observe that Computer Use is unavailable and there is no install/enable button.
- Check the bundled plugins directory:
ls -la /Applications/Codex.app/Contents/Resources/plugins/openai-bundled/plugins/
find /Applications/Codex.app -iname '*computer*' -print | head -50
- Observe that only
browser-useandlatex-tectonicare present, and nocomputer-usedirectory exists. - Check logs:
grep -R "computer-use\|BundledPluginsMarketplace\|CUAService" \
~/Library/Logs/com.openai.codex 2>/dev/null | tail -100
- Observe that
computer-useappears inenabledPluginNames, but the runtime marketplace only containsbrowser-useandlatex-tectonic.
What is the expected behavior?
Computer Use should be available on Intel macOS if the Intel Codex Desktop build is supported.
The app should either:
- include the
computer-usebundled plugin in the app bundle, and allow it to be installed/enabled from Settings > Computer Use, or - clearly indicate that Computer Use is not supported on Intel macOS if that is the intended behavior.
Expected bundled plugin path:
/Applications/Codex.app/Contents/Resources/plugins/openai-bundled/plugins/computer-use
Additional information
Device:
- MacBook Pro 16-inch 2019 Intel
- Architecture: x86_64
Codex:
- Codex Desktop version: 26.422.30944
- Bundled Codex CLI: 0.125.0-alpha.3
- Bundled CLI binary: Mach-O 64-bit executable x86_64
Terminal output:
/Applications/Codex.app/Contents/Resources/codex: Mach-O 64-bit executable x86_64
codex-cli 0.125.0-alpha.3
Bundled plugins found:
browser-use
latex-tectonic
No computer-use directory was found under the Codex.app bundle.
I also tried removing the app, clearing Codex plugin/runtime caches, and reinstalling the Codex Desktop app, but the computer-use bundled plugin is still missing.
6 Comments
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
Thanks for the duplicate/reference suggestions.
This does look very similar to #18404. My machine shows the same core issue: Computer Use is unavailable on Intel macOS, and the
computer-usebundled plugin is missing from the Codex app bundle.Additional data points from my environment:
/Applications/Codex.app/Contents/Resources/plugins/openai-bundled/plugins/only contains:browser-uselatex-tectoniccomputer-usedirectory exists under the Codex.app bundle.computer-useinenabledPluginNames, but the runtime marketplace only writes:browser-uselatex-tectonicRelevant log excerpt:
Hit this same class of failure on Intel; the bundled plugin path exists but
the cache that Codex actually reads is in your user dir, and on Intel the
SkyComputerUseClient binary may be arm64-only.
Two checks that usually surface the real cause:
codex mcp list
ls -la ~/.codex/plugins/cache/openai-bundled/computer-use/*/.codex-plugin/plugin.json
file /Applications/Codex.app/Contents/Resources/plugins/openai-bundled/computer-use/*/SkyComputerUseClient
If
filedoesn't includex86_64, no amount of reinstall fixes it — theclient is arm64-only and you need a Rosetta path or the x86_64 build.
I wrote up the full diagnostic walkthrough for this and 5 other root causes
(TCC mismatch, multiple CODEX_HOMEs, session reuse, etc.), plus a free
read-only script that bundles all the checks with redaction:
https://igorganapolsky.github.io/openclaw-mac-ai-workstation-setup/troubleshooting.html
If the output of those three commands doesn't surface a clear cause, the $19
quick read on that page reads the bundle and names the root cause.
Adding another current Intel/x64 data point after a fresh reinstall and package comparison.
Environment:
Observed local state after reinstall:
There is no
computer-use,Codex Computer Use.app, orSkyComputerUseServiceunder the installed app bundle, generated bundled marketplace, or user plugin cache.Appshots hotkey handling and target app detection appear to work, but the capture worker fails at Computer Use service startup:
I also compared the current public packages:
The downloaded x64 zip contains only:
The same-version arm64 zip does contain
computer-use:But the helper is arm64-only:
Related helper executables in the arm64 package are also arm64-only, including
SkyComputerUseClient,CUALockScreenGuardian, and the Locked Use authorization plugin installer.I also scanned older x64 packages still listed in the current x64 appcast:
Those did not expose
computer-use,Codex Computer Use.app, orSkyComputerUseServicein the zip central directory either, so rolling back to an older x64 package does not appear to be a viable workaround.Current conclusion: the Intel/x64 distribution appears to be missing an x86_64 or universal build of the Computer Use helper/plugin. Reinstalling Codex, clearing plugin caches, changing network/proxy routes, or copying the arm64 helper into the Intel install does not fix this.
Title:
Codex Desktop Computer Use fails to install/start local service on Intel Mac
Environment:
Issue:
Computer Use appears available in Codex Desktop, but the managed local Computer Use service never installs or starts.
Observed behavior:
~/.codex/computer-useonly containsconfig.jsonCodex Computer Use.appis created~/.codex/computer-usedoes not helpRelevant log errors:
Failed to spawn managed Computer Use serviceFailed to reconcile managed Computer Use serviceAdditional notes:
remote_controlrelated endpoints appear reachableunsupported feature enablement 'auth_elicitation'Expected behavior:
Codex Desktop should successfully install and launch the local Computer Use service so Computer Use can work normally on this machine.
Adding a current Intel/x64 data point: this is still reproducible in Codex Desktop 26.707.31428.
Environment
Mach-O 64-bit executable x86_64Current behavior
browser,chrome,latex,sites,visualize, anddeep-research, but nocomputer-usedirectory.SkyComputerUseServicenorSkyComputerUseClientexists in the app bundle or user plugin cache.The current startup log reports:
The user Computer Use directory contains only
config.json;Codex Computer Use.appis absent.Notes
Accessibility and Screen Recording permissions have been granted, and the app was fully restarted. The failure occurs because the managed service payload is absent, before those permissions can help.
This appears to confirm that the Intel/x64 distribution is still missing an x86_64 or universal Computer Use helper in 26.707.31428. Copying the arm64 helper is not a viable workaround because it cannot execute on Intel and would also invalidate the signed installation.
Please ship an x86_64/universal
computer-useplugin andSkyComputerUseServicein the Intel package, or clearly gate the Computer Use UI on unsupported Intel builds.