@mutmutco/claude-plugin 3.132.2 → 3.133.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,7 @@
1
1
  {
2
2
  "name": "mmi",
3
3
  "displayName": "MMI",
4
- "version": "3.132.2",
4
+ "version": "3.133.0",
5
5
  "mmiCompat": "3.x",
6
6
  "description": "MMI workflow skills and org gates delivery.",
7
7
  "author": {
package/hooks/hooks.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "hooks": [
7
7
  {
8
8
  "type": "command",
9
- "command": "\"${CLAUDE_PLUGIN_ROOT}/bin/mmi-hook-console.cmd\" \"${CLAUDE_PLUGIN_ROOT}/scripts/hook-run.mjs\" --surface claude --gate secret-output",
9
+ "command": "\"${CLAUDE_PLUGIN_ROOT}/bin/mmi-hook\" \"${CLAUDE_PLUGIN_ROOT}/scripts/hook-run.mjs\" --surface claude --gate secret-output",
10
10
  "timeout": 5
11
11
  }
12
12
  ]
@@ -18,7 +18,7 @@
18
18
  "hooks": [
19
19
  {
20
20
  "type": "command",
21
- "command": "\"${CLAUDE_PLUGIN_ROOT}/bin/mmi-hook-console.cmd\" \"${CLAUDE_PLUGIN_ROOT}/scripts/hook-run.mjs\" --surface claude --gate command-ladder",
21
+ "command": "\"${CLAUDE_PLUGIN_ROOT}/bin/mmi-hook\" \"${CLAUDE_PLUGIN_ROOT}/scripts/hook-run.mjs\" --surface claude --gate command-ladder",
22
22
  "timeout": 10
23
23
  }
24
24
  ]
@@ -28,7 +28,7 @@
28
28
  "hooks": [
29
29
  {
30
30
  "type": "command",
31
- "command": "\"${CLAUDE_PLUGIN_ROOT}/bin/mmi-hook-console.cmd\" \"${CLAUDE_PLUGIN_ROOT}/scripts/hook-run.mjs\" --surface claude --gate vault-edit",
31
+ "command": "\"${CLAUDE_PLUGIN_ROOT}/bin/mmi-hook\" \"${CLAUDE_PLUGIN_ROOT}/scripts/hook-run.mjs\" --surface claude --gate vault-edit",
32
32
  "timeout": 5
33
33
  }
34
34
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/claude-plugin",
3
- "version": "3.132.2",
3
+ "version": "3.133.0",
4
4
  "description": "MMI workflow skills and org gates delivery.",
5
5
  "author": {
6
6
  "name": "MMI Future",
@@ -31,6 +31,12 @@ Keep the parent as the umbrella — do not close it until the last child merges.
31
31
 
32
32
  ## Step 1 — draft the batch file
33
33
 
34
+ Before drafting, inspect the umbrella's existing children:
35
+
36
+ ```bash
37
+ mmi-cli oracle issue children <owner/repo#N> # each child: number/title/state/repo/boardStatus/linkedPrs
38
+ ```
39
+
34
40
  Write a JSON array (one object per child) to a scratch path under `tmp/`. Each row:
35
41
 
36
42
  ```json
@@ -54,7 +60,9 @@ Write a JSON array (one object per child) to a scratch path under `tmp/`. Each r
54
60
  the prefix. A top-level `--surface <value>` may supply the default for every applicable row.
55
61
 
56
62
  The batch **pre-validates every row before creating any** — one bad row fails the whole set with an
57
- aggregate error, so you fix all of them once. Get the user's go on the drafted set before writing.
63
+ aggregate error, so you fix all of them once. It warns when a row title closely matches an existing open
64
+ child of the same parent; inspect that warning before creating a duplicate. Get the user's go on the drafted
65
+ set before writing.
58
66
 
59
67
  ## Step 2 — create the children
60
68
 
@@ -15,13 +15,16 @@ mmi-cli doctor
15
15
 
16
16
  By default this **heals and cleans** (MMI-Hub#3975): plugin env repairs, managed `.gitignore`,
17
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
18
+ fixes, docs-index working-tree heal, detection that names hung `mmi-hook` / `hook-run` processes
19
+ older than the session bound, and related full-lane checks. Secrets stay **out** of default
19
20
  doctor — use `mmi-cli vault secrets diff` when you need a catalog gap check.
20
21
 
21
22
  Doctor does **not** update the CLI or the host plugins (MMI-Hub#4954). The scheduled `mmi-updater`
22
23
  reconciler is the single writer of those versions; doctor only REPORTS — the `mmi-cli` row names the
23
24
  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).
25
+ the reconciler's journal (installed / expected / drift per surface). Its plugin-heal/update pass
26
+ covers every surface from any invocation surface — including Cursor's local-checkout row, not only
27
+ the active surface.
25
28
 
26
29
  ## Flags
27
30
 
@@ -169,6 +169,11 @@ Warm the cache with a plain `npm ci` in the release checkout, then rerun the ide
169
169
  rollback the failed fold already ran makes the rerun clean. Never regenerate or rewrite the lockfile in
170
170
  response to a SIGTERM kill.
171
171
 
172
+ **Repeated `EPERM` or `EBUSY` unlink errors during the fold's npm install on Windows are one race window,
173
+ not a lockfile failure (#4982).** Rename `node_modules` aside once into a gitignored `tmp/` path, then rerun
174
+ the identical train command. `npm ci` extracts into the now-empty tree and performs no unlinks; do not retry
175
+ this workaround repeatedly.
176
+
172
177
  **Then check the version yourself — do not rely on doctor having printed a row (#3674).** "Read the rows"
173
178
  resolves to "proceed" when the row is *absent*, and doctor's version row is conditional. On 2026-07-27 this
174
179
  step reported healthy with no version line while the installed CLI was 3.70.0 against a released 3.71.0;