iclavue 10.11.1 → 10.11.3

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 v10.11.1
1
+ # Clavue v10.11.3
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/iclavue/image.png)
4
4
 
@@ -8,6 +8,26 @@
8
8
  > **Launch commands (same engine):** **`clavue`** · **`agent`** · **`ai`** · **`chat`** (also `iclavue`).
9
9
  > The older unscoped package name `clavue` is under an npm security hold and must not be used.
10
10
 
11
+
12
+ ## Install (recommended)
13
+
14
+ ```bash
15
+ curl -fsSL https://www.clavue.com/cli/install.sh | bash
16
+ ```
17
+
18
+ Or pin a version:
19
+
20
+ ```bash
21
+ curl -fsSL https://www.clavue.com/cli/install.sh | bash -s -- 10.11.3
22
+ ```
23
+
24
+ Classic npm:
25
+
26
+ ```bash
27
+ npm install -g iclavue@10.11.3
28
+ ```
29
+
30
+
11
31
  ## Product Philosophy
12
32
 
13
33
  Clavue is built around a simple operating model: the user owns the workflow, the CLI owns the execution loop, and providers are replaceable routes.
@@ -69,8 +89,8 @@ npx -y iclavue
69
89
  Run a specific version with `npx`:
70
90
 
71
91
  ```bash
72
- npx -y iclavue@10.11.1 --version
73
- npx -y iclavue@10.11.1
92
+ npx -y iclavue@10.11.3 --version
93
+ npx -y iclavue@10.11.3
74
94
  ```
75
95
 
76
96
  Install globally from npm when you want the `clavue` command to stay available:
@@ -90,7 +110,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
90
110
  Install a specific version globally:
91
111
 
92
112
  ```bash
93
- curl -fsSL https://unpkg.com/iclavue@10.11.1/install.sh | bash -s -- 10.11.1
113
+ curl -fsSL https://unpkg.com/iclavue@10.11.3/install.sh | bash -s -- 10.11.3
94
114
  ```
95
115
 
96
116
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -239,7 +259,7 @@ Version check:
239
259
  ```bash
240
260
  clavue --version
241
261
  npx -y iclavue --version
242
- npx -y iclavue@10.11.1 --version
262
+ npx -y iclavue@10.11.3 --version
243
263
  # available after a global install and launcher setup
244
264
  clavue --version
245
265
  ```
package/dist/clavue.js CHANGED
@@ -7,7 +7,7 @@ if (
7
7
  __clavueArgs[0] === "-v" ||
8
8
  __clavueArgs[0] === "-V")
9
9
  ) {
10
- console.log("10.11.1 (Clavue)");
10
+ console.log("10.11.3 (Clavue)");
11
11
  process.exit(0);
12
12
  }
13
13
  await import(new URL("./cli.js", import.meta.url).href);