iclavue 13.1.1 → 13.1.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 +8 -8
- package/dist/clavue.js +1 -1
- package/dist/cli.js +20 -20
- package/dist/mao-command.js +1 -1
- package/dist/native/clavue-pager-darwin-arm64 +0 -0
- package/dist/native/manifest.json +5 -5
- package/dist/openai-responses-adapter.js +2 -2
- package/dist/provider-setup.js +1 -1
- package/install.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v13.1.
|
|
1
|
+
# Clavue v13.1.3
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -15,7 +15,7 @@ The npm registry is the source of truth for the latest version (`npm view iclavu
|
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
17
|
npm install -g iclavue@latest && hash -r
|
|
18
|
-
clavue --version # 13.1.
|
|
18
|
+
clavue --version # 13.1.3 (Clavue)
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
One-liner without a global install, or the install script (also npm-backed):
|
|
@@ -28,8 +28,8 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
|
|
|
28
28
|
Pin a version:
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
|
-
npm install -g iclavue@13.1.
|
|
32
|
-
curl -fsSL https://unpkg.com/iclavue@13.1.
|
|
31
|
+
npm install -g iclavue@13.1.3
|
|
32
|
+
curl -fsSL https://unpkg.com/iclavue@13.1.3/install.sh | bash -s -- 13.1.3
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
Inside a running session `/update` (or `clavue update`) checks `npm view iclavue@latest` and reinstalls. If `clavue --version` still prints an old number after an upgrade, run `clavue --version --detail` — a stale launcher from another package (`clavue@8.x`) may shadow the `iclavue` bin; `npm install -g iclavue@latest` re-links it, `repair.sh` cleans a half-finished install.
|
|
@@ -100,8 +100,8 @@ npx -y iclavue
|
|
|
100
100
|
Run a specific version with `npx`:
|
|
101
101
|
|
|
102
102
|
```bash
|
|
103
|
-
npx -y iclavue@13.1.
|
|
104
|
-
npx -y iclavue@13.1.
|
|
103
|
+
npx -y iclavue@13.1.3 --version
|
|
104
|
+
npx -y iclavue@13.1.3
|
|
105
105
|
```
|
|
106
106
|
|
|
107
107
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -121,7 +121,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
|
|
|
121
121
|
Install a specific version globally:
|
|
122
122
|
|
|
123
123
|
```bash
|
|
124
|
-
curl -fsSL https://unpkg.com/iclavue@13.1.
|
|
124
|
+
curl -fsSL https://unpkg.com/iclavue@13.1.3/install.sh | bash -s -- 13.1.3
|
|
125
125
|
```
|
|
126
126
|
|
|
127
127
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -270,7 +270,7 @@ Version check:
|
|
|
270
270
|
```bash
|
|
271
271
|
clavue --version
|
|
272
272
|
npx -y iclavue --version
|
|
273
|
-
npx -y iclavue@13.1.
|
|
273
|
+
npx -y iclavue@13.1.3 --version
|
|
274
274
|
# available after a global install and launcher setup
|
|
275
275
|
clavue --version
|
|
276
276
|
```
|
package/dist/clavue.js
CHANGED
|
@@ -16,7 +16,7 @@ const __isVersion =
|
|
|
16
16
|
__clavueArgs[0] === '-v' ||
|
|
17
17
|
__clavueArgs[0] === '-V');
|
|
18
18
|
if (__isVersion) {
|
|
19
|
-
console.log("13.1.
|
|
19
|
+
console.log("13.1.3 (Clavue)");
|
|
20
20
|
const __detail =
|
|
21
21
|
__clavueArgs.includes('--detail') ||
|
|
22
22
|
__clavueArgs.includes('--path') ||
|