clavue 8.8.70 → 8.8.72
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 +30 -8
- package/dist/cli.js +1450 -1450
- package/dist/provider-setup.js +1 -1
- package/install.sh +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.8.
|
|
1
|
+
# Clavue v8.8.72
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -63,17 +63,39 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
63
63
|
Install a specific version:
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
curl -fsSL https://unpkg.com/clavue@8.8.
|
|
66
|
+
curl -fsSL https://unpkg.com/clavue@8.8.72/install.sh | bash -s -- 8.8.72
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Quick Start
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
71
|
+
Fastest path for custom API users:
|
|
72
|
+
|
|
73
|
+
1. Install with `curl -fsSL https://unpkg.com/clavue/install.sh | bash`
|
|
74
|
+
2. Start with `clavue`
|
|
75
|
+
3. At `请选择 API 配置模式`, choose `自定义 API 配置`
|
|
76
|
+
4. Choose `1. 添加配置`
|
|
77
|
+
5. Enter a profile name, API base URL, API key or auth token, and optional model slots
|
|
78
|
+
6. Choose `no` at `返回主菜单?` to enter Clavue with the saved default profile
|
|
79
|
+
|
|
80
|
+
Recommended model-slot setup:
|
|
81
|
+
|
|
82
|
+
```text
|
|
83
|
+
主模型: your main coding model, for example claude-sonnet-4-6 or gpt-5.4
|
|
84
|
+
Haiku 模型: fast helper model, or leave empty to use provider defaults
|
|
85
|
+
Sonnet 模型: workhorse/helper model, or leave empty to inherit safely
|
|
86
|
+
Opus 模型: planning/high-capability model, or leave empty to inherit safely
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Useful recovery commands:
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
clavue provider # reopen the same API setup manager
|
|
93
|
+
clavue provider list # list saved profiles without opening the UI
|
|
94
|
+
clavue provider current
|
|
95
|
+
clavue provider validate
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Use `clavue auth login` only if you want the official Anthropic login path. Custom API users do not need official login.
|
|
77
99
|
|
|
78
100
|
This package is intended for users who want an execution-first coding CLI with explicit routing control when compatible providers or gateways are part of the setup.
|
|
79
101
|
|