clavue 8.8.69 → 8.8.71

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 CHANGED
@@ -1,4 +1,4 @@
1
- # Clavue v8.8.69
1
+ # Clavue v8.8.71
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/clavue/image.png)
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.69/install.sh | bash -s -- 8.8.69
66
+ curl -fsSL https://unpkg.com/clavue@8.8.71/install.sh | bash -s -- 8.8.71
67
67
  ```
68
68
 
69
69
  ## Quick Start
70
70
 
71
- 1. Run `npx -y clavue` or `clavue`
72
- 2. Open `clavue provider` or `/provider`
73
- 3. Create or select a saved provider profile
74
- 4. Enter the API URL plus API key or auth token
75
- 5. Choose the primary, Haiku, Sonnet, and Opus model slots
76
- 6. Run `/provider validate`, then start the session with the active profile
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