clavue 8.28.24 → 8.29.1

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.28.24
1
+ # Clavue v8.29.1
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/clavue/image.png)
4
4
 
@@ -35,7 +35,6 @@ 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.
39
38
  - `/retro`: run a multi-round repo retrospective and upgrade loop.
40
39
  - `/tasks`: inspect task-board state for long-running work.
41
40
  - `/resume`: continue saved sessions.
@@ -65,8 +64,8 @@ npx -y clavue
65
64
  Run a specific version with `npx`:
66
65
 
67
66
  ```bash
68
- npx -y clavue@8.28.24 --version
69
- npx -y clavue@8.28.24
67
+ npx -y clavue@8.29.1 --version
68
+ npx -y clavue@8.29.1
70
69
  ```
71
70
 
72
71
  Install globally from npm when you want the `clavue` command to stay available:
@@ -86,7 +85,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
86
85
  Install a specific version globally:
87
86
 
88
87
  ```bash
89
- curl -fsSL https://unpkg.com/clavue@8.28.24/install.sh | bash -s -- 8.28.24
88
+ curl -fsSL https://unpkg.com/clavue@8.29.1/install.sh | bash -s -- 8.29.1
90
89
  ```
91
90
 
92
91
  ### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
@@ -325,8 +324,7 @@ Companion commands are still available and can either follow the current app pro
325
324
  - Public install entrypoint: `npx -y clavue`
326
325
  - `src/` is the development surface for new changes, while the checked-in `dist/` bundle is the current shipped runtime artifact
327
326
  - `types/generated/` holds generated contract types that stay outside authored runtime source
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
327
+ - GitHub Releases publish installable archives plus `install.sh`
330
328
  - 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
331
329
  - `npm run verify:source-build` rebuilds the CLI from `src/` into `experimental-dist/` and smoke-tests the Node entrypoints as a structural guard
332
330
  - `dist/` is still the shipped artifact today, but release verification now requires both tracked `dist/` integrity and a bootable source rebuild
@@ -342,7 +340,6 @@ npm run verify:source-build
342
340
  npm run check:source-purity
343
341
  npm test
344
342
  npm run check
345
- npm run check:release
346
343
  npm run build
347
344
  npm run package:release
348
345
  ```
@@ -353,10 +350,9 @@ npm run package:release
353
350
  - `npm run verify:source-build`: rebuilds from `src/` into `experimental-dist/` and requires `--version` plus `--help` to boot under Node
354
351
  - `npm run check:source-purity`: fails on inline source maps, compiler-transformed React output, generated stubs, or generated types inside `src/`
355
352
  - `npm test`: runs packaging and release regression tests with Node's built-in test runner
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/`
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/`
360
356
  - `npm run rebuild:experimental`: manual alias for `npm run verify:source-build`
361
357
  - `npm run rebuild:experimental:legacy`: older reconstruction path kept for manual investigation
362
358