iclavue 13.0.2 → 13.1.0

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 v13.0.2
1
+ # Clavue v13.1.0
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/iclavue/image.png)
4
4
 
@@ -9,24 +9,33 @@
9
9
  > The older unscoped package name `clavue` is under an npm security hold and must not be used.
10
10
 
11
11
 
12
- ## Install (recommended)
12
+ ## Install / upgrade (recommended)
13
+
14
+ The npm registry is the source of truth for the latest version (`npm view iclavue version`). Every path below resolves `latest` from npm, so a plain re-run upgrades an existing install:
13
15
 
14
16
  ```bash
15
- curl -fsSL https://www.clavue.com/cli/install.sh | bash
17
+ npm install -g iclavue@latest && hash -r
18
+ clavue --version # 13.1.0 (Clavue)
16
19
  ```
17
20
 
18
- Or pin a version:
21
+ One-liner without a global install, or the install script (also npm-backed):
19
22
 
20
23
  ```bash
21
- curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 13.0.2
24
+ npx -y iclavue
25
+ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
22
26
  ```
23
27
 
24
- Classic npm:
28
+ Pin a version:
25
29
 
26
30
  ```bash
27
- npm install -g iclavue@13.0.2
31
+ npm install -g iclavue@13.1.0
32
+ curl -fsSL https://unpkg.com/iclavue@13.1.0/install.sh | bash -s -- 13.1.0
28
33
  ```
29
34
 
35
+ Inside a running session `/update` (or `clavue update`) checks `npm view iclavue@latest` and reinstalls. If `clavue --version` still prints an old number after an upgrade, run `clavue --version --detail` — a stale launcher from another package (`clavue@8.x`) may shadow the `iclavue` bin; `npm install -g iclavue@latest` re-links it, `repair.sh` cleans a half-finished install.
36
+
37
+ > The website mirror (`https://www.clavue.com/cli/install.sh`, `/downloads/clavue/VERSION`) is maintained separately by the site operator and may lag behind npm; when it does, use the npm / unpkg paths above.
38
+
30
39
 
31
40
  ## Product Philosophy
32
41
 
@@ -79,7 +88,7 @@ For **developer / upgrade law**, start at [Baseline 12.0.1](./docs/clavue-baseli
79
88
 
80
89
  Requirements:
81
90
 
82
- - Node.js 22 or newer
91
+ - Node.js 18 or newer
83
92
  - macOS or Linux shell environment
84
93
 
85
94
  Run once with `npx` when you do not want a global install:
@@ -91,8 +100,8 @@ npx -y iclavue
91
100
  Run a specific version with `npx`:
92
101
 
93
102
  ```bash
94
- npx -y iclavue@13.0.2 --version
95
- npx -y iclavue@13.0.2
103
+ npx -y iclavue@13.1.0 --version
104
+ npx -y iclavue@13.1.0
96
105
  ```
97
106
 
98
107
  Install globally from npm when you want the `clavue` command to stay available:
@@ -112,7 +121,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
112
121
  Install a specific version globally:
113
122
 
114
123
  ```bash
115
- curl -fsSL https://unpkg.com/iclavue@13.0.2/install.sh | bash -s -- 13.0.2
124
+ curl -fsSL https://unpkg.com/iclavue@13.1.0/install.sh | bash -s -- 13.1.0
116
125
  ```
117
126
 
118
127
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -261,7 +270,7 @@ Version check:
261
270
  ```bash
262
271
  clavue --version
263
272
  npx -y iclavue --version
264
- npx -y iclavue@13.0.2 --version
273
+ npx -y iclavue@13.1.0 --version
265
274
  # available after a global install and launcher setup
266
275
  clavue --version
267
276
  ```
@@ -347,8 +356,8 @@ Companion commands are still available and can either follow the current app pro
347
356
 
348
357
  ## Compatibility And Routing Notes
349
358
 
350
- - clavue can import compatible profiles from `~/.ccjk/config.toml` or `~/.ufomiao/zcf/config.toml`.
351
- - Changing the active clavue provider profile writes the current selection back to those compatible config files.
359
+ - Provider profiles live only under `~/.clavue` (or `CLAVUE_CONFIG_DIR`); nothing is imported from `~/.ccjk`, `~/.ufomiao/zcf` or `~/.claude`, and switching a profile never writes to those tools' files.
360
+ - Switching a profile (`/provider <name>`, `/provider official|byok|toggle`, or picking a line in the panel) sets the global default and binds the current chat; env is applied once, never re-bound per request.
352
361
  - Proxy GPT routes stay on the Anthropic-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.
353
362
  - Recommended saved profile pattern: `gpt54-main` for a validated `gpt-5.4` route across the primary and inherited slots.
354
363
  - Recommended saved profile pattern: `gpt53-all` when the route is validated for `gpt-5.3-codex` across the main thread and helper lanes.
package/dist/clavue.js CHANGED
@@ -16,7 +16,7 @@ const __isVersion =
16
16
  __clavueArgs[0] === '-v' ||
17
17
  __clavueArgs[0] === '-V');
18
18
  if (__isVersion) {
19
- console.log("13.0.2 (Clavue)");
19
+ console.log("13.1.0 (Clavue)");
20
20
  const __detail =
21
21
  __clavueArgs.includes('--detail') ||
22
22
  __clavueArgs.includes('--path') ||