@mutmutco/claude-plugin 3.131.0 → 3.132.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.
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "mmi",
3
3
  "displayName": "MMI",
4
- "version": "3.131.0",
4
+ "version": "3.132.0",
5
+ "mmiCompat": "3.x",
5
6
  "description": "MMI workflow skills and org gates delivery.",
6
7
  "author": {
7
8
  "name": "MMI Future",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/claude-plugin",
3
- "version": "3.131.0",
3
+ "version": "3.132.0",
4
4
  "description": "MMI workflow skills and org gates delivery.",
5
5
  "author": {
6
6
  "name": "MMI Future",
@@ -13,7 +13,6 @@
13
13
  },
14
14
  "files": [
15
15
  ".claude-plugin/plugin.json",
16
- ".pi-plugin/package.json",
17
16
  "skills",
18
17
  "hooks",
19
18
  "scripts",
@@ -53,16 +53,13 @@ Still run it in the foreground and wait. The lock stops corruption, not confusio
53
53
  that reports "skipped — lock busy" has healed nothing, and an agent that does not read that line will
54
54
  carry on believing its tooling was fixed.
55
55
 
56
- `doctor --no-repo-writes` heals a stale npm global or a stale/unresolved plugin install (the **env**
57
- half of the interactive doctor, #3485/#3975) — it never touches the repo working tree. When it prints
56
+ `doctor --no-repo-writes` heals a stale/unresolved plugin install (the **env** half of the interactive
57
+ doctor, #3485/#3975) — it never touches the repo working tree. When it prints
58
58
  `↻ Updating mmi tooling, one moment…`, relay that before waiting; when it prints `↻ MMI tooling
59
59
  updated — …`, relay the reload/restart guidance.
60
60
 
61
61
  What the env half heals:
62
62
 
63
- - a behind npm global → `npm install -g @mutmutco/cli@<released version>`, pinned, never the floating
64
- `@latest`, which npm can resolve off a cached packument and reinstall the stale version right after a
65
- publish (#3422). Effective on the next invocation.
66
63
  - a stale or unresolved Claude plugin → `claude plugin marketplace remove mmi` → `… remove mutmutco` →
67
64
  `claude plugin marketplace add mutmutco/MMI-Hub` → `claude plugin install mmi@mutmutco`. A fresh
68
65
  reinstall, never `claude plugin update`, which nests into itself past MAX_PATH on Windows and wipes the
@@ -72,6 +69,10 @@ What the env half heals:
72
69
  docs/doctor-contract.md § Guarded cache prune): never the running/newest/installed version, a cache a
73
70
  live session holds is named "still held" and never forced.
74
71
 
72
+ What it does **not** do since #4954: install anything. A behind npm global is REPORTED (the `mmi-cli`
73
+ row names `npm install -g @mutmutco/cli@<released>`) and the `fleet` row reads the scheduled
74
+ `mmi-updater`'s journal — that reconciler is the single writer of CLI and plugin versions.
75
+
75
76
  - **Fast path** → `whoami` then `board read`; no foreground doctor.
76
77
  - **Hard setup signal** → run `doctor --no-repo-writes`, relay `↻` lines, then retry `board read` when appropriate.
77
78
  - **`mmi-cli: command not found`** → plugin PATH provisioning has not applied, or the standalone CLI is not installed.
@@ -13,10 +13,15 @@ One command. Run it when a session opens messy or before a handoff.
13
13
  mmi-cli doctor
14
14
  ```
15
15
 
16
- By default this **heals and cleans** (MMI-Hub#3975): CLI/plugin/marketplace env repairs, managed
17
- `.gitignore`, merged-branch / dead-worktree reap (including deferred IDE-locked removals), light board
18
- mechanical fixes, docs-index working-tree heal, and related full-lane checks. Secrets stay **out** of
19
- default doctor — use `mmi-cli vault secrets diff` when you need a catalog gap check.
16
+ By default this **heals and cleans** (MMI-Hub#3975): plugin env repairs, managed `.gitignore`,
17
+ merged-branch / dead-worktree reap (including deferred IDE-locked removals), light board mechanical
18
+ fixes, docs-index working-tree heal, and related full-lane checks. Secrets stay **out** of default
19
+ doctor — use `mmi-cli vault secrets diff` when you need a catalog gap check.
20
+
21
+ Doctor does **not** update the CLI or the host plugins (MMI-Hub#4954). The scheduled `mmi-updater`
22
+ reconciler is the single writer of those versions; doctor only REPORTS — the `mmi-cli` row names the
23
+ version gap and the `npm install -g @mutmutco/cli@<released>` that closes it, and the `fleet` row reads
24
+ the reconciler's journal (installed / expected / drift per surface).
20
25
 
21
26
  ## Flags
22
27
 
@@ -125,7 +125,7 @@ git rev-list --count origin/main..origin/development
125
125
 
126
126
  Before local gates or `release --apply`, ensure the repo-local / PATH `mmi-cli` matches the released train
127
127
  path — a stale checkout (e.g. 2.32.0 while 2.32.4 is released) fails release gates with opaque errors.
128
- Self-heal in place without repo writes (heals run by default since #3975; the flag suppresses only
128
+ Read the gap without repo writes (plugin/env repairs run by default since #3975; the flag suppresses only
129
129
  mutations of the working tree you are about to release from):
130
130
  ```bash
131
131
  mmi-cli doctor --no-repo-writes
@@ -136,10 +136,11 @@ inverse is also true: a run can exit **0** while printing ✗ lines (report-only
136
136
  direction is a gate. Read the rows.
137
137
 
138
138
  - **Blocking:** a red `mmi-cli` / `Claude plugin` version line, or a reported `minClientVersion` gap.
139
- `--no-repo-writes` does not block the env heals the step above self-updates the npm global CLI
140
- (#3272) and reinstalls the plugin (#3282), suppressing only repo-file writes so the re-run should clear
141
- it. If a gap persists, fix it — `mmi-cli doctor`, or `npm install -g @mutmutco/cli`before
142
- continuing. Do **not** proceed to Step 0b while the installed CLI is behind the Hub's `minClientVersion`.
139
+ **Doctor does not update the CLI (#4954).** The scheduled `mmi-updater` owns npm installs now; doctor
140
+ REPORTS the lag (the `mmi-cli` row) and reads the reconciler's journal (the `fleet` row). So the remedy
141
+ here is the explicit install below — `npm install -g @mutmutco/cli@<released>`not a doctor re-run.
142
+ `--no-repo-writes` still heals the plugin install (#3282), suppressing only repo-file writes. Do **not**
143
+ proceed to Step 0b while the installed CLI is behind the Hub's `minClientVersion`.
143
144
  - **Not blocking:** every other red check is hygiene, not a train gate. Stale branches and scratch heal with
144
145
  a plain `mmi-cli doctor` (after the release); `plugin cache` needs a different verb,
145
146
  `mmi-cli plugin prune --apply` — saying doctor cleared it was wrong. Both still exit 1 until you run the
@@ -1,23 +0,0 @@
1
- {
2
- "name": "mmi",
3
- "version": "3.131.0",
4
- "description": "MMI workflow skills and org gates delivery.",
5
- "author": {
6
- "name": "MMI Future",
7
- "email": "69869555+jervaise@users.noreply.github.com"
8
- },
9
- "homepage": "https://github.com/mutmutco/MMI-Hub",
10
- "private": true,
11
- "type": "module",
12
- "keywords": [
13
- "mmi",
14
- "mutmutco",
15
- "pi-package",
16
- "jervcode"
17
- ],
18
- "pi": {
19
- "skills": [
20
- "../skills"
21
- ]
22
- }
23
- }