@codexhost/cli 0.3.1 → 0.3.3
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/bin/codexhost.js +2 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Run Pi and Claude Code as first-class external harnesses inside Codex Desktop.
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g @codexhost/cli@0.3.
|
|
8
|
+
npm install -g @codexhost/cli@0.3.3
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
npm automatically installs the matching macOS, Windows, or Linux platform package. Node.js 22 or 24 and the official ChatGPT/Codex Desktop are required.
|
package/bin/codexhost.js
CHANGED
|
@@ -6,7 +6,7 @@ import { homedir } from "node:os";
|
|
|
6
6
|
import path from "node:path";
|
|
7
7
|
import { fileURLToPath } from "node:url";
|
|
8
8
|
|
|
9
|
-
const version = "0.3.
|
|
9
|
+
const version = "0.3.3";
|
|
10
10
|
const userArguments = process.argv.slice(2);
|
|
11
11
|
const startupTraceStartedAt = Date.now();
|
|
12
12
|
function startupTrace(stage) {
|
|
@@ -206,7 +206,7 @@ if (userArguments.length === 0) {
|
|
|
206
206
|
" codexhost --version",
|
|
207
207
|
" codexhost inspect",
|
|
208
208
|
" codexhost launch [launcher options]",
|
|
209
|
-
" codexhost remote install|status|uninstall",
|
|
209
|
+
" codexhost remote install|start|stop|status|uninstall",
|
|
210
210
|
"",
|
|
211
211
|
"This npm package uses the current Node.js runtime and the packaged",
|
|
212
212
|
"Rust launcher/shim. Codex Desktop must already be installed.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codexhost/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Run Pi and Claude Code as first-class external harnesses inside Codex Desktop.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"node": ">=22"
|
|
15
15
|
},
|
|
16
16
|
"optionalDependencies": {
|
|
17
|
-
"@codexhost/cli-darwin-arm64": "0.3.
|
|
18
|
-
"@codexhost/cli-darwin-x64": "0.3.
|
|
19
|
-
"@codexhost/cli-win32-x64": "0.3.
|
|
20
|
-
"@codexhost/cli-win32-arm64": "0.3.
|
|
21
|
-
"@codexhost/cli-linux-x64": "0.3.
|
|
17
|
+
"@codexhost/cli-darwin-arm64": "0.3.3",
|
|
18
|
+
"@codexhost/cli-darwin-x64": "0.3.3",
|
|
19
|
+
"@codexhost/cli-win32-x64": "0.3.3",
|
|
20
|
+
"@codexhost/cli-win32-arm64": "0.3.3",
|
|
21
|
+
"@codexhost/cli-linux-x64": "0.3.3"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
24
|
"codex",
|