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>
47 lines
No EOL
1.6 KiB
JSON
47 lines
No EOL
1.6 KiB
JSON
{
|
|
"name": "rowboat",
|
|
"productName": "Rowboat",
|
|
"description": "AI coworker with memory",
|
|
"type": "module",
|
|
"version": "0.1.0",
|
|
"main": ".package/dist/main.cjs",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"build": "rm -rf dist && tsc && node bundle.mjs",
|
|
"package": "electron-forge package",
|
|
"make": "electron-forge make"
|
|
},
|
|
"dependencies": {
|
|
"@agentclientprotocol/claude-agent-acp": "^0.55.0",
|
|
"@agentclientprotocol/codex-acp": "^1.1.0",
|
|
"@x/core": "workspace:*",
|
|
"@x/shared": "workspace:*",
|
|
"agent-slack": "0.9.3",
|
|
"chokidar": "^4.0.3",
|
|
"electron-squirrel-startup": "^1.0.1",
|
|
"html-to-docx": "^1.8.0",
|
|
"mammoth": "^1.11.0",
|
|
"node-pty": "^1.1.0",
|
|
"papaparse": "^5.5.3",
|
|
"pdf-parse": "^2.4.5",
|
|
"update-electron-app": "^3.1.2",
|
|
"xlsx": "^0.18.5",
|
|
"zod": "^4.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@electron-forge/cli": "^7.10.2",
|
|
"@electron-forge/maker-base": "^7.11.1",
|
|
"@electron-forge/maker-deb": "^7.11.1",
|
|
"@electron-forge/maker-dmg": "^7.10.2",
|
|
"@electron-forge/maker-rpm": "^7.11.1",
|
|
"@electron-forge/maker-squirrel": "^7.10.2",
|
|
"@electron-forge/maker-zip": "^7.10.2",
|
|
"@electron-forge/publisher-github": "^7.11.1",
|
|
"@electron-forge/publisher-s3": "^7.10.2",
|
|
"@types/electron-squirrel-startup": "^1.0.2",
|
|
"@types/node": "^25.0.3",
|
|
"electron": "^39.2.7",
|
|
"esbuild": "^0.24.2"
|
|
}
|
|
} |