iclavue 12.0.1 → 12.0.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 +9 -7
- package/dist/clavue.js +1 -1
- package/dist/cli.js +24 -24
- package/dist/mao-command.js +1 -1
- package/dist/native/clavue-pager-darwin-arm64 +0 -0
- package/dist/native/manifest.json +4 -4
- package/dist/openai-responses-adapter.js +6 -6
- 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 v12.0.
|
|
1
|
+
# Clavue v12.0.3
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -18,13 +18,13 @@ curl -fsSL https://www.clavue.com/cli/install.sh | bash
|
|
|
18
18
|
Or pin a version:
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 12.0.
|
|
21
|
+
curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 12.0.3
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
Classic npm:
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
npm install -g iclavue@12.0.
|
|
27
|
+
npm install -g iclavue@12.0.3
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
|
|
@@ -73,6 +73,8 @@ For full user-facing usage and learning documentation, start in [study/README.md
|
|
|
73
73
|
|
|
74
74
|
For provider and model routing setup, see [Clavue Provider And Model Best Practices](./docs/clavue-provider-model-best-practices.md).
|
|
75
75
|
|
|
76
|
+
For **developer / upgrade law**, start at [Baseline 12.0.3](./docs/clavue-baseline-12.0.3.md) and [Doctrine Map](./docs/clavue-doctrine-map.md). Superseded 11.x docs live in [`docs/old文档/`](./docs/old文档/README.md).
|
|
77
|
+
|
|
76
78
|
## Install
|
|
77
79
|
|
|
78
80
|
Requirements:
|
|
@@ -89,8 +91,8 @@ npx -y iclavue
|
|
|
89
91
|
Run a specific version with `npx`:
|
|
90
92
|
|
|
91
93
|
```bash
|
|
92
|
-
npx -y iclavue@12.0.
|
|
93
|
-
npx -y iclavue@12.0.
|
|
94
|
+
npx -y iclavue@12.0.3 --version
|
|
95
|
+
npx -y iclavue@12.0.3
|
|
94
96
|
```
|
|
95
97
|
|
|
96
98
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -110,7 +112,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
|
|
|
110
112
|
Install a specific version globally:
|
|
111
113
|
|
|
112
114
|
```bash
|
|
113
|
-
curl -fsSL https://unpkg.com/iclavue@12.0.
|
|
115
|
+
curl -fsSL https://unpkg.com/iclavue@12.0.3/install.sh | bash -s -- 12.0.3
|
|
114
116
|
```
|
|
115
117
|
|
|
116
118
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -259,7 +261,7 @@ Version check:
|
|
|
259
261
|
```bash
|
|
260
262
|
clavue --version
|
|
261
263
|
npx -y iclavue --version
|
|
262
|
-
npx -y iclavue@12.0.
|
|
264
|
+
npx -y iclavue@12.0.3 --version
|
|
263
265
|
# available after a global install and launcher setup
|
|
264
266
|
clavue --version
|
|
265
267
|
```
|
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("12.0.
|
|
19
|
+
console.log("12.0.3 (Clavue)");
|
|
20
20
|
const __detail =
|
|
21
21
|
__clavueArgs.includes('--detail') ||
|
|
22
22
|
__clavueArgs.includes('--path') ||
|