mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-07-12 21:02:17 +02:00
code_agent_run failed with a misleading "spawn <Electron> ENOENT" that
read as "Codex isn't installed". Two stacked causes:
1. cwd wasn't expanded/validated: a `~` or non-existent path was passed
straight to child_process.spawn, which reports ENOENT against the
command (Electron) rather than the missing directory. Now expandHome +
resolve + existence-check with a clear error.
2. Apple revoked the signing cert on the pinned @openai/codex@0.128.0, so
macOS Gatekeeper trashed the binary on launch and the ACP adapter died
mid-handshake. Bump the ACP stack off the revoked build:
codex-acp 0.0.44 -> 1.1.0, claude-agent-acp 0.39 -> 0.55, sdk 0.22 ->
1.1, regen engine-manifest (codex 0.142.5 / claude 0.3.198). Removed the
two now-obsolete patches (contextCompaction upstreamed; the codex
windowsHide patch targeted bin/codex.js, which we bypass via CODEX_PATH).
Bump fallout handled:
- client.ts setModel: sdk 1.x dropped unstable_setSessionModel; model is now
a config option -> setSessionConfigOption({configId:'model'}).
- engine-provisioner: codex 0.142 moved its binary (codex/ -> bin/) and rg
(path/ -> codex-path/); probe both layouts.
- pnpm override vscode-jsonrpc to 8.2.0: codex-acp 1.1 pulls jsonrpc 9.x
whose restrictive exports break langium's deep import in the renderer
(blank screen). codex-acp is the only 9.x consumer and works on 8.x
(handshake verified), so pin the workspace to 8.x.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
29 lines
403 B
YAML
29 lines
403 B
YAML
packages:
|
|
- apps/*
|
|
- packages/*
|
|
|
|
allowBuilds:
|
|
core-js: true
|
|
electron: true
|
|
electron-winstaller: true
|
|
esbuild: true
|
|
fs-xattr: true
|
|
macos-alias: true
|
|
node-pty: true
|
|
protobufjs: true
|
|
|
|
overrides:
|
|
vscode-jsonrpc: 8.2.0
|
|
|
|
catalog:
|
|
vitest: 4.1.7
|
|
|
|
onlyBuiltDependencies:
|
|
- baileys
|
|
- core-js
|
|
- electron
|
|
- electron-winstaller
|
|
- esbuild
|
|
- fs-xattr
|
|
- macos-alias
|
|
- protobufjs
|