clavue 8.22.4 → 8.22.5
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 +11 -9
- package/dist/cli.js +52 -44
- package/dist/mao-command.js +1 -1
- package/dist/openai-responses-adapter.js +3 -3
- package/dist/provider-setup.js +1 -1
- package/docs/CLAUDE-NOTES.md +40 -0
- package/docs/model-roles.md +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.22.
|
|
1
|
+
# Clavue v8.22.5
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -64,8 +64,8 @@ npx -y clavue
|
|
|
64
64
|
Run a specific version with `npx`:
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
|
-
npx -y clavue@8.22.
|
|
68
|
-
npx -y clavue@8.22.
|
|
67
|
+
npx -y clavue@8.22.5 --version
|
|
68
|
+
npx -y clavue@8.22.5
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -85,7 +85,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
85
85
|
Install a specific version globally:
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
|
-
curl -fsSL https://unpkg.com/clavue@8.22.
|
|
88
|
+
curl -fsSL https://unpkg.com/clavue@8.22.5/install.sh | bash -s -- 8.22.5
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -138,12 +138,14 @@ Fastest path for custom API users:
|
|
|
138
138
|
Recommended model-slot setup:
|
|
139
139
|
|
|
140
140
|
```text
|
|
141
|
-
|
|
142
|
-
Haiku
|
|
143
|
-
Sonnet
|
|
144
|
-
Opus
|
|
141
|
+
主模型 (primary): your main coding model for user turns / mainLoop (e.g. claude-sonnet-4-6 or gpt-5.4)
|
|
142
|
+
Haiku 模型 (smallFast): fast helper for light background roles only (classify yolo, memory search, tool quick-summary, hooks/background)
|
|
143
|
+
Sonnet 模型 (subagent/general): workhorse for subagent execution, daily coding, summarize/extract (day-to-day heavy but not planner)
|
|
144
|
+
Opus 模型 (plan/guide): planning / high-capability / guide roles
|
|
145
145
|
```
|
|
146
146
|
|
|
147
|
+
Note: Haiku roles are intentionally rare in main interaction (by design for cost/speed); most visible work uses primary/sonnet. Use `clavue provider doctor` to see live role→model mapping.
|
|
148
|
+
|
|
147
149
|
Useful recovery commands:
|
|
148
150
|
|
|
149
151
|
```bash
|
|
@@ -226,7 +228,7 @@ Version check:
|
|
|
226
228
|
```bash
|
|
227
229
|
clavue --version
|
|
228
230
|
npx -y clavue --version
|
|
229
|
-
npx -y clavue@8.22.
|
|
231
|
+
npx -y clavue@8.22.5 --version
|
|
230
232
|
# available after a global install and launcher setup
|
|
231
233
|
clavue --version
|
|
232
234
|
```
|