clavue 8.8.82 → 8.8.83
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 +7 -3
- package/dist/cli.js +9248 -2649
- package/dist/provider-command.js +156 -1
- package/dist/provider-setup.js +1 -1
- package/docs/world-class-autoresearch-hardening-2026-04-25.md +110 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.8.
|
|
1
|
+
# Clavue v8.8.83
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -85,7 +85,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
85
85
|
Install a specific version:
|
|
86
86
|
|
|
87
87
|
```bash
|
|
88
|
-
curl -fsSL https://unpkg.com/clavue@8.8.
|
|
88
|
+
curl -fsSL https://unpkg.com/clavue@8.8.83/install.sh | bash -s -- 8.8.83
|
|
89
89
|
```
|
|
90
90
|
|
|
91
91
|
## Quick Start: Custom API
|
|
@@ -114,6 +114,7 @@ Useful recovery commands:
|
|
|
114
114
|
clavue provider # reopen the same API setup manager
|
|
115
115
|
clavue provider list # list saved profiles without opening the UI
|
|
116
116
|
clavue provider current
|
|
117
|
+
clavue provider doctor # diagnose source-of-truth, drift, validation, and next repair action
|
|
117
118
|
clavue provider validate
|
|
118
119
|
```
|
|
119
120
|
|
|
@@ -190,6 +191,7 @@ clavue setup-token
|
|
|
190
191
|
/provider
|
|
191
192
|
/provider list
|
|
192
193
|
/provider current
|
|
194
|
+
/provider doctor
|
|
193
195
|
/provider save-current kimi-main
|
|
194
196
|
/provider adopt-current kimi-main
|
|
195
197
|
/provider validate
|
|
@@ -278,6 +280,7 @@ Companion commands are still available and can either follow the current app pro
|
|
|
278
280
|
```bash
|
|
279
281
|
npm run validate:repo
|
|
280
282
|
npm run verify:dist
|
|
283
|
+
node scripts/verify-provider-command-sidecar.mjs
|
|
281
284
|
npm run verify:source-build
|
|
282
285
|
npm run check:source-purity
|
|
283
286
|
npm test
|
|
@@ -287,7 +290,8 @@ npm run package:release
|
|
|
287
290
|
```
|
|
288
291
|
|
|
289
292
|
- `npm run validate:repo`: checks package metadata, required tracked files, workflow presence, and tag/version consistency
|
|
290
|
-
- `npm run verify:dist`: smoke-tests `dist/cli.js
|
|
293
|
+
- `npm run verify:dist`: smoke-tests `dist/cli.js`, provider setup, provider command, and release-critical sidecars
|
|
294
|
+
- `node scripts/verify-provider-command-sidecar.mjs`: focused guard that fails if `dist/provider-command.js` drifts from the authored provider command source
|
|
291
295
|
- `npm run verify:source-build`: rebuilds from `src/` into `experimental-dist/` and requires `--version` plus `--help` to boot under Node
|
|
292
296
|
- `npm run check:source-purity`: fails on inline source maps, compiler-transformed React output, generated stubs, or generated types inside `src/`
|
|
293
297
|
- `npm test`: runs packaging and release regression tests with Node's built-in test runner
|