@chinhae/codex-connect-linux-arm64 0.11.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 +49 -0
- package/THIRD_PARTY_NOTICES.txt +49 -0
- package/app/codexhost-distribution.json +1 -0
- package/app/desktop-controller.mjs +1704 -0
- package/app/host-runtime.mjs +38189 -0
- package/app/plugins/antigravity/assets/icon.svg +1 -0
- package/app/plugins/antigravity/manifest.json +12 -0
- package/app/plugins/antigravity/plugin.mjs +19508 -0
- package/app/plugins/claude-code/assets/icon.svg +3 -0
- package/app/plugins/claude-code/manifest.json +12 -0
- package/app/plugins/claude-code/plugin.mjs +48709 -0
- package/app/plugins/codebuddy/assets/icon.svg +1 -0
- package/app/plugins/codebuddy/manifest.json +13 -0
- package/app/plugins/codebuddy/plugin.mjs +24584 -0
- package/app/plugins/cursor-cli/assets/icon.svg +1 -0
- package/app/plugins/cursor-cli/manifest.json +13 -0
- package/app/plugins/cursor-cli/plugin.mjs +47697 -0
- package/app/plugins/deepseek-harness/manifest.json +11 -0
- package/app/plugins/deepseek-harness/plugin.mjs +32044 -0
- package/app/plugins/enabled.json +20 -0
- package/app/plugins/grok/assets/icon.png +0 -0
- package/app/plugins/grok/manifest.json +12 -0
- package/app/plugins/grok/plugin.mjs +25032 -0
- package/app/plugins/hermes/manifest.json +11 -0
- package/app/plugins/hermes/plugin.mjs +24129 -0
- package/app/plugins/kimi-code/manifest.json +11 -0
- package/app/plugins/kimi-code/plugin.mjs +24226 -0
- package/app/plugins/kiro-cli/assets/icon.svg +5 -0
- package/app/plugins/kiro-cli/manifest.json +12 -0
- package/app/plugins/kiro-cli/plugin.mjs +23628 -0
- package/app/plugins/omp/assets/icon.svg +14 -0
- package/app/plugins/omp/manifest.json +12 -0
- package/app/plugins/omp/plugin.mjs +20632 -0
- package/app/plugins/opencode/assets/icon.png +0 -0
- package/app/plugins/opencode/manifest.json +12 -0
- package/app/plugins/opencode/plugin.mjs +23961 -0
- package/app/plugins/pi/assets/icon.svg +4 -0
- package/app/plugins/pi/manifest.json +12 -0
- package/app/plugins/pi/plugin.mjs +21558 -0
- package/app/plugins/qoder/assets/icon.svg +1 -0
- package/app/plugins/qoder/manifest.json +12 -0
- package/app/plugins/qoder/plugin.mjs +52414 -0
- package/app/plugins/qoder-cn/assets/icon.svg +1 -0
- package/app/plugins/qoder-cn/manifest.json +12 -0
- package/app/plugins/qoder-cn/plugin.mjs +52412 -0
- package/app/plugins/workbuddy/assets/icon.svg +29 -0
- package/app/plugins/workbuddy/manifest.json +14 -0
- package/app/plugins/workbuddy/plugin.mjs +24970 -0
- package/app/renderer-extension.js +33953 -0
- package/bin/codexhost +0 -0
- package/libexec/codexhost-shim +0 -0
- package/libexec/codexhost-updater +0 -0
- package/licenses/Agent-Client-Protocol-SDK-LICENSE.txt +191 -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/Qoder-Agent-SDK-LICENSE.txt +7 -0
- package/licenses/QoderCN-Agent-SDK-LICENSE.txt +7 -0
- package/licenses/diff-LICENSE.txt +29 -0
- package/licenses/lucide-LICENSE.txt +43 -0
- package/licenses/tailwindcss-LICENSE.txt +21 -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
|
+
# @chinhae/codex-connect-linux-arm64
|
|
2
|
+
|
|
3
|
+
Run Pi and Claude Code as first-class external harnesses inside Codex Desktop.
|
|
4
|
+
|
|
5
|
+
> Internal platform package for `@chinhae/codex-connect`, built for `linux-arm64`.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @chinhae/codex-connect@0.11.0
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Do not install this package directly. npm selects it through the optional dependencies of `@chinhae/codex-connect`.
|
|
14
|
+
|
|
15
|
+
This package is platform-specific (`os=linux`, `cpu=arm64`).
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
codex-connect
|
|
21
|
+
codex-connect --version
|
|
22
|
+
codex-connect inspect
|
|
23
|
+
codex-connect launch
|
|
24
|
+
codex-connect remote install
|
|
25
|
+
codex-connect remote start
|
|
26
|
+
codex-connect remote stop
|
|
27
|
+
codex-connect remote status
|
|
28
|
+
codex-connect remote uninstall
|
|
29
|
+
codex-connect broker status
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
The `codex-connect` 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 @chinhae/codex-connect` over installing the monorepo root.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Codex Connect npm package third-party notices
|
|
2
|
+
|
|
3
|
+
@agentclientprotocol/sdk 1.3.0
|
|
4
|
+
License: Apache-2.0
|
|
5
|
+
License text: licenses/Agent-Client-Protocol-SDK-LICENSE.txt
|
|
6
|
+
|
|
7
|
+
@anthropic-ai/claude-agent-sdk 0.3.220
|
|
8
|
+
License: SEE LICENSE IN README.md
|
|
9
|
+
License text: licenses/Claude-Agent-SDK-LICENSE.md
|
|
10
|
+
|
|
11
|
+
@anthropic-ai/sdk 0.115.0
|
|
12
|
+
License: MIT
|
|
13
|
+
License text: licenses/Anthropic-SDK-LICENSE.txt
|
|
14
|
+
|
|
15
|
+
@modelcontextprotocol/sdk 1.30.0
|
|
16
|
+
License: MIT
|
|
17
|
+
License text: licenses/MCP-SDK-LICENSE.txt
|
|
18
|
+
|
|
19
|
+
@opencode-ai/sdk 1.18.25
|
|
20
|
+
License: MIT
|
|
21
|
+
License text: licenses/OpenCode-SDK-LICENSE.txt
|
|
22
|
+
|
|
23
|
+
@qoder-ai/qoder-agent-sdk 1.0.39
|
|
24
|
+
License: SEE LICENSE IN LICENSE
|
|
25
|
+
License text: licenses/Qoder-Agent-SDK-LICENSE.txt
|
|
26
|
+
|
|
27
|
+
@qodercn-ai/qodercn-agent-sdk 1.0.39
|
|
28
|
+
License: SEE LICENSE IN LICENSE
|
|
29
|
+
License text: licenses/QoderCN-Agent-SDK-LICENSE.txt
|
|
30
|
+
|
|
31
|
+
diff 8.0.2
|
|
32
|
+
License: BSD-3-Clause
|
|
33
|
+
License text: licenses/diff-LICENSE.txt
|
|
34
|
+
|
|
35
|
+
lucide 1.28.0
|
|
36
|
+
License: ISC
|
|
37
|
+
License text: licenses/lucide-LICENSE.txt
|
|
38
|
+
|
|
39
|
+
tailwindcss 4.3.3
|
|
40
|
+
License: MIT
|
|
41
|
+
License text: licenses/tailwindcss-LICENSE.txt
|
|
42
|
+
|
|
43
|
+
ws 8.21.3
|
|
44
|
+
License: MIT
|
|
45
|
+
License text: licenses/ws-LICENSE.txt
|
|
46
|
+
|
|
47
|
+
zod 4.4.3
|
|
48
|
+
License: MIT
|
|
49
|
+
License text: licenses/zod-LICENSE.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"schemaVersion":1,"version":"0.11.0","distribution":"npm","target":"linux-arm64"}
|