@codexhost/cli-linux-arm64 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/THIRD_PARTY_NOTICES.txt +4 -0
- package/app/codexhost-distribution.json +1 -1
- package/app/desktop-controller.mjs +9 -1
- package/app/host-runtime.mjs +12377 -1352
- package/app/renderer-extension.js +5993 -5255
- package/bin/codexhost +0 -0
- package/libexec/codexhost-shim +0 -0
- package/libexec/codexhost-updater +0 -0
- package/licenses/OpenCode-SDK-LICENSE.txt +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Run Pi and Claude Code as first-class external harnesses inside Codex Desktop.
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g @codexhost/cli@0.4.
|
|
10
|
+
npm install -g @codexhost/cli@0.4.1
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Do not install this package directly. npm selects it through the optional dependencies of `@codexhost/cli`.
|
|
@@ -26,6 +26,7 @@ codexhost remote start
|
|
|
26
26
|
codexhost remote stop
|
|
27
27
|
codexhost remote status
|
|
28
28
|
codexhost remote uninstall
|
|
29
|
+
codexhost broker status
|
|
29
30
|
```
|
|
30
31
|
|
|
31
32
|
The `codexhost` command launches the packaged Rust launcher with:
|
|
@@ -43,5 +44,6 @@ The `codexhost` command launches the packaged Rust launcher with:
|
|
|
43
44
|
## Notes
|
|
44
45
|
|
|
45
46
|
- This npm package does **not** embed a private Node.js runtime.
|
|
47
|
+
- On macOS, `remote install` manages the current-user Aqua Harness broker; it never asks for a Keychain password or copies Claude credentials.
|
|
46
48
|
- Installer packages (DMG/EXE) remain the zero-dependency desktop distribution path.
|
|
47
49
|
- Prefer `npm install -g @codexhost/cli` over installing the monorepo root.
|
package/THIRD_PARTY_NOTICES.txt
CHANGED
|
@@ -12,6 +12,10 @@ License text: licenses/Anthropic-SDK-LICENSE.txt
|
|
|
12
12
|
License: MIT
|
|
13
13
|
License text: licenses/MCP-SDK-LICENSE.txt
|
|
14
14
|
|
|
15
|
+
@opencode-ai/sdk 1.18.25
|
|
16
|
+
License: MIT
|
|
17
|
+
License text: licenses/OpenCode-SDK-LICENSE.txt
|
|
18
|
+
|
|
15
19
|
diff 8.0.2
|
|
16
20
|
License: BSD-3-Clause
|
|
17
21
|
License text: licenses/diff-LICENSE.txt
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"schemaVersion":1,"version":"0.4.
|
|
1
|
+
{"schemaVersion":1,"version":"0.4.1","distribution":"npm","target":"linux-arm64"}
|
|
@@ -1791,7 +1791,15 @@ async function runDesktopController(options, signal, dependencies = defaultDepen
|
|
|
1791
1791
|
inspectorEndpoint: options.inspectorEndpoint,
|
|
1792
1792
|
rendererSource: `${configuration}
|
|
1793
1793
|
${rendererSource}`,
|
|
1794
|
-
enabledAgents: [
|
|
1794
|
+
enabledAgents: [
|
|
1795
|
+
"codex",
|
|
1796
|
+
"pi",
|
|
1797
|
+
"claude-code",
|
|
1798
|
+
"deepseek-harness",
|
|
1799
|
+
"opencode",
|
|
1800
|
+
"grok",
|
|
1801
|
+
"omp"
|
|
1802
|
+
],
|
|
1795
1803
|
timeoutMs: PRODUCTION_INSTALL_TIMEOUT_MS
|
|
1796
1804
|
},
|
|
1797
1805
|
dependencies
|