@codexhost/cli-win32-x64 0.0.0-test.20260804.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 +42 -0
- package/THIRD_PARTY_NOTICES.txt +25 -0
- package/app/desktop-controller.mjs +1297 -0
- package/app/host-runtime.mjs +51976 -0
- package/app/renderer-extension.js +19661 -0
- package/bin/codexhost.exe +0 -0
- package/libexec/codexhost-shim.exe +0 -0
- package/licenses/Anthropic-SDK-LICENSE.txt +8 -0
- package/licenses/Claude-Agent-SDK-LICENSE.md +1 -0
- package/licenses/MCP-SDK-LICENSE.txt +21 -0
- package/licenses/diff-LICENSE.txt +29 -0
- package/licenses/lucide-LICENSE.txt +43 -0
- package/licenses/zod-LICENSE.txt +21 -0
- package/package.json +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# @codexhost/cli-win32-x64
|
|
2
|
+
|
|
3
|
+
Run Pi and Claude Code as first-class external harnesses inside Codex Desktop.
|
|
4
|
+
|
|
5
|
+
> Internal platform package for `@codexhost/cli`, built for `windows-x64`.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @codexhost/cli@0.0.0-test.20260804.1
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Do not install this package directly. npm selects it through the optional dependencies of `@codexhost/cli`.
|
|
14
|
+
|
|
15
|
+
This package is platform-specific (`os=win32`, `cpu=x64`).
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
codexhost
|
|
21
|
+
codexhost inspect
|
|
22
|
+
codexhost launch --agent pi
|
|
23
|
+
codexhost launch --agent codex
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
The `codexhost` command launches the packaged Rust launcher with:
|
|
27
|
+
|
|
28
|
+
- the current Node.js executable as Host Runtime
|
|
29
|
+
- packaged `host-runtime`, Desktop Controller, Renderer, and Shim binaries
|
|
30
|
+
|
|
31
|
+
## Requirements
|
|
32
|
+
|
|
33
|
+
- Node.js 22 or 24 (Node 20 and older are not supported)
|
|
34
|
+
- Official Codex Desktop for macOS or Windows
|
|
35
|
+
- Pi on `PATH` when using the Pi agent
|
|
36
|
+
- Claude Code installed when using the Claude Code adapter
|
|
37
|
+
|
|
38
|
+
## Notes
|
|
39
|
+
|
|
40
|
+
- This npm package does **not** embed a private Node.js runtime.
|
|
41
|
+
- Installer packages (DMG/MSI) remain the zero-dependency desktop distribution path.
|
|
42
|
+
- Prefer `npm install -g @codexhost/cli` over installing the monorepo root.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
codexhost npm package third-party notices
|
|
2
|
+
|
|
3
|
+
@anthropic-ai/claude-agent-sdk 0.3.220
|
|
4
|
+
License: SEE LICENSE IN README.md
|
|
5
|
+
License text: licenses/Claude-Agent-SDK-LICENSE.md
|
|
6
|
+
|
|
7
|
+
@anthropic-ai/sdk 0.115.0
|
|
8
|
+
License: MIT
|
|
9
|
+
License text: licenses/Anthropic-SDK-LICENSE.txt
|
|
10
|
+
|
|
11
|
+
@modelcontextprotocol/sdk 1.30.0
|
|
12
|
+
License: MIT
|
|
13
|
+
License text: licenses/MCP-SDK-LICENSE.txt
|
|
14
|
+
|
|
15
|
+
diff 8.0.2
|
|
16
|
+
License: BSD-3-Clause
|
|
17
|
+
License text: licenses/diff-LICENSE.txt
|
|
18
|
+
|
|
19
|
+
lucide 1.28.0
|
|
20
|
+
License: ISC
|
|
21
|
+
License text: licenses/lucide-LICENSE.txt
|
|
22
|
+
|
|
23
|
+
zod 4.4.3
|
|
24
|
+
License: MIT
|
|
25
|
+
License text: licenses/zod-LICENSE.txt
|