iclavue 10.11.1 → 10.11.3
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 +25 -5
- package/dist/clavue.js +1 -1
- package/dist/cli.js +83 -66
- package/dist/mao-command.js +1 -1
- package/dist/native/clavue-pager-darwin-arm64 +0 -0
- package/dist/native/manifest.json +8 -5
- package/dist/openai-responses-adapter.js +11 -8
- package/dist/provider-setup.js +1 -1
- package/install.sh +71 -51
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v10.11.
|
|
1
|
+
# Clavue v10.11.3
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -8,6 +8,26 @@
|
|
|
8
8
|
> **Launch commands (same engine):** **`clavue`** · **`agent`** · **`ai`** · **`chat`** (also `iclavue`).
|
|
9
9
|
> The older unscoped package name `clavue` is under an npm security hold and must not be used.
|
|
10
10
|
|
|
11
|
+
|
|
12
|
+
## Install (recommended)
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
curl -fsSL https://www.clavue.com/cli/install.sh | bash
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Or pin a version:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 10.11.3
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Classic npm:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
npm install -g iclavue@10.11.3
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
|
|
11
31
|
## Product Philosophy
|
|
12
32
|
|
|
13
33
|
Clavue is built around a simple operating model: the user owns the workflow, the CLI owns the execution loop, and providers are replaceable routes.
|
|
@@ -69,8 +89,8 @@ npx -y iclavue
|
|
|
69
89
|
Run a specific version with `npx`:
|
|
70
90
|
|
|
71
91
|
```bash
|
|
72
|
-
npx -y iclavue@10.11.
|
|
73
|
-
npx -y iclavue@10.11.
|
|
92
|
+
npx -y iclavue@10.11.3 --version
|
|
93
|
+
npx -y iclavue@10.11.3
|
|
74
94
|
```
|
|
75
95
|
|
|
76
96
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -90,7 +110,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
|
|
|
90
110
|
Install a specific version globally:
|
|
91
111
|
|
|
92
112
|
```bash
|
|
93
|
-
curl -fsSL https://unpkg.com/iclavue@10.11.
|
|
113
|
+
curl -fsSL https://unpkg.com/iclavue@10.11.3/install.sh | bash -s -- 10.11.3
|
|
94
114
|
```
|
|
95
115
|
|
|
96
116
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -239,7 +259,7 @@ Version check:
|
|
|
239
259
|
```bash
|
|
240
260
|
clavue --version
|
|
241
261
|
npx -y iclavue --version
|
|
242
|
-
npx -y iclavue@10.11.
|
|
262
|
+
npx -y iclavue@10.11.3 --version
|
|
243
263
|
# available after a global install and launcher setup
|
|
244
264
|
clavue --version
|
|
245
265
|
```
|