@codexhost/cli-linux-arm64 0.3.5 → 0.4.0
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 +1 -1
- package/app/codexhost-distribution.json +1 -1
- package/app/desktop-controller.mjs +3 -0
- package/app/host-runtime.mjs +6858 -2707
- package/app/renderer-extension.js +1484 -681
- package/bin/codexhost +0 -0
- package/libexec/codexhost-shim +0 -0
- package/libexec/codexhost-updater +0 -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.
|
|
10
|
+
npm install -g @codexhost/cli@0.4.0
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Do not install this package directly. npm selects it through the optional dependencies of `@codexhost/cli`.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"schemaVersion":1,"version":"0.
|
|
1
|
+
{"schemaVersion":1,"version":"0.4.0","distribution":"npm","target":"linux-arm64"}
|
|
@@ -985,6 +985,9 @@ function installDraftPrewarmPolicyBridge(manager, bridge, hostId, target, prewar
|
|
|
985
985
|
owns(candidateManager, candidate, candidateHostId, candidatePrewarmedThreadManager) {
|
|
986
986
|
return candidateManager === manager && candidate === bridge && candidateHostId === hostId && candidatePrewarmedThreadManager === prewarmedThreadManager;
|
|
987
987
|
},
|
|
988
|
+
requestTarget() {
|
|
989
|
+
return manager;
|
|
990
|
+
},
|
|
988
991
|
select(model) {
|
|
989
992
|
if (model !== null && (typeof model !== "string" || !model.startsWith("codexhost/"))) {
|
|
990
993
|
throw new Error("Draft route Model must be a codexhost transport carrier");
|