clavue-v1 1.7.2 → 1.7.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/CHANGELOG.md +6 -0
- package/README.md +5 -5
- package/dist/cli.js +22 -22
- package/dist/mao-command.js +1 -1
- package/dist/openai-responses-adapter.js +1 -1
- package/dist/provider-setup.js +1 -1
- package/docs/release-notes-v1.7.3.md +30 -0
- package/docs/tui-feed/feed.json +15 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ clavue / 克拉维 发布说明。本文件在构建时注入运行时,驱动
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
+
## 1.7.3 - 2026-09-04
|
|
10
|
+
|
|
11
|
+
- 同模型不再 hop:plan/review 与主模型 id 相同时不调用,避免自己审自己
|
|
12
|
+
- Plan hop 默认只在计划模式运行,执行型第一轮主模型直接动手;`CLAVUE_COMBO_PLAN_HOP=serial` 恢复每轮前置 hop,`=0` 关闭
|
|
13
|
+
- BYOK 默认填充只保留与主模型不同的 light/plan/review;仅配一个主模型时组合保持关闭
|
|
14
|
+
|
|
9
15
|
## 1.7.2 - 2026-09-04
|
|
10
16
|
|
|
11
17
|
- 组合模型默认开启:路由已有模型时自动填 light/plan/review,MAIN 仍跟随 `/model`;`CLAVUE_COMBO_OFF=1` 关闭
|
package/README.md
CHANGED
|
@@ -65,8 +65,8 @@ npx -y clavue-v1
|
|
|
65
65
|
Run a specific version with `npx`:
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
npx -y clavue-v1@1.7.
|
|
69
|
-
npx -y clavue-v1@1.7.
|
|
68
|
+
npx -y clavue-v1@1.7.3 --version
|
|
69
|
+
npx -y clavue-v1@1.7.3
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
Install globally from npm when you want the `clavue-v1` command to stay available:
|
|
@@ -88,7 +88,7 @@ curl -fsSL https://unpkg.com/clavue-v1/install.sh | bash
|
|
|
88
88
|
Install a specific version globally:
|
|
89
89
|
|
|
90
90
|
```bash
|
|
91
|
-
curl -fsSL https://unpkg.com/clavue-v1@1.7.
|
|
91
|
+
curl -fsSL https://unpkg.com/clavue-v1@1.7.3/install.sh | bash -s -- 1.7.3
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
## Quick Start: Official Clavue Cloud
|
|
@@ -195,7 +195,7 @@ The startup box is a single-column dashboard rather than a marketing panel. Unde
|
|
|
195
195
|
Interactive TUI sessions check npm for a newer `clavue-v1` after first paint (the check does not block the first frame). If an update is available, a Chinese dialog offers in-place install:
|
|
196
196
|
|
|
197
197
|
```text
|
|
198
|
-
发现新版本 1.7.
|
|
198
|
+
发现新版本 1.7.3(当前 1.7.2)
|
|
199
199
|
Ctrl+U / Enter 立即升级 · Esc 本次跳过 · /update 随时再来
|
|
200
200
|
```
|
|
201
201
|
|
|
@@ -343,7 +343,7 @@ Version check:
|
|
|
343
343
|
|
|
344
344
|
```bash
|
|
345
345
|
npx -y clavue-v1 --version
|
|
346
|
-
npx -y clavue-v1@1.7.
|
|
346
|
+
npx -y clavue-v1@1.7.3 --version
|
|
347
347
|
# available after a global install
|
|
348
348
|
clavue-v1 --version
|
|
349
349
|
```
|