clavue 8.8.94 → 8.8.97
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 +7 -7
- package/dist/cli.js +1827 -1816
- package/dist/openai-responses-adapter.js +148 -7
- package/dist/provider-setup.js +1 -1
- package/install.sh +0 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.8.
|
|
1
|
+
# Clavue v8.8.97
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -57,15 +57,15 @@ npx -y clavue
|
|
|
57
57
|
Run a specific version with `npx`:
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
npx -y clavue@8.8.
|
|
61
|
-
npx -y clavue@8.8.
|
|
60
|
+
npx -y clavue@8.8.97 --version
|
|
61
|
+
npx -y clavue@8.8.97
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
67
|
npm install -g clavue
|
|
68
|
-
clavue
|
|
68
|
+
clavue --version
|
|
69
69
|
clavue
|
|
70
70
|
```
|
|
71
71
|
|
|
@@ -78,7 +78,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
78
78
|
Install a specific version globally:
|
|
79
79
|
|
|
80
80
|
```bash
|
|
81
|
-
curl -fsSL https://unpkg.com/clavue@8.8.
|
|
81
|
+
curl -fsSL https://unpkg.com/clavue@8.8.97/install.sh | bash -s -- 8.8.97
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
## Quick Start: Custom API
|
|
@@ -167,7 +167,7 @@ Version check:
|
|
|
167
167
|
```bash
|
|
168
168
|
clavue --version
|
|
169
169
|
npx -y clavue --version
|
|
170
|
-
npx -y clavue@8.8.
|
|
170
|
+
npx -y clavue@8.8.97 --version
|
|
171
171
|
# available after a global install and launcher setup
|
|
172
172
|
clavue --version
|
|
173
173
|
```
|
|
@@ -205,7 +205,7 @@ clavue setup-token
|
|
|
205
205
|
/provider clear
|
|
206
206
|
```
|
|
207
207
|
|
|
208
|
-
`/mao` is the preferred Codex surface. It reuses the active clavue provider profile directly, verifies `/v1/responses` reachability on the current route, and avoids a separate global Codex setup flow. `/codex` remains a compatibility alias.
|
|
208
|
+
`/mao` is the preferred Codex surface. It reuses the active clavue provider profile directly, verifies `/v1/responses` reachability on the current route, and avoids a separate global Codex setup flow. `/codex` remains a compatibility alias. Mao jobs use the bundled Codex `exec` runtime by default; `CLAVUE_MAO_CODEX_RUNTIME=app-server` is recognized for setup diagnostics only in this release.
|
|
209
209
|
|
|
210
210
|
```text
|
|
211
211
|
/mao setup
|