clavue-v1 1.7.0 → 1.7.2
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 +16 -0
- package/README.md +10 -10
- package/dist/cli.js +61 -61
- package/dist/mao-command.js +1 -1
- package/dist/openai-responses-adapter.js +7 -7
- package/dist/provider-setup.js +44 -44
- package/dist/team-command.js +1 -1
- package/docs/release-notes-v1.7.1.md +28 -0
- package/docs/release-notes-v1.7.2.md +40 -0
- package/docs/tui-feed/feed.json +28 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ clavue / 克拉维 发布说明。本文件在构建时注入运行时,驱动
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
+
## 1.7.2 - 2026-09-04
|
|
10
|
+
|
|
11
|
+
- 组合模型默认开启:路由已有模型时自动填 light/plan/review,MAIN 仍跟随 `/model`;`CLAVUE_COMBO_OFF=1` 关闭
|
|
12
|
+
- `/provider` 编辑表单新增可选 Review 审阅模型;写入 `CLAVUE_DEFAULT_REVIEW_MODEL`,显式 `CLAVUE_COMBO_REVIEW` 仍最高
|
|
13
|
+
- 压缩请求不再误报「缓存前缀变化(tools)」——compact 的精简工具集不再污染主线程前缀快照
|
|
14
|
+
- 流空闲看门狗默认开启:网关心跳不再让卡住的生成无限转圈;`CLAVUE_STREAM_WATCHDOG=0` 关闭
|
|
15
|
+
- Ctrl+C 在 Kitty CSI u 模式下不再漏成提示符里的 `99;5u`,卡住的请求可以打断
|
|
16
|
+
- 网关 `No available channel for model …` 立即失败并走槽位回退,不再重试 10 次
|
|
17
|
+
|
|
18
|
+
## 1.7.1 - 2026-09-03
|
|
19
|
+
|
|
20
|
+
- 官方 profile 的非必要流量开关不再关掉 clavue-v1 自身升级检查、启动升级框和 `/update`
|
|
21
|
+
- `/provider`、路由状态、探测结果改称 Messages 协议,界面不再用上游厂商名做标签
|
|
22
|
+
- 限流、策略拒绝、远程控制确认、插件市场等用户可见文案去掉上游厂商名
|
|
23
|
+
- git 共同作者改为 `noreply@clavue.com`
|
|
24
|
+
|
|
9
25
|
## 1.7.0 - 2026-09-03
|
|
10
26
|
|
|
11
27
|
- 产品路由环境变量统一为 `CLAVUE_*`(`CLAVUE_BASE_URL` / `CLAVUE_API_KEY` 等);旧 `ANTHROPIC_*` 路由名只作只读兼容
|
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.2 --version
|
|
69
|
+
npx -y clavue-v1@1.7.2
|
|
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.2/install.sh | bash -s -- 1.7.2
|
|
92
92
|
```
|
|
93
93
|
|
|
94
94
|
## Quick Start: Official Clavue Cloud
|
|
@@ -114,7 +114,7 @@ Manual fallback: create a member API key at `https://www.clavue.com/account`,
|
|
|
114
114
|
then add the `Clavue 官方` preset in `clavue-v1 provider`.
|
|
115
115
|
|
|
116
116
|
`auto` is also accepted. The CLI talks to `api.clavue.com/v1/messages`
|
|
117
|
-
(
|
|
117
|
+
(Messages-compatible protocol) and `/provider current` shows your plan and remaining
|
|
118
118
|
points from the `x-clavue-points-*` response headers. Official identity is
|
|
119
119
|
decided by exact host match only — a third-party gateway can never be
|
|
120
120
|
mistaken for the official 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.2(当前 1.7.1)
|
|
199
199
|
Ctrl+U / Enter 立即升级 · Esc 本次跳过 · /update 随时再来
|
|
200
200
|
```
|
|
201
201
|
|
|
@@ -286,7 +286,7 @@ CLAVUE_COMBO_REVIEW_EFFORT=medium # plan/review/light hops use their own
|
|
|
286
286
|
# CLAVUE_SLOT_EFFORT_LEARN=0 # do not remember effort-parameter 400s
|
|
287
287
|
```
|
|
288
288
|
|
|
289
|
-
Slot effort is sent as
|
|
289
|
+
Slot effort is sent as Messages `output_config.effort` (Responses dialect maps
|
|
290
290
|
it to `reasoning.effort`). A 400 that names effort is retried once without it
|
|
291
291
|
and remembered for the process. `/effort` still only affects the `main` slot.
|
|
292
292
|
|
|
@@ -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.2 --version
|
|
347
347
|
# available after a global install
|
|
348
348
|
clavue-v1 --version
|
|
349
349
|
```
|
|
@@ -362,7 +362,7 @@ clavue-v1 auth status --text
|
|
|
362
362
|
clavue-v1 auth logout
|
|
363
363
|
```
|
|
364
364
|
|
|
365
|
-
The legacy
|
|
365
|
+
The legacy OAuth and long-lived `setup-token` flow are no longer
|
|
366
366
|
user-facing login paths. Protocol-compatible API providers remain available
|
|
367
367
|
through `clavue-v1 provider`.
|
|
368
368
|
|
|
@@ -469,7 +469,7 @@ Typing `agent teams` at the start of a prompt opens the same native `/team` flow
|
|
|
469
469
|
`/goal` turns a one-line objective into a durable mission. Clavue writes a ledger under `.clavue/goals/`, defines the plan itself, and keeps working across turns until evidence proves the objective, the budget runs out, or a real blocker appears. The loop is bounded: 20 auto-continued turns or 6 hours, whichever comes first. Exhaustion pauses the goal with an explicit `budget_exhausted` event; `/goal resume` grants a fresh budget. Completion is refused until at least one piece of evidence is on record, and starting a new goal supersedes the live one with an audit event.
|
|
470
470
|
|
|
471
471
|
```text
|
|
472
|
-
/goal ship the 1.7.
|
|
472
|
+
/goal ship the 1.7.1 release and verify npm, GitHub, and the website
|
|
473
473
|
/goal criteria npm run check passes on main
|
|
474
474
|
/goal evidence npm run test:fast passed (24 files)
|
|
475
475
|
/goal status
|
|
@@ -524,7 +524,7 @@ Companion desks are job contracts, not toys: `/girl` recaps and writes a handoff
|
|
|
524
524
|
|
|
525
525
|
- clavue can import compatible profiles from `~/.ccjk/config.toml` or `~/.ufomiao/zcf/config.toml`.
|
|
526
526
|
- Changing the active clavue provider profile writes the current selection back to those compatible config files.
|
|
527
|
-
- Proxy GPT routes stay on the
|
|
527
|
+
- Proxy GPT routes stay on the Messages-compatible `/v1/messages` path by default. Set `CLAVUE_API_DIALECT=openai_responses` only when you explicitly want the Responses adapter for that gateway; `MYCLAUDE_API_DIALECT` remains a legacy-compatible alias.
|
|
528
528
|
- Recommended saved profile pattern: `gpt54-main` for a validated `gpt-5.4` route across the primary and inherited slots.
|
|
529
529
|
- Recommended saved profile pattern: `gpt53-all` when the route is validated for `gpt-5.3-codex` across the main thread and helper lanes.
|
|
530
530
|
- Recommended saved profile pattern: `kimi-main` or `glm-main` for provider-native routing with that provider's API URL and credential.
|