clavue 8.17.4 → 8.19.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 +5 -5
- package/dist/cli.js +38 -28
- package/dist/mao-command.js +1 -1
- package/dist/openai-responses-adapter.js +1 -1
- package/dist/provider-setup.js +1 -1
- package/docs/clavue-v8.18.0-release-notes.md +55 -0
- package/docs/clavue-v8.18.0-website-update.md +43 -0
- package/docs/clavue-v8.19.0-release-notes.md +56 -0
- package/docs/clavue-v8.19.0-website-update.md +37 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.
|
|
1
|
+
# Clavue v8.19.0
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -64,8 +64,8 @@ npx -y clavue
|
|
|
64
64
|
Run a specific version with `npx`:
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
npx -y clavue@8.
|
|
68
|
-
npx -y clavue@8.
|
|
67
|
+
npx -y clavue@8.19.0 --version
|
|
68
|
+
npx -y clavue@8.19.0
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -85,7 +85,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
85
85
|
Install a specific version globally:
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
|
-
curl -fsSL https://unpkg.com/clavue@8.
|
|
88
|
+
curl -fsSL https://unpkg.com/clavue@8.19.0/install.sh | bash -s -- 8.19.0
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -226,7 +226,7 @@ Version check:
|
|
|
226
226
|
```bash
|
|
227
227
|
clavue --version
|
|
228
228
|
npx -y clavue --version
|
|
229
|
-
npx -y clavue@8.
|
|
229
|
+
npx -y clavue@8.19.0 --version
|
|
230
230
|
# available after a global install and launcher setup
|
|
231
231
|
clavue --version
|
|
232
232
|
```
|