@mutmutco/codex-plugin 3.132.1 → 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.
package/package.json
CHANGED
package/skills/epic/SKILL.md
CHANGED
|
@@ -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.
|
|
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,
|
|
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
|
|
package/skills/release/SKILL.md
CHANGED
|
@@ -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;
|