ChatGPT / Codex for Mac "Computer Use" spawns unbounded `SkyComputerUseService` threads → CPU pegged + app aborts on launch (SIGABRT / V8 OOM)

Open 💬 6 comments Opened Aug 18, 2026 by jimmywang1994
💡 Likely answer: A maintainer (github-actions[bot], contributor) responded on this thread — see the highlighted reply below.

What version of the Codex App are you using (From “About Codex” dialog)?

26.810.52044 (build 6662) Also reproduced on the previous two builds: - 26.810.41047 (build 6570) - 26.810.50856 (build 6644) A newer build has not fixed it so far.

What subscription do you have?

plus

What platform is your computer?

_No response_

What issue are you seeing?

<HTML><BODY><!--StartFragment--><p>When the "Computer Use" feature is enabled, every turn spawns a <code>SkyComputerUseService</code> helper process. That process bootstraps itself by sending a <strong>synchronous Apple Event</strong> (<code>AESendMessage</code>) to a PIP/rendezvous service and then <strong>blocks forever waiting for a response that never arrives</strong>. Because it never exits, every turn spawns another one. They accumulate, each holding a V8 isolate, until the process hits the dispatch-thread soft limit (64) and then <strong>V8 runs out of memory and aborts the whole app (<code>SIGABRT</code>)</strong> — typically within ~2 minutes of launch.</p><p>The "CPU spike on launch" and the "app crashes on launch" symptoms are the <strong>same bug</strong>, not two separate problems.</p><h3>Symptoms observed</h3><ol><li>Open ChatGPT (or trigger Computer Use). Within seconds, <code>pgrep -f SkyComputerUseService | wc -l</code> climbs from 0 → 50 → 200+ and never stops.</li></ol><ol><li><code>sysctl vm.loadavg</code> spikes to 60–150 on a 12-core machine (≈5–12× overload).</li></ol><ol><li>After roughly 1–2 minutes, the app aborts. Console shows a <code>ChatGPT</code> (or <code>Codex (Service)</code>) crash report with <code>bug_type 309</code>.</li></ol><ol><li>In the degraded state, the app logs <code>Sky Computer Use service startup request failed</code> on every turn.</li></ol><h3>Crash signature (from the attached report, PID 4374)</h3><pre><code></code></pre><h3>Evidence</h3><ul><li>Attached crash report: <strong>106 threads total</strong>, of which <strong>~45 are blocked on the identical <code>sendBootstrapToServiceWithProcessIdentifier:</code> synchronous IPC call</strong>; crash thread is the V8 <code>OOMErrorHandler</code>. The header explicitly states <code>Dispatch Thread Soft Limit Reached: 64</code>.</li></ul><ul><li>Live observation across multiple occurrences: <code>SkyComputerUseService</code> count reached <strong>200–400+</strong> before the app died; <code>vm.loadavg</code> reached <strong>60–150</strong> on a 12-core CPU.</li></ul><ul><li>The standalone <code>Codex (Service)</code> process crashes with the same signature (fresh crash report dated 2026-08-16), so this is not limited to the ChatGPT app.</li></ul><h3>Root cause analysis</h3><ol><li><strong>Trigger.</strong> Each turn, <code>~/.codex/config.toml</code> fires a <code>notify</code> hook:<pre><code></code></pre><p>plus an <code>[mcp_servers.computer-use]</code> (and <code>[plugins."computer-use@openai-bundled"]</code>) entry whose <code>command</code> launches the Computer Use helper.</p></li></ol><ol><li><strong>The hang.</strong> <code>SkyComputerUseClient</code> / <code>SkyComputerUseService</code> bootstraps by sending a <strong>synchronous</strong> Apple Event to <code>RemoteHostedPIPContentService</code> (<code>sendBootstrapToServiceWithProcessIdentifier:rendezvousPort:attempt:</code> → <code>AESendMessage</code>). In this build that IPC call <strong>blocks indefinitely and never returns</strong>, so the helper process sits on a dispatch thread forever and is never reaped.</li></ol><ol><li><strong>The leak.</strong> Because the helper never exits, the next turn spawns another one. They accumulate. Each holds a V8 isolate, so JavaScript heap + GC pressure grow without bound.</li></ol><ol><li><strong>The crash.</strong> Once 64+ dispatch threads are blocked in synchronous operations (<code>Dispatch Thread Soft Limit Reached: 64</code>), the V8 isolate hits <code>node::OOMErrorHandler</code> → <code>abort()</code> → <code>SIGABRT</code>. Hence "crashes on launch" is the same failure mode as "CPU pegged".</li></ol><h3>Workarounds attempted (and why they do not fully work)</h3>
Workaround | Result
-- | --
Delete the bundled Codex Computer Use.app under ~/.codex/computer-use/ (then chflags uchg the parent dir to stop the app's self-repair from recreating it) | Stops the leak (sky count stays 0, app stable). Downside: Computer Use is dead and logs Sky Computer Use service startup request failed every turn. This is the only reliable mitigation.
Edit ~/.codex/config.toml (set command = "/bin/false", disable [mcp_servers.computer-use] / [plugins."computer-use"], comment the notify hook) | Does not stick. The app rewrites config.toml on the next launch (self-healing config), restoring the notify hook and the mcp server entry — including on the newest build 26.810.52044.
Replace / rename the SkyComputerUseService / SkyComputerUseClient binaries with a no-op | Blocked. The bundled .app and its binaries are protected by macOS (com.apple.macl / com.apple.provenance xattrs, and a uchg immutable flag on the parent directory); xattr -d / chmod / mv / rm as a normal user are denied.

<p>Note: in <code>config.toml</code>, both <code>[plugins."computer-use@openai-bundled"]</code> and <code>[mcp_servers.computer-use]</code> already show <code>enabled = false</code>, yet the top-level <code>notify</code> hook still invokes <code>SkyComputerUseClient</code> — so disabling those sections <strong>does not</strong> stop the spawn.</p><h3>Requested fix / questions</h3><ol><li>Please fix the <code>RemoteHostedPIPContentService sendBootstrapToServiceWithProcessIdentifier:</code> IPC path so it does not block synchronously forever (add a timeout / async handshake / proper cleanup of the spawned helper).</li></ol><ol><li>Please stop the unbounded accumulation: reap <code>SkyComputerUseService</code> when its IPC is unacknowledged, and cap concurrent helpers.</li></ol><ol><li>Is there a supported way to fully disable Computer Use that <strong>survives app relaunch</strong> (i.e., that the app's config self-healing will not re-enable)?</li></ol><ol><li>Is this specific to macOS 26 / Apple Silicon, or are Intel users affected too?</li></ol><ol><li>Which exact build carries the fix so we can verify? (Current latest, 26.810.52044 / 6662, still reproduces.)</li></ol><sc-clipboard block-data="[{&quot;blockId&quot;:&quot;DKn0pH3tbsZaQ0pOxID7LD&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;DKn0pH3tbsZaQ0pOxID7LD&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;DKn0pH3tbsZaQ0pOxID7LD&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;When the \&quot;Computer Use\&quot; feature is enabled, every turn spawns a &quot;,null],[&quot;SkyComputerUseService&quot;,[[&quot;c&quot;]]],[&quot; helper process. That process bootstraps itself by sending a &quot;,null],[&quot;synchronous Apple Event&quot;,[[&quot;b&quot;]]],[&quot; (&quot;,null],[&quot;AESendMessage&quot;,[[&quot;c&quot;]]],[&quot;) to a PIP/rendezvous service and then &quot;,null],[&quot;blocks forever waiting for a response that never arrives&quot;,[[&quot;b&quot;]]],[&quot;. Because it never exits, every turn spawns another one. They accumulate, each holding a V8 isolate, until the process hits the dispatch-thread soft limit (64) and then &quot;,null],[&quot;V8 runs out of memory and aborts the whole app (&quot;,[[&quot;b&quot;]]],[&quot;SIGABRT&quot;,[[&quot;b&quot;],[&quot;c&quot;]]],[&quot;)&quot;,[[&quot;b&quot;]]],[&quot; — typically within ~2 minutes of launch.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;gvfoF6KVxV9ezOew1G9R1i&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;gvfoF6KVxV9ezOew1G9R1i&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;gvfoF6KVxV9ezOew1G9R1i&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;The \&quot;CPU spike on launch\&quot; and the \&quot;app crashes on launch\&quot; symptoms are the &quot;,null],[&quot;same bug&quot;,[[&quot;b&quot;]]],[&quot;, not two separate problems.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;WS4SwPJIjWnFJMkGZu7UaN&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;WS4SwPJIjWnFJMkGZu7UaN&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;WS4SwPJIjWnFJMkGZu7UaN&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;header3&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Symptoms observed&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;yEuLbdxWhtu7SV1ILdgTXS&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;yEuLbdxWhtu7SV1ILdgTXS&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;yEuLbdxWhtu7SV1ILdgTXS&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Open ChatGPT (or trigger Computer Use). Within seconds, &quot;,null],[&quot;pgrep -f SkyComputerUseService | wc -l&quot;,[[&quot;c&quot;]]],[&quot; climbs from 0 → 50 → 200+ and never stops.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;yZF7R5vcXYI88DrCY8KsjT&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;yZF7R5vcXYI88DrCY8KsjT&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;yZF7R5vcXYI88DrCY8KsjT&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;sysctl vm.loadavg&quot;,[[&quot;c&quot;]]],[&quot; spikes to 60–150 on a 12-core machine (≈5–12× overload).&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;YYjMvZsYEbOJlNIdOBaIg3&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;YYjMvZsYEbOJlNIdOBaIg3&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;YYjMvZsYEbOJlNIdOBaIg3&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;After roughly 1–2 minutes, the app aborts. Console shows a &quot;,null],[&quot;ChatGPT&quot;,[[&quot;c&quot;]]],[&quot; (or &quot;,null],[&quot;Codex (Service)&quot;,[[&quot;c&quot;]]],[&quot;) crash report with &quot;,null],[&quot;bug_type 309&quot;,[[&quot;c&quot;]]],[&quot;.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;KaWrA9l4Zd2lNmI8rCFcg4&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;KaWrA9l4Zd2lNmI8rCFcg4&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;KaWrA9l4Zd2lNmI8rCFcg4&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;In the degraded state, the app logs &quot;,null],[&quot;Sky Computer Use service startup request failed&quot;,[[&quot;c&quot;]]],[&quot; on every turn.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;uDZqOek1z2aDwQ4AgsVqsn&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;uDZqOek1z2aDwQ4AgsVqsn&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;uDZqOek1z2aDwQ4AgsVqsn&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;header3&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Crash signature (from the attached report, PID 4374)&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;wEV3g1iYYwooGd7pNMKHhV&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;wEV3g1iYYwooGd7pNMKHhV&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;wEV3g1iYYwooGd7pNMKHhV&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;code&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Process: ChatGPT [4374]\nIdentifier: com.openai.codex\nVersion: 26.810.52044 (6662)\nOS Version: macOS 26.6.1 (25G76)\nHardware Model: Mac14,12\nDate/Time: 2026-08-18 13:31:51 +0800\nLaunch Time: 2026-08-18 13:29:57 +0800 # crashed ~2 min after launch\n\nException Type: EXC_CRASH (SIGABRT)\nTermination Reason: Namespace SIGNAL, Code 6, Abort trap: 6\n\nDispatch Thread Soft Limit Reached: 64\n(too many dispatch threads blocked in synchronous operations)\n\nThread 9 Crashed:: V8Worker\n0 libsystem_kernel.dylib __pthread_kill\n2 libsystem_c.dylib abort + 148\n3 Codex Framework node::OOMErrorHandler(char const*, v8::OOMDetails const&amp;) + 344\n4 Codex Framework reading_mode$cxxbridge1$194$parse_distilled_html + 13224316\n6 Codex Framework v8::CppHeap::CollectGarbageInYoungGenerationForTesting(...) + 78356\n\n# The same synchronous IPC call appears on ~45 threads (out of 106 total), e.g.:\nThread 105:: Dispatch queue: com.apple.root.user-initiated-qos\n5 AE AESendMessage + 5208\n6 Foundation -[NSAppleEventDescriptor sendEventWithOptions:timeout:error:]\n7 sky.node -[RemoteHostedPIPContentService sendBootstrapToServiceWithProcessIdentifier:rendezvousPort:attempt:] + 372&quot;]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;klHjeO8LZIo7IGgA2D3kJb&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;klHjeO8LZIo7IGgA2D3kJb&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;klHjeO8LZIo7IGgA2D3kJb&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;header3&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Evidence&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;GwII0nTFo0b6C5hw78xMw9&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;GwII0nTFo0b6C5hw78xMw9&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;GwII0nTFo0b6C5hw78xMw9&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;bulleted_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Attached crash report: &quot;,null],[&quot;106 threads total&quot;,[[&quot;b&quot;]]],[&quot;, of which &quot;,null],[&quot;~45 are blocked on the identical &quot;,[[&quot;b&quot;]]],[&quot;sendBootstrapToServiceWithProcessIdentifier:&quot;,[[&quot;b&quot;],[&quot;c&quot;]]],[&quot; synchronous IPC call&quot;,[[&quot;b&quot;]]],[&quot;; crash thread is the V8 &quot;,null],[&quot;OOMErrorHandler&quot;,[[&quot;c&quot;]]],[&quot;. The header explicitly states &quot;,null],[&quot;Dispatch Thread Soft Limit Reached: 64&quot;,[[&quot;c&quot;]]],[&quot;.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;CRm9knBevcNE3UFJ8clDdb&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;CRm9knBevcNE3UFJ8clDdb&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;CRm9knBevcNE3UFJ8clDdb&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;bulleted_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Live observation across multiple occurrences: &quot;,null],[&quot;SkyComputerUseService&quot;,[[&quot;c&quot;]]],[&quot; count reached &quot;,null],[&quot;200–400+&quot;,[[&quot;b&quot;]]],[&quot; before the app died; &quot;,null],[&quot;vm.loadavg&quot;,[[&quot;c&quot;]]],[&quot; reached &quot;,null],[&quot;60–150&quot;,[[&quot;b&quot;]]],[&quot; on a 12-core CPU.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;71G3ikv98T8IeMhrkycz66&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;71G3ikv98T8IeMhrkycz66&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;71G3ikv98T8IeMhrkycz66&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;bulleted_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;The standalone &quot;,null],[&quot;Codex (Service)&quot;,[[&quot;c&quot;]]],[&quot; process crashes with the same signature (fresh crash report dated 2026-08-16), so this is not limited to the ChatGPT app.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;VzQiYfyxNo8I6oyoJs1COM&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;VzQiYfyxNo8I6oyoJs1COM&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;VzQiYfyxNo8I6oyoJs1COM&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;header3&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Root cause analysis&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;mgRwUcSTIgcAF68VGmvkJs&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;mgRwUcSTIgcAF68VGmvkJs&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;mgRwUcSTIgcAF68VGmvkJs&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Trigger.&quot;,[[&quot;b&quot;]]],[&quot; Each turn, &quot;,null],[&quot;~/.codex/config.toml&quot;,[[&quot;c&quot;]]],[&quot; fires a &quot;,null],[&quot;notify&quot;,[[&quot;c&quot;]]],[&quot; hook:&quot;,null]]},&quot;children&quot;:[&quot;ng1eP3LlzFHpn8wJJP5OoW&quot;,&quot;gbmNBZ63707mtCz2jk0qOf&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;ng1eP3LlzFHpn8wJJP5OoW&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;ng1eP3LlzFHpn8wJJP5OoW&quot;,&quot;parentId&quot;:&quot;mgRwUcSTIgcAF68VGmvkJs&quot;,&quot;type&quot;:&quot;code&quot;,&quot;props&quot;:{&quot;codeLanguage&quot;:&quot;toml&quot;,&quot;title&quot;:[[&quot;notify = [\&quot;…/Codex Computer Use.app/Contents/SharedSupport/SkyComputerUseClient.app/Contents/MacOS/SkyComputerUseClient\&quot;, \&quot;turn-ended\&quot;]&quot;]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;gbmNBZ63707mtCz2jk0qOf&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;gbmNBZ63707mtCz2jk0qOf&quot;,&quot;parentId&quot;:&quot;mgRwUcSTIgcAF68VGmvkJs&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;plus an &quot;,null],[&quot;[mcp_servers.computer-use]&quot;,[[&quot;c&quot;]]],[&quot; (and &quot;,null],[&quot;[plugins.\&quot;computer-use@openai-bundled\&quot;]&quot;,[[&quot;c&quot;]]],[&quot;) entry whose &quot;,null],[&quot;command&quot;,[[&quot;c&quot;]]],[&quot; launches the Computer Use helper.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;7ow9dpbSpEfWbBHDxMndlD&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;7ow9dpbSpEfWbBHDxMndlD&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;7ow9dpbSpEfWbBHDxMndlD&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;The hang.&quot;,[[&quot;b&quot;]]],[&quot; &quot;,null],[&quot;SkyComputerUseClient&quot;,[[&quot;c&quot;]]],[&quot; / &quot;,null],[&quot;SkyComputerUseService&quot;,[[&quot;c&quot;]]],[&quot; bootstraps by sending a &quot;,null],[&quot;synchronous&quot;,[[&quot;b&quot;]]],[&quot; Apple Event to &quot;,null],[&quot;RemoteHostedPIPContentService&quot;,[[&quot;c&quot;]]],[&quot; (&quot;,null],[&quot;sendBootstrapToServiceWithProcessIdentifier:rendezvousPort:attempt:&quot;,[[&quot;c&quot;]]],[&quot; → &quot;,null],[&quot;AESendMessage&quot;,[[&quot;c&quot;]]],[&quot;). In this build that IPC call &quot;,null],[&quot;blocks indefinitely and never returns&quot;,[[&quot;b&quot;]]],[&quot;, so the helper process sits on a dispatch thread forever and is never reaped.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;tjjfj3fZ3VCtSTpvBsq4L9&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;tjjfj3fZ3VCtSTpvBsq4L9&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;tjjfj3fZ3VCtSTpvBsq4L9&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;The leak.&quot;,[[&quot;b&quot;]]],[&quot; Because the helper never exits, the next turn spawns another one. They accumulate. Each holds a V8 isolate, so JavaScript heap + GC pressure grow without bound.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;PgxWoxIKaGcELXxzW87Tua&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;PgxWoxIKaGcELXxzW87Tua&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;PgxWoxIKaGcELXxzW87Tua&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;The crash.&quot;,[[&quot;b&quot;]]],[&quot; Once 64+ dispatch threads are blocked in synchronous operations (&quot;,null],[&quot;Dispatch Thread Soft Limit Reached: 64&quot;,[[&quot;c&quot;]]],[&quot;), the V8 isolate hits &quot;,null],[&quot;node::OOMErrorHandler&quot;,[[&quot;c&quot;]]],[&quot; → &quot;,null],[&quot;abort()&quot;,[[&quot;c&quot;]]],[&quot; → &quot;,null],[&quot;SIGABRT&quot;,[[&quot;c&quot;]]],[&quot;. Hence \&quot;crashes on launch\&quot; is the same failure mode as \&quot;CPU pegged\&quot;.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;aaPoX4JDxLlsbFoM7ZDsqU&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;aaPoX4JDxLlsbFoM7ZDsqU&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;aaPoX4JDxLlsbFoM7ZDsqU&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;header3&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Workarounds attempted (and why they do not fully work)&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;l9uqeSDtW1VRU2CzaA04vF&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;l9uqeSDtW1VRU2CzaA04vF&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;l9uqeSDtW1VRU2CzaA04vF&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;simple_table&quot;,&quot;props&quot;:{&quot;tableColumnOrder&quot;:[&quot;GSXuf2yI&quot;,&quot;mvhwjYQi&quot;],&quot;tableColumnWidthMap&quot;:{&quot;GSXuf2yI&quot;:120,&quot;mvhwjYQi&quot;:120}},&quot;children&quot;:[&quot;2wEAzm3ebgIQQ4GvfZPF7x&quot;,&quot;MR3wdHuUfZbfSejCmBxApQ&quot;,&quot;B4CduVYxNrgZmvKXDIS0h2&quot;,&quot;PxNqyHJ4A4Xc6G4mc0L4dF&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;2wEAzm3ebgIQQ4GvfZPF7x&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;2wEAzm3ebgIQQ4GvfZPF7x&quot;,&quot;parentId&quot;:&quot;l9uqeSDtW1VRU2CzaA04vF&quot;,&quot;type&quot;:&quot;simple_table_row&quot;,&quot;props&quot;:{},&quot;children&quot;:[&quot;qir4NClJtgqoHyCijuEyhp&quot;,&quot;U4huipaKUVg7GWYTZ22Cb2&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;qir4NClJtgqoHyCijuEyhp&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;qir4NClJtgqoHyCijuEyhp&quot;,&quot;parentId&quot;:&quot;2wEAzm3ebgIQQ4GvfZPF7x&quot;,&quot;type&quot;:&quot;simple_table_cell&quot;,&quot;props&quot;:{&quot;columnKey&quot;:&quot;GSXuf2yI&quot;},&quot;children&quot;:[&quot;DsILFlkLJBX2UupMaTE3It&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;DsILFlkLJBX2UupMaTE3It&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;DsILFlkLJBX2UupMaTE3It&quot;,&quot;parentId&quot;:&quot;qir4NClJtgqoHyCijuEyhp&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Workaround&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;U4huipaKUVg7GWYTZ22Cb2&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;U4huipaKUVg7GWYTZ22Cb2&quot;,&quot;parentId&quot;:&quot;2wEAzm3ebgIQQ4GvfZPF7x&quot;,&quot;type&quot;:&quot;simple_table_cell&quot;,&quot;props&quot;:{&quot;columnKey&quot;:&quot;mvhwjYQi&quot;},&quot;children&quot;:[&quot;sUn8BPvCLQvbtgnXhOwcjF&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;sUn8BPvCLQvbtgnXhOwcjF&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;sUn8BPvCLQvbtgnXhOwcjF&quot;,&quot;parentId&quot;:&quot;U4huipaKUVg7GWYTZ22Cb2&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Result&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;MR3wdHuUfZbfSejCmBxApQ&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;MR3wdHuUfZbfSejCmBxApQ&quot;,&quot;parentId&quot;:&quot;l9uqeSDtW1VRU2CzaA04vF&quot;,&quot;type&quot;:&quot;simple_table_row&quot;,&quot;props&quot;:{},&quot;children&quot;:[&quot;AROwNbDrlcOd06X4T3f4NU&quot;,&quot;gIy8stVib7KXkLbEuYXRfE&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;AROwNbDrlcOd06X4T3f4NU&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;AROwNbDrlcOd06X4T3f4NU&quot;,&quot;parentId&quot;:&quot;MR3wdHuUfZbfSejCmBxApQ&quot;,&quot;type&quot;:&quot;simple_table_cell&quot;,&quot;props&quot;:{&quot;columnKey&quot;:&quot;GSXuf2yI&quot;},&quot;children&quot;:[&quot;DXTUpLgLrj4MJeu0vx6ju8&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;DXTUpLgLrj4MJeu0vx6ju8&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;DXTUpLgLrj4MJeu0vx6ju8&quot;,&quot;parentId&quot;:&quot;AROwNbDrlcOd06X4T3f4NU&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Delete the bundled &quot;,null],[&quot;Codex Computer Use.app&quot;,[[&quot;c&quot;]]],[&quot; under &quot;,null],[&quot;~/.codex/computer-use/&quot;,[[&quot;c&quot;]]],[&quot; (then &quot;,null],[&quot;chflags uchg&quot;,[[&quot;c&quot;]]],[&quot; the parent dir to stop the app's self-repair from recreating it)&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;gIy8stVib7KXkLbEuYXRfE&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;gIy8stVib7KXkLbEuYXRfE&quot;,&quot;parentId&quot;:&quot;MR3wdHuUfZbfSejCmBxApQ&quot;,&quot;type&quot;:&quot;simple_table_cell&quot;,&quot;props&quot;:{&quot;columnKey&quot;:&quot;mvhwjYQi&quot;},&quot;children&quot;:[&quot;9ISKTqsWjHl4ZrO62DFskK&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;9ISKTqsWjHl4ZrO62DFskK&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;9ISKTqsWjHl4ZrO62DFskK&quot;,&quot;parentId&quot;:&quot;gIy8stVib7KXkLbEuYXRfE&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Stops the leak&quot;,[[&quot;b&quot;]]],[&quot; (sky count stays 0, app stable). Downside: Computer Use is dead and logs &quot;,null],[&quot;Sky Computer Use service startup request failed&quot;,[[&quot;c&quot;]]],[&quot; every turn. This is the only reliable mitigation.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;B4CduVYxNrgZmvKXDIS0h2&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;B4CduVYxNrgZmvKXDIS0h2&quot;,&quot;parentId&quot;:&quot;l9uqeSDtW1VRU2CzaA04vF&quot;,&quot;type&quot;:&quot;simple_table_row&quot;,&quot;props&quot;:{},&quot;children&quot;:[&quot;JRTOlD5OJa5DTGRAhOT6dl&quot;,&quot;tOILFs2a0xhrbAw9x6LCPE&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;JRTOlD5OJa5DTGRAhOT6dl&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;JRTOlD5OJa5DTGRAhOT6dl&quot;,&quot;parentId&quot;:&quot;B4CduVYxNrgZmvKXDIS0h2&quot;,&quot;type&quot;:&quot;simple_table_cell&quot;,&quot;props&quot;:{&quot;columnKey&quot;:&quot;GSXuf2yI&quot;},&quot;children&quot;:[&quot;EXS3dcWzpAuO8R3dGit6Oo&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;EXS3dcWzpAuO8R3dGit6Oo&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;EXS3dcWzpAuO8R3dGit6Oo&quot;,&quot;parentId&quot;:&quot;JRTOlD5OJa5DTGRAhOT6dl&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Edit &quot;,null],[&quot;~/.codex/config.toml&quot;,[[&quot;c&quot;]]],[&quot; (set &quot;,null],[&quot;command = \&quot;/bin/false\&quot;&quot;,[[&quot;c&quot;]]],[&quot;, disable &quot;,null],[&quot;[mcp_servers.computer-use]&quot;,[[&quot;c&quot;]]],[&quot; / &quot;,null],[&quot;[plugins.\&quot;computer-use\&quot;]&quot;,[[&quot;c&quot;]]],[&quot;, comment the &quot;,null],[&quot;notify&quot;,[[&quot;c&quot;]]],[&quot; hook)&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;tOILFs2a0xhrbAw9x6LCPE&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;tOILFs2a0xhrbAw9x6LCPE&quot;,&quot;parentId&quot;:&quot;B4CduVYxNrgZmvKXDIS0h2&quot;,&quot;type&quot;:&quot;simple_table_cell&quot;,&quot;props&quot;:{&quot;columnKey&quot;:&quot;mvhwjYQi&quot;},&quot;children&quot;:[&quot;RfOSh20dyXYuUXbedRNrsb&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;RfOSh20dyXYuUXbedRNrsb&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;RfOSh20dyXYuUXbedRNrsb&quot;,&quot;parentId&quot;:&quot;tOILFs2a0xhrbAw9x6LCPE&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Does not stick.&quot;,[[&quot;b&quot;]]],[&quot; The app &quot;,null],[&quot;rewrites &quot;,[[&quot;b&quot;]]],[&quot;config.toml&quot;,[[&quot;b&quot;],[&quot;c&quot;]]],[&quot; on the next launch&quot;,[[&quot;b&quot;]]],[&quot; (self-healing config), restoring the &quot;,null],[&quot;notify&quot;,[[&quot;c&quot;]]],[&quot; hook and the mcp server entry — including on the newest build 26.810.52044.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;PxNqyHJ4A4Xc6G4mc0L4dF&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;PxNqyHJ4A4Xc6G4mc0L4dF&quot;,&quot;parentId&quot;:&quot;l9uqeSDtW1VRU2CzaA04vF&quot;,&quot;type&quot;:&quot;simple_table_row&quot;,&quot;props&quot;:{},&quot;children&quot;:[&quot;iJAm30Ejf4fLpGP8YN3dId&quot;,&quot;1HvMIDFMV28HabMYy6KPn9&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;iJAm30Ejf4fLpGP8YN3dId&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;iJAm30Ejf4fLpGP8YN3dId&quot;,&quot;parentId&quot;:&quot;PxNqyHJ4A4Xc6G4mc0L4dF&quot;,&quot;type&quot;:&quot;simple_table_cell&quot;,&quot;props&quot;:{&quot;columnKey&quot;:&quot;GSXuf2yI&quot;},&quot;children&quot;:[&quot;yvdpNQxkDEDVkPVbUj1X0H&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;yvdpNQxkDEDVkPVbUj1X0H&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;yvdpNQxkDEDVkPVbUj1X0H&quot;,&quot;parentId&quot;:&quot;iJAm30Ejf4fLpGP8YN3dId&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Replace / rename the &quot;,null],[&quot;SkyComputerUseService&quot;,[[&quot;c&quot;]]],[&quot; / &quot;,null],[&quot;SkyComputerUseClient&quot;,[[&quot;c&quot;]]],[&quot; binaries with a no-op&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;1HvMIDFMV28HabMYy6KPn9&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;1HvMIDFMV28HabMYy6KPn9&quot;,&quot;parentId&quot;:&quot;PxNqyHJ4A4Xc6G4mc0L4dF&quot;,&quot;type&quot;:&quot;simple_table_cell&quot;,&quot;props&quot;:{&quot;columnKey&quot;:&quot;mvhwjYQi&quot;},&quot;children&quot;:[&quot;wFohQrGPodylPfmCueuhU2&quot;],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}},&quot;wFohQrGPodylPfmCueuhU2&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;wFohQrGPodylPfmCueuhU2&quot;,&quot;parentId&quot;:&quot;1HvMIDFMV28HabMYy6KPn9&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Blocked.&quot;,[[&quot;b&quot;]]],[&quot; The bundled &quot;,null],[&quot;.app&quot;,[[&quot;c&quot;]]],[&quot; and its binaries are protected by macOS (&quot;,null],[&quot;com.apple.macl&quot;,[[&quot;c&quot;]]],[&quot; / &quot;,null],[&quot;com.apple.provenance&quot;,[[&quot;c&quot;]]],[&quot; xattrs, and a &quot;,null],[&quot;uchg&quot;,[[&quot;c&quot;]]],[&quot; immutable flag on the parent directory); &quot;,null],[&quot;xattr -d&quot;,[[&quot;c&quot;]]],[&quot; / &quot;,null],[&quot;chmod&quot;,[[&quot;c&quot;]]],[&quot; / &quot;,null],[&quot;mv&quot;,[[&quot;c&quot;]]],[&quot; / &quot;,null],[&quot;rm&quot;,[[&quot;c&quot;]]],[&quot; as a normal user are denied.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;FG2AzkXFsw0hAaMNaZqaLx&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;FG2AzkXFsw0hAaMNaZqaLx&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;FG2AzkXFsw0hAaMNaZqaLx&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;text&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Note: in &quot;,null],[&quot;config.toml&quot;,[[&quot;c&quot;]]],[&quot;, both &quot;,null],[&quot;[plugins.\&quot;computer-use@openai-bundled\&quot;]&quot;,[[&quot;c&quot;]]],[&quot; and &quot;,null],[&quot;[mcp_servers.computer-use]&quot;,[[&quot;c&quot;]]],[&quot; already show &quot;,null],[&quot;enabled = false&quot;,[[&quot;c&quot;]]],[&quot;, yet the top-level &quot;,null],[&quot;notify&quot;,[[&quot;c&quot;]]],[&quot; hook still invokes &quot;,null],[&quot;SkyComputerUseClient&quot;,[[&quot;c&quot;]]],[&quot; — so disabling those sections &quot;,null],[&quot;does not&quot;,[[&quot;b&quot;]]],[&quot; stop the spawn.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;PeZNLgDdLJoJztRfve3ufW&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;PeZNLgDdLJoJztRfve3ufW&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;PeZNLgDdLJoJztRfve3ufW&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;header3&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Requested fix / questions&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;AbAlultzriYtq51u0bY9De&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;AbAlultzriYtq51u0bY9De&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;AbAlultzriYtq51u0bY9De&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Please fix the &quot;,null],[&quot;RemoteHostedPIPContentService sendBootstrapToServiceWithProcessIdentifier:&quot;,[[&quot;c&quot;]]],[&quot; IPC path so it does not block synchronously forever (add a timeout / async handshake / proper cleanup of the spawned helper).&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;M9x5gaJI3mlod9inE47RvB&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;M9x5gaJI3mlod9inE47RvB&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;M9x5gaJI3mlod9inE47RvB&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Please stop the unbounded accumulation: reap &quot;,null],[&quot;SkyComputerUseService&quot;,[[&quot;c&quot;]]],[&quot; when its IPC is unacknowledged, and cap concurrent helpers.&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;PVv6NenbDIe7yOwynaBJ9C&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;PVv6NenbDIe7yOwynaBJ9C&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;PVv6NenbDIe7yOwynaBJ9C&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Is there a supported way to fully disable Computer Use that &quot;,null],[&quot;survives app relaunch&quot;,[[&quot;b&quot;]]],[&quot; (i.e., that the app's config self-healing will not re-enable)?&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;TxQawlKlF93rZteLNcVkma&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;TxQawlKlF93rZteLNcVkma&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;TxQawlKlF93rZteLNcVkma&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Is this specific to macOS 26 / Apple Silicon, or are Intel users affected too?&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}},{&quot;blockId&quot;:&quot;e3pA5rAfYCtHlNXvw5TUrH&quot;,&quot;blockSubtree&quot;:{&quot;block&quot;:{&quot;e3pA5rAfYCtHlNXvw5TUrH&quot;:{&quot;role&quot;:&quot;editor&quot;,&quot;value&quot;:{&quot;id&quot;:&quot;e3pA5rAfYCtHlNXvw5TUrH&quot;,&quot;parentId&quot;:&quot;&quot;,&quot;type&quot;:&quot;numbered_list&quot;,&quot;props&quot;:{&quot;title&quot;:[[&quot;Which exact build carries the fix so we can verify? (Current latest, 26.810.52044 / 6662, still reproduces.)&quot;,null]]},&quot;children&quot;:[],&quot;parentTable&quot;:&quot;block&quot;,&quot;enabled&quot;:true}}}}}]"></sc-clipboard><!--EndFragment--></BODY></HTML>

What steps can reproduce the bug?

  1. Install ChatGPT for Mac 26.810.52044 (6662) on macOS 26.6.1 (Apple Silicon).
  2. Enable the "Computer Use" feature (Settings → … → Use Computer), or have a session with Computer Use enabled.
  3. Launch the app / start a session.
  4. Observe Activity Monitor or run:

``bash
pgrep -f SkyComputerUseService | wc -l # grows unbounded
sysctl vm.loadavg # climbs to 60–150
``

  1. Within ~2 minutes the app crashes (SIGABRT). A report like ChatGPT-2026-08-18-1331…ips is produced.

Environment commands used for verification

defaults read /Applications/ChatGPT.app/Contents/Info.plist CFBundleShortVersionString   # 26.810.52044
defaults read /Applications/ChatGPT.app/Contents/Info.plist CFBundleVersion              # 6662
sw_vers -productVersion                                                              # 26.6.1
sysctl sysctl.proc_translated                                                       # 0 (native ARM-64)
pgrep -f SkyComputerUseService | wc -l
sysctl vm.loadavg

Happy to provide full crash reports, the relevant config.toml snippets, and pgrep/vm.loadavg captures to help reproduce.

What is the expected behavior?

_No response_

Additional information

_No response_

View original on GitHub ↗

6 Comments

github-actions[bot] contributor · 10 days ago

Potential duplicates detected. Please review them and close your issue if it is a duplicate.

  • #38813
  • #38841
  • #38939
  • #39110
  • #38771

Powered by Codex Action

giri1991 · 10 days ago

This is happenning to me too for the past few days, app is completely broken, is there no update on a fix?

jimmywang1994 · 9 days ago

From what I can see, there's still no fix yet. I'd give it a bit more time or try reporting it through the official channel.

jarhot1992 · 4 days ago

The crash problem is still present in the latest version. After updating to the newest release, the application continues to crash frequently and the issue remains fully reproducible.

This bug significantly impacts normal usage, as the application becomes unstable and cannot be reliably used. Please investigate the root cause based on the crash reports and prioritize a fix.

SeeTomorrow · 2 days ago

Reproduced again on a substantially newer desktop build: ChatGPT/Codex 26.820.60940 (build 7119). The issue is still present.

Environment:

  • macOS 26.6.1 (25G76)
  • Apple Silicon (Darwin 25.6.0 arm64 arm)
  • App launched normally and was left idle; Computer Use was not manually invoked

Fresh crash captured on 2026-08-26:

  • Launch: 10:44:22
  • Crash: 10:46:19 (~117 seconds after launch)
  • EXC_CRASH (SIGABRT) / Abort trap: 6
  • 323 total threads
  • 184 threads named computer-use
  • 64 threads blocked in RemoteHostedPIPContentService sendBootstrapToServiceWithProcessIdentifier:rendezvousPort:attempt:AESendMessage
  • Crash report records Dispatch Thread Soft Limit: 64
  • Faulting thread: V8Worker, ending in node::OOMErrorHandler(...)abort()

This is the same signature reported here, now confirmed on build 7119. It is not limited to the earlier 26.810 builds and still makes the desktop app crash shortly after a clean/idle launch.

I have retained the full .ips report and can provide a redacted copy if maintainers need it. Please prioritize a helper-spawn cap/backoff and a fix for the synchronous bootstrap path.

Quisharoo · 2 days ago

Fresh local confirmation on ChatGPT 26.820.60940 (build 7119), macOS 26.6.2 (25G83), native arm64 (Mac17,9). DiagnosticReport ChatGPT-2026-08-26-064754.ips: EXC_BREAKPOINT/SIGTRAP in a triggered computer-use worker during V8 isolate creation; 64-thread soft limit; multiple workers blocked in RemoteHostedPIPContentService sendBootstrapToServiceWithProcessIdentifier:rendezvousPort:attempt:AESendMessage. This reproduces the same runaway Computer Use bootstrap/crash family on the current build. Full report is retained locally and can be supplied privately if maintainers request it.