clavue 8.8.101 → 8.8.103
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 +6 -6
- package/dist/cli.js +1701 -1697
- package/dist/provider-setup.js +1 -1
- package/dist/team-command.js +57 -15
- package/dist/vendor/ripgrep/arm64-darwin/rg +0 -0
- package/dist/vendor/ripgrep/arm64-linux/rg +0 -0
- package/dist/vendor/ripgrep/arm64-win32/rg.exe +0 -0
- package/dist/vendor/ripgrep/x64-darwin/rg +0 -0
- package/dist/vendor/ripgrep/x64-linux/rg +0 -0
- package/dist/vendor/ripgrep/x64-win32/rg.exe +0 -0
- package/docs/bug.md +436 -0
- package/docs/ccjk-clavue-compatibility-brief.md +346 -0
- package/docs/clavue-local-install-root-cause-2026-04-28.md +332 -0
- package/docs/clavue-native-installer-404-2026-04-28.md +184 -0
- package/docs/image copy 2.png +0 -0
- package/docs/image copy 3.png +0 -0
- package/docs/image copy.png +0 -0
- package/docs/image.png +0 -0
- package/docs/website-content-recommendations.md +947 -26
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.8.
|
|
1
|
+
# Clavue v8.8.103
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -57,8 +57,8 @@ npx -y clavue
|
|
|
57
57
|
Run a specific version with `npx`:
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
npx -y clavue@8.8.
|
|
61
|
-
npx -y clavue@8.8.
|
|
60
|
+
npx -y clavue@8.8.103 --version
|
|
61
|
+
npx -y clavue@8.8.103
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -78,7 +78,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
78
78
|
Install a specific version globally:
|
|
79
79
|
|
|
80
80
|
```bash
|
|
81
|
-
curl -fsSL https://unpkg.com/clavue@8.8.
|
|
81
|
+
curl -fsSL https://unpkg.com/clavue@8.8.103/install.sh | bash -s -- 8.8.103
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
## Quick Start: Custom API
|
|
@@ -167,7 +167,7 @@ Version check:
|
|
|
167
167
|
```bash
|
|
168
168
|
clavue --version
|
|
169
169
|
npx -y clavue --version
|
|
170
|
-
npx -y clavue@8.8.
|
|
170
|
+
npx -y clavue@8.8.103 --version
|
|
171
171
|
# available after a global install and launcher setup
|
|
172
172
|
clavue --version
|
|
173
173
|
```
|
|
@@ -228,7 +228,7 @@ clavue setup-token
|
|
|
228
228
|
/team check
|
|
229
229
|
```
|
|
230
230
|
|
|
231
|
-
Typing `agent teams` at the start of a prompt opens the same native `/team` flow instead of sending that phrase to the model as plain text.
|
|
231
|
+
Typing `agent teams` at the start of a prompt opens the same native `/team` flow instead of sending that phrase to the model as plain text. Agent teams are enabled by default in Clavue; set `CLAVUE_DISABLE_AGENT_TEAMS=1` or `CLAVUE_AGENT_TEAMS=0` before launch only if you need to disable them. Use `/team check` for a concrete readiness report.
|
|
232
232
|
|
|
233
233
|
`/retro` runs a multi-round repo retrospective and upgrade loop guided by `PRODUCT.md` and `ARCHITECTURE.md`, with `tisheng.md` treated as historical context only when it still agrees.
|
|
234
234
|
|