@dexlyai/dexly 0.1.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 +61 -0
- package/dist/cli.js +1404 -0
- package/dist/host.js +859 -0
- package/package.json +43 -0
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Dexly Companion
|
|
2
|
+
|
|
3
|
+
Dexly Companion is the local native-messaging bridge that connects the Dexly Chrome extension to a local Codex app-server on macOS.
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
- macOS
|
|
8
|
+
- Google Chrome
|
|
9
|
+
- Node.js 20+
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx -y @dexlyai/dexly install
|
|
15
|
+
npx -y @dexlyai/dexly doctor
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Alternative global install:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm i -g @dexlyai/dexly
|
|
22
|
+
dexly install
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Update
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx -y @dexlyai/dexly upgrade
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Local Development
|
|
32
|
+
|
|
33
|
+
From the Dexly workspace, developers can use these shell entrypoints:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
bash ../DexlyProtocol/scripts/build-protocol.sh
|
|
37
|
+
bash scripts/dev-watch-and-install.sh
|
|
38
|
+
bash scripts/build-production.sh
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Commands
|
|
42
|
+
|
|
43
|
+
- `install`: install or repair the companion, launcher, and Chrome native-host manifest
|
|
44
|
+
- `doctor`: verify the install layout, launcher, manifest, and local Codex availability
|
|
45
|
+
- `upgrade`: install a newer companion version and repoint the active install
|
|
46
|
+
- `rollback`: reactivate the previous known-good companion version
|
|
47
|
+
- `install-codex`: install Codex through npm using the companion's captured tool paths
|
|
48
|
+
- `host`: run the native host on stdin/stdout
|
|
49
|
+
- `version`: print the companion package version
|
|
50
|
+
|
|
51
|
+
## Codex
|
|
52
|
+
|
|
53
|
+
Dexly Companion does not silently install Codex during companion install. If Codex is missing, Dexly prompts from the extension after companion health succeeds.
|
|
54
|
+
|
|
55
|
+
Manual Codex install:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
npm install -g @openai/codex
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
OpenAI Codex CLI docs: <https://help.openai.com/en/articles/11096431-openai-codex-ci-getting-started>
|