iclavue 10.4.7 → 10.4.10

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,10 +1,12 @@
1
- # Clavue v10.4.7
1
+ # Clavue v10.4.10
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/iclavue/image.png)
4
4
 
5
5
  `clavue` is an execution-first AI coding CLI for real software work. It keeps the terminal as the control surface, uses direct repo tools for inspection/editing/verification, treats API providers as configurable routes, and includes native workflows for review, recovery, team inspection, and long-running sessions.
6
6
 
7
- > **npm package name:** install from **`iclavue`** on the public registry (`npm install -g iclavue`). The CLI command remains **`clavue`** (also `iclavue`). The older unscoped package name `clavue` is under an npm security hold and must not be used.
7
+ > **npm package name:** install from **`iclavue`** on the public registry (`npm install -g iclavue`).
8
+ > **Launch commands (same engine):** **`clavue`** · **`agent`** · **`ai`** · **`chat`** (also `iclavue`).
9
+ > The older unscoped package name `clavue` is under an npm security hold and must not be used.
8
10
 
9
11
  ## Product Philosophy
10
12
 
@@ -67,8 +69,8 @@ npx -y iclavue
67
69
  Run a specific version with `npx`:
68
70
 
69
71
  ```bash
70
- npx -y iclavue@10.4.7 --version
71
- npx -y iclavue@10.4.7
72
+ npx -y iclavue@10.4.10 --version
73
+ npx -y iclavue@10.4.10
72
74
  ```
73
75
 
74
76
  Install globally from npm when you want the `clavue` command to stay available:
@@ -88,7 +90,7 @@ curl -fsSL https://unpkg.com/iclavue/install.sh | bash
88
90
  Install a specific version globally:
89
91
 
90
92
  ```bash
91
- curl -fsSL https://unpkg.com/iclavue@10.4.7/install.sh | bash -s -- 10.4.7
93
+ curl -fsSL https://unpkg.com/iclavue@10.4.10/install.sh | bash -s -- 10.4.10
92
94
  ```
93
95
 
94
96
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -237,7 +239,7 @@ Version check:
237
239
  ```bash
238
240
  clavue --version
239
241
  npx -y iclavue --version
240
- npx -y iclavue@10.4.7 --version
242
+ npx -y iclavue@10.4.10 --version
241
243
  # available after a global install and launcher setup
242
244
  clavue --version
243
245
  ```
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.4.7 (Clavue)");
10
+ console.log("10.4.10 (Clavue)");
11
11
  process.exit(0);
12
12
  }
13
13
  await import(new URL("./cli.js", import.meta.url).href);