clavue 8.8.129 → 8.9.0

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.8.129
1
+ # Clavue v8.9.0
2
2
 
3
3
  ![Clavue cover](https://unpkg.com/clavue/image.png)
4
4
 
@@ -15,7 +15,7 @@ Clavue is built around a simple operating model: the user owns the workflow, the
15
15
  - Fast first run: install, choose an API configuration mode, paste URL/key or token, set model slots if needed, then start coding.
16
16
  - Visible configuration: `/provider` and `clavue provider` expose the active route, saved profiles, credential mode, model slots, validation, repair, and current environment state.
17
17
  - Practical autonomy: permission setup should make development smoother while still being explicit about trust boundaries.
18
- - Continuity over spectacle: long-context recovery, compaction, `/mao`, `/team`, and `/retro` exist to keep work moving, not to add noise.
18
+ - Continuity over spectacle: long-context recovery, compaction, `/team`, and `/retro` exist to keep work moving, not to add noise.
19
19
 
20
20
  ## What Clavue Is
21
21
 
@@ -34,7 +34,6 @@ 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, rescue, and delivery-gate flows through the active Clavue provider profile.
38
37
  - `/team`: inspect local team readiness, active team config, and capability state.
39
38
  - `/retro`: run a multi-round repo retrospective and upgrade loop.
40
39
  - `/tasks`: inspect task-board state for long-running work.
@@ -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.8.129 --version
69
- npx -y clavue@8.8.129
67
+ npx -y clavue@8.9.0 --version
68
+ npx -y clavue@8.9.0
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.8.129/install.sh | bash -s -- 8.8.129
88
+ curl -fsSL https://unpkg.com/clavue@8.9.0/install.sh | bash -s -- 8.9.0
90
89
  ```
91
90
 
92
91
  ## Quick Start: Custom API
@@ -191,7 +190,7 @@ Version check:
191
190
  ```bash
192
191
  clavue --version
193
192
  npx -y clavue --version
194
- npx -y clavue@8.8.129 --version
193
+ npx -y clavue@8.9.0 --version
195
194
  # available after a global install and launcher setup
196
195
  clavue --version
197
196
  ```
@@ -229,19 +228,7 @@ clavue setup-token
229
228
  /provider clear
230
229
  ```
231
230
 
232
- `/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.
233
-
234
- ```text
235
- /mao setup
236
- /mao review --background
237
- /mao adversarial-review --base main auth and retry handling
238
- /mao rescue --write fix the provider override bug and verify it
239
- /mao rescue --resume apply the top fix from the previous Mao run
240
- /mao status
241
- /mao gate
242
- /mao gate --json
243
- /mao result
244
- ```
231
+ The Mao supervisor ledger is still used internally by delivery gates; user-facing `/mao` and `/codex` command surfaces are hidden while native Team/Agent workflows remain the public agent system.
245
232
 
246
233
  `/team` inspects real local team state from the active config root instead of giving a generic explanation. By default that is `~/.clavue/teams`, but it follows `CLAVUE_CONFIG_DIR` if you launch clavue against a different config root.
247
234