iclavue 10.4.8 → 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 +8 -6
- package/dist/clavue.js +1 -1
- package/dist/cli.js +288 -236
- package/dist/mao-command.js +1 -1
- package/dist/native/clavue-pager +0 -0
- package/dist/native/clavue-pager-darwin-arm64 +0 -0
- package/dist/native/manifest.json +2 -2
- package/dist/openai-responses-adapter.js +1 -1
- package/dist/provider-setup.js +1 -1
- package/docs/clavue-pager-terminal-m4.md +16 -0
- package/docs/clavue-system-repair-and-supremacy-method.md +314 -0
- package/docs/evals/world-class/weekly-flywheel.tsv +15 -0
- package/docs/ink-pager-correctness-parity.md +42 -0
- package/docs/product-narrative-execution-first-journal-shell.md +59 -0
- package/docs/protocol/clavue-ui-v1.md +6 -3
- package/docs/system-shell-engine-contract.md +78 -0
- package/install.sh +52 -3
- package/package.json +18 -7
- package/repair.sh +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
# Clavue v10.4.
|
|
1
|
+
# Clavue v10.4.10
|
|
2
2
|
|
|
3
3
|

|
|
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`).
|
|
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.
|
|
71
|
-
npx -y iclavue@10.4.
|
|
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.
|
|
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.
|
|
242
|
+
npx -y iclavue@10.4.10 --version
|
|
241
243
|
# available after a global install and launcher setup
|
|
242
244
|
clavue --version
|
|
243
245
|
```
|