clavue 8.29.3 → 8.29.4

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,4 +1,4 @@
1
- # Clavue v8.29.3
1
+ # Clavue v8.29.4
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/clavue/image.png)
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.29.3 --version
68
- npx -y clavue@8.29.3
68
+ npx -y clavue@8.29.4 --version
69
+ npx -y clavue@8.29.4
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.29.3/install.sh | bash -s -- 8.29.3
89
+ curl -fsSL https://unpkg.com/clavue@8.29.4/install.sh | bash -s -- 8.29.4
89
90
  ```
90
91
 
91
92
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -324,7 +325,8 @@ Companion commands are still available and can either follow the current app pro
324
325
  - Public install entrypoint: `npx -y clavue`
325
326
  - `src/` is the development surface for new changes, while the checked-in `dist/` bundle is the current shipped runtime artifact
326
327
  - `types/generated/` holds generated contract types that stay outside authored runtime source
327
- - GitHub Releases publish installable archives plus `install.sh`
328
+ - npm is the only package publishing target; GitHub Releases are not part of the normal release path
329
+ - Official website release updates are generated locally as changelog blocks and version usage notes before any site edit or deploy
328
330
  - npm distributes the same tracked top-level runtime entrypoints that power `dist/cli.js`, without shipping nested `dist/` development artifacts, `.map` files, or `.d.ts` files
329
331
  - `npm run verify:source-build` rebuilds the CLI from `src/` into `experimental-dist/` and smoke-tests the Node entrypoints as a structural guard
330
332
  - `dist/` is still the shipped artifact today, but release verification now requires both tracked `dist/` integrity and a bootable source rebuild
@@ -340,6 +342,7 @@ npm run verify:source-build
340
342
  npm run check:source-purity
341
343
  npm test
342
344
  npm run check
345
+ npm run check:release
343
346
  npm run build
344
347
  npm run package:release
345
348
  ```
@@ -350,9 +353,10 @@ npm run package:release
350
353
  - `npm run verify:source-build`: rebuilds from `src/` into `experimental-dist/` and requires `--version` plus `--help` to boot under Node
351
354
  - `npm run check:source-purity`: fails on inline source maps, compiler-transformed React output, generated stubs, or generated types inside `src/`
352
355
  - `npm test`: runs packaging and release regression tests with Node's built-in test runner
353
- - `npm run check`: full local verification gate used by CI
354
- - `npm run build`: runs `check` and previews the publishable npm tarball with `npm pack --dry-run`
355
- - `npm run package:release`: runs `check` and produces archives in `release-artifacts/`
356
+ - `npm run check`: quick local verification gate used by CI for normal pushes and PRs
357
+ - `npm run check:release`: full release verification gate with vendoring, clean dist verification, dist smoke, source rebuild, source purity, boundaries, and tests
358
+ - `npm run build`: runs `check:release` and previews the publishable npm tarball with `npm pack --dry-run`
359
+ - `npm run package:release`: runs `check:release` and produces archives in `release-artifacts/`
356
360
  - `npm run rebuild:experimental`: manual alias for `npm run verify:source-build`
357
361
  - `npm run rebuild:experimental:legacy`: older reconstruction path kept for manual investigation
358
362