clavue 8.8.115 → 8.8.117
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 +9 -7
- package/dist/cli.js +250 -239
- package/dist/mao-command.js +62 -2290
- package/dist/provider-setup.js +1 -1
- package/docs/clavue-v2-mao-supervisor-architecture.md +73 -0
- package/docs/website-content-recommendations.md +17 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v8.8.
|
|
1
|
+
# Clavue v8.8.117
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -34,7 +34,7 @@ Canonical primary command surfaces:
|
|
|
34
34
|
- `/init`: create or refresh generated project rule files: `clavue.md`, `AGENTS.md`, and compatibility `CLAUDE.md`.
|
|
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
|
-
- `/mao` (`/codex` compatibility alias): run bundled Codex-style review and
|
|
37
|
+
- `/mao` (`/codex` compatibility alias): run bundled Codex-style review, rescue, and delivery-gate flows through the active Clavue provider profile.
|
|
38
38
|
- `/team`: inspect local team readiness, active team config, and capability state.
|
|
39
39
|
- `/retro`: run a multi-round repo retrospective and upgrade loop.
|
|
40
40
|
- `/tasks`: inspect task-board state for long-running work.
|
|
@@ -65,8 +65,8 @@ npx -y clavue
|
|
|
65
65
|
Run a specific version with `npx`:
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
npx -y clavue@8.8.
|
|
69
|
-
npx -y clavue@8.8.
|
|
68
|
+
npx -y clavue@8.8.117 --version
|
|
69
|
+
npx -y clavue@8.8.117
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -86,7 +86,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
86
86
|
Install a specific version globally:
|
|
87
87
|
|
|
88
88
|
```bash
|
|
89
|
-
curl -fsSL https://unpkg.com/clavue@8.8.
|
|
89
|
+
curl -fsSL https://unpkg.com/clavue@8.8.117/install.sh | bash -s -- 8.8.117
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
## Quick Start: Custom API
|
|
@@ -183,7 +183,7 @@ Version check:
|
|
|
183
183
|
```bash
|
|
184
184
|
clavue --version
|
|
185
185
|
npx -y clavue --version
|
|
186
|
-
npx -y clavue@8.8.
|
|
186
|
+
npx -y clavue@8.8.117 --version
|
|
187
187
|
# available after a global install and launcher setup
|
|
188
188
|
clavue --version
|
|
189
189
|
```
|
|
@@ -221,7 +221,7 @@ clavue setup-token
|
|
|
221
221
|
/provider clear
|
|
222
222
|
```
|
|
223
223
|
|
|
224
|
-
`/mao` is the preferred Codex surface. It reuses the active clavue provider profile directly, verifies `/v1/responses` reachability on the current route, and avoids a separate global Codex setup flow. `/codex` remains a compatibility alias. Mao jobs use the bundled Codex `exec` runtime by default; `CLAVUE_MAO_CODEX_RUNTIME=app-server` is recognized for setup diagnostics only in this release.
|
|
224
|
+
`/mao` is the preferred Codex surface. It reuses the active clavue provider profile directly, verifies `/v1/responses` reachability on the current route, and avoids a separate global Codex setup flow. `/codex` remains a compatibility alias. Mao jobs use the bundled Codex `exec` runtime by default; `CLAVUE_MAO_CODEX_RUNTIME=app-server` is recognized for setup diagnostics only in this release. `/mao gate` refreshes the silent supervisor ledger and reports whether final delivery, release, publish, tag, or push is currently allowed.
|
|
225
225
|
|
|
226
226
|
```text
|
|
227
227
|
/mao setup
|
|
@@ -230,6 +230,8 @@ clavue setup-token
|
|
|
230
230
|
/mao rescue --write fix the provider override bug and verify it
|
|
231
231
|
/mao rescue --resume apply the top fix from the previous Mao run
|
|
232
232
|
/mao status
|
|
233
|
+
/mao gate
|
|
234
|
+
/mao gate --json
|
|
233
235
|
/mao result
|
|
234
236
|
```
|
|
235
237
|
|