clavue 8.28.14 → 8.28.16
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 +10 -7
- package/dist/cli.js +356 -338
- package/dist/mao-command.js +1 -1
- package/dist/openai-responses-adapter.js +3 -3
- package/dist/provider-setup.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.28.
|
|
1
|
+
# Clavue v8.28.16
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -35,6 +35,7 @@ Canonical primary command surfaces:
|
|
|
35
35
|
- `/provider`: configure, switch, validate, repair, copy, edit, delete, or save provider profiles.
|
|
36
36
|
- `/permissions` (`/approvals` compatibility alias): set the default permission mode so trusted development environments can run with less friction; use `/permissions autonomous` for an opt-in high-autonomy local development lane.
|
|
37
37
|
- `/team`: inspect local team readiness, active team config, and capability state.
|
|
38
|
+
- `/loop`: create, list, run, pause, resume, and stop closed-loop automations backed by durable `/goal` ledgers.
|
|
38
39
|
- `/retro`: run a multi-round repo retrospective and upgrade loop.
|
|
39
40
|
- `/tasks`: inspect task-board state for long-running work.
|
|
40
41
|
- `/resume`: continue saved sessions.
|
|
@@ -64,8 +65,8 @@ npx -y clavue
|
|
|
64
65
|
Run a specific version with `npx`:
|
|
65
66
|
|
|
66
67
|
```bash
|
|
67
|
-
npx -y clavue@8.28.
|
|
68
|
-
npx -y clavue@8.28.
|
|
68
|
+
npx -y clavue@8.28.16 --version
|
|
69
|
+
npx -y clavue@8.28.16
|
|
69
70
|
```
|
|
70
71
|
|
|
71
72
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -85,7 +86,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
85
86
|
Install a specific version globally:
|
|
86
87
|
|
|
87
88
|
```bash
|
|
88
|
-
curl -fsSL https://unpkg.com/clavue@8.28.
|
|
89
|
+
curl -fsSL https://unpkg.com/clavue@8.28.16/install.sh | bash -s -- 8.28.16
|
|
89
90
|
```
|
|
90
91
|
|
|
91
92
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -340,6 +341,7 @@ npm run verify:source-build
|
|
|
340
341
|
npm run check:source-purity
|
|
341
342
|
npm test
|
|
342
343
|
npm run check
|
|
344
|
+
npm run check:release
|
|
343
345
|
npm run build
|
|
344
346
|
npm run package:release
|
|
345
347
|
```
|
|
@@ -350,9 +352,10 @@ npm run package:release
|
|
|
350
352
|
- `npm run verify:source-build`: rebuilds from `src/` into `experimental-dist/` and requires `--version` plus `--help` to boot under Node
|
|
351
353
|
- `npm run check:source-purity`: fails on inline source maps, compiler-transformed React output, generated stubs, or generated types inside `src/`
|
|
352
354
|
- `npm test`: runs packaging and release regression tests with Node's built-in test runner
|
|
353
|
-
- `npm run check`:
|
|
354
|
-
- `npm run
|
|
355
|
-
- `npm run
|
|
355
|
+
- `npm run check`: quick local verification gate used by CI for normal pushes and PRs
|
|
356
|
+
- `npm run check:release`: full release verification gate with vendoring, clean dist verification, dist smoke, source rebuild, source purity, boundaries, and tests
|
|
357
|
+
- `npm run build`: runs `check:release` and previews the publishable npm tarball with `npm pack --dry-run`
|
|
358
|
+
- `npm run package:release`: runs `check:release` and produces archives in `release-artifacts/`
|
|
356
359
|
- `npm run rebuild:experimental`: manual alias for `npm run verify:source-build`
|
|
357
360
|
- `npm run rebuild:experimental:legacy`: older reconstruction path kept for manual investigation
|
|
358
361
|
|