@liberseek/boft-cli-win32-arm64 0.4.4
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 +49 -0
- package/THIRD_PARTY_NOTICES.txt +33 -0
- package/app/codexhost-distribution.json +1 -0
- package/app/desktop-controller.mjs +1437 -0
- package/app/host-runtime.mjs +94132 -0
- package/app/renderer-extension.js +25560 -0
- package/bin/codexhost.exe +0 -0
- package/libexec/codexhost-shim.exe +0 -0
- package/libexec/codexhost-updater.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/OpenCode-SDK-LICENSE.txt +24 -0
- package/licenses/diff-LICENSE.txt +29 -0
- package/licenses/lucide-LICENSE.txt +43 -0
- package/licenses/ws-LICENSE.txt +20 -0
- package/licenses/zod-LICENSE.txt +21 -0
- package/package.json +42 -0
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# @liberseek/boft-cli-win32-arm64
|
|
2
|
+
|
|
3
|
+
BOFT CLI runs Pi and other external harnesses inside Codex Desktop.
|
|
4
|
+
|
|
5
|
+
> Internal platform package for `@liberseek/boft-cli`, built for `windows-arm64`.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @liberseek/boft-cli@0.4.4
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Do not install this package directly. npm selects it through the optional dependencies of `@liberseek/boft-cli`.
|
|
14
|
+
|
|
15
|
+
This package is platform-specific (`os=win32`, `cpu=arm64`).
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
codexhost
|
|
21
|
+
codexhost --version
|
|
22
|
+
codexhost inspect
|
|
23
|
+
codexhost launch
|
|
24
|
+
codexhost remote install
|
|
25
|
+
codexhost remote start
|
|
26
|
+
codexhost remote stop
|
|
27
|
+
codexhost remote status
|
|
28
|
+
codexhost remote uninstall
|
|
29
|
+
codexhost broker status
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
The `codexhost` command launches the packaged Rust launcher with:
|
|
33
|
+
|
|
34
|
+
- the current Node.js executable as Host Runtime
|
|
35
|
+
- packaged `host-runtime`, Desktop Controller, Renderer, and Shim binaries
|
|
36
|
+
|
|
37
|
+
## Requirements
|
|
38
|
+
|
|
39
|
+
- Node.js 22 or 24 (Node 20 and older are not supported)
|
|
40
|
+
- Official ChatGPT/Codex Desktop for macOS, Windows, or Linux
|
|
41
|
+
- Pi on `PATH` when using the Pi agent
|
|
42
|
+
- Claude Code installed when using the Claude Code adapter
|
|
43
|
+
|
|
44
|
+
## Notes
|
|
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.
|
|
48
|
+
- Installer packages (DMG/EXE) remain the zero-dependency desktop distribution path.
|
|
49
|
+
- Prefer `npm install -g @liberseek/boft-cli` over installing the monorepo root.
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
@opencode-ai/sdk 1.18.25
|
|
16
|
+
License: MIT
|
|
17
|
+
License text: licenses/OpenCode-SDK-LICENSE.txt
|
|
18
|
+
|
|
19
|
+
diff 8.0.2
|
|
20
|
+
License: BSD-3-Clause
|
|
21
|
+
License text: licenses/diff-LICENSE.txt
|
|
22
|
+
|
|
23
|
+
lucide 1.28.0
|
|
24
|
+
License: ISC
|
|
25
|
+
License text: licenses/lucide-LICENSE.txt
|
|
26
|
+
|
|
27
|
+
ws 8.21.3
|
|
28
|
+
License: MIT
|
|
29
|
+
License text: licenses/ws-LICENSE.txt
|
|
30
|
+
|
|
31
|
+
zod 4.4.3
|
|
32
|
+
License: MIT
|
|
33
|
+
License text: licenses/zod-LICENSE.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"schemaVersion":1,"version":"0.4.4","distribution":"npm","target":"windows-arm64"}
|