iclavue 10.4.6 → 10.4.8
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/clavue.js +1 -1
- package/dist/cli.js +126 -59
- package/dist/mao-command.js +1 -1
- package/dist/native/clavue-pager +0 -0
- package/dist/native/clavue-pager-darwin-arm64 +0 -0
- package/dist/native/manifest.json +2 -2
- package/dist/openai-responses-adapter.js +1 -1
- package/dist/provider-setup.js +1 -1
- package/docs/clavue-pager-parity-audit-2026-07-09.md +187 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v10.4.
|
|
1
|
+
# Clavue v10.4.8
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -67,8 +67,8 @@ npx -y iclavue
|
|
|
67
67
|
Run a specific version with `npx`:
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
npx -y iclavue@10.4.
|
|
71
|
-
npx -y iclavue@10.4.
|
|
70
|
+
npx -y iclavue@10.4.8 --version
|
|
71
|
+
npx -y iclavue@10.4.8
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -88,7 +88,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
|
|
|
88
88
|
Install a specific version globally:
|
|
89
89
|
|
|
90
90
|
```bash
|
|
91
|
-
curl -fsSL https://unpkg.com/iclavue@10.4.
|
|
91
|
+
curl -fsSL https://unpkg.com/iclavue@10.4.8/install.sh | bash -s -- 10.4.8
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -237,7 +237,7 @@ Version check:
|
|
|
237
237
|
```bash
|
|
238
238
|
clavue --version
|
|
239
239
|
npx -y iclavue --version
|
|
240
|
-
npx -y iclavue@10.4.
|
|
240
|
+
npx -y iclavue@10.4.8 --version
|
|
241
241
|
# available after a global install and launcher setup
|
|
242
242
|
clavue --version
|
|
243
243
|
```
|