clavue 8.28.15 → 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 +5 -4
- package/dist/cli.js +223 -206
- package/dist/mao-command.js +1 -1
- package/dist/openai-responses-adapter.js +2 -2
- 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`
|