@mutmutco/kilo-plugin 3.80.0 → 3.82.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 +1 -1
- package/skills/hotfix/SKILL.md +1 -1
- package/skills/mmi/SKILL.md +1 -1
- package/skills/rcand/SKILL.md +2 -2
- package/skills/release/SKILL.md +11 -14
package/package.json
CHANGED
package/skills/hotfix/SKILL.md
CHANGED
|
@@ -34,7 +34,7 @@ and CLI health before starting:
|
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
mmi-cli org access role <owner/repo> --json
|
|
37
|
-
mmi-cli doctor --
|
|
37
|
+
mmi-cli doctor --no-repo-writes
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
Stop on a red authority or CLI-version result. The worktree must be clean; move scratch into `tmp/` or
|
package/skills/mmi/SKILL.md
CHANGED
|
@@ -52,7 +52,7 @@ preflight that reports "skipped — lock busy" has healed nothing, and an agent
|
|
|
52
52
|
line will carry on believing its tooling was fixed.
|
|
53
53
|
|
|
54
54
|
`doctor --preflight` detects a stale npm global or a stale/unresolved plugin install and runs the **env**
|
|
55
|
-
half of the interactive
|
|
55
|
+
half of the interactive doctor self-heal (#3485/#3975) — it never touches the repo working tree, and
|
|
56
56
|
never pays the train-branch sync or the gc sweep. It still belongs off the critical board path unless it
|
|
57
57
|
has proof it must heal. When it prints `↻ Updating mmi tooling, one moment…`, relay that before waiting;
|
|
58
58
|
when it prints `↻ MMI tooling updated — …`, relay the reload/restart guidance.
|
package/skills/rcand/SKILL.md
CHANGED
|
@@ -30,7 +30,7 @@ never proceed unverified.
|
|
|
30
30
|
**CLI freshness (#2562):** check the running CLI is current BEFORE step 1 — `mmi-cli rcand --apply` refuses
|
|
31
31
|
a stale CLI at its own step 0 (pre-mutation), but the manual steps below mutate local state earlier, so a
|
|
32
32
|
stale CLI discovered late reads as a mid-train abort. When another train just published a new CLI (e.g. a
|
|
33
|
-
Hub release), run `mmi-cli doctor --
|
|
33
|
+
Hub release), run `mmi-cli doctor --no-repo-writes` first. A stale-CLI refusal itself changes
|
|
34
34
|
nothing; after updating, the rerun resumes any partial train state safely.
|
|
35
35
|
|
|
36
36
|
**Run from the checkout that already has `development` — never a fresh isolated worktree (#2770).** This is
|
|
@@ -51,7 +51,7 @@ git rev-list --count origin/rc..origin/development
|
|
|
51
51
|
```
|
|
52
52
|
Dirty → stop. Count `0` → stop ("nothing to promote"). `>0` → capture the commit list for the report.
|
|
53
53
|
|
|
54
|
-
> Verifying CLI/plugin-health before a train? Use `mmi-cli doctor --
|
|
54
|
+
> Verifying CLI/plugin-health before a train? Use `mmi-cli doctor --no-repo-writes`: it runs the
|
|
55
55
|
> env/plugin repairs but never mutates the working tree, so a pending org-managed `.gitignore` repair is
|
|
56
56
|
> reported with its follow-up command instead of dirtying the product checkout right before promotion.
|
|
57
57
|
> Apply that follow-up after the train.
|
package/skills/release/SKILL.md
CHANGED
|
@@ -93,28 +93,25 @@ git rev-list --count origin/main..origin/development
|
|
|
93
93
|
|
|
94
94
|
Before local gates or `release --apply`, ensure the repo-local / PATH `mmi-cli` matches the released train
|
|
95
95
|
path — a stale checkout (e.g. 2.32.0 while 2.32.4 is released) fails release gates with opaque errors.
|
|
96
|
-
Self-heal in place without repo writes
|
|
96
|
+
Self-heal in place without repo writes (heals run by default since #3975; the flag suppresses only
|
|
97
|
+
mutations of the working tree you are about to release from):
|
|
97
98
|
```bash
|
|
98
|
-
mmi-cli doctor --
|
|
99
|
+
mmi-cli doctor --no-repo-writes
|
|
99
100
|
```
|
|
100
101
|
**Read the checks, not the exit code.** `doctor` exits non-zero on any failed check it could have healed —
|
|
101
102
|
not just a version gap — so a red exit here does not by itself mean the train is blocked (#2962). The
|
|
102
|
-
inverse is also true
|
|
103
|
-
|
|
104
|
-
declines to gate on, since their remedy is a human review or lives in the owning repo. Neither direction
|
|
105
|
-
is a gate. Read the rows.
|
|
103
|
+
inverse is also true: a run can exit **0** while printing ✗ lines (report-only rows, #3485). Neither
|
|
104
|
+
direction is a gate. Read the rows.
|
|
106
105
|
|
|
107
|
-
- **Blocking:** a red `mmi-cli` / `Claude plugin` version line, or a reported `minClientVersion` gap.
|
|
108
|
-
|
|
106
|
+
- **Blocking:** a red `mmi-cli` / `Claude plugin` version line, or a reported `minClientVersion` gap.
|
|
107
|
+
`--no-repo-writes` does not block the env heals — the step above self-updates the npm global CLI
|
|
109
108
|
(#3272) and reinstalls the plugin (#3282), suppressing only repo-file writes — so the re-run should clear
|
|
110
|
-
it. If a gap persists, fix it — `mmi-cli doctor
|
|
109
|
+
it. If a gap persists, fix it — `mmi-cli doctor`, or `npm install -g @mutmutco/cli` — before
|
|
111
110
|
continuing. Do **not** proceed to Step 0b while the installed CLI is behind the Hub's `minClientVersion`.
|
|
112
111
|
- **Not blocking:** every other red check is hygiene, not a train gate. Stale branches and scratch heal with
|
|
113
|
-
`mmi-cli doctor
|
|
114
|
-
`
|
|
115
|
-
|
|
116
|
-
since #3485 — not because no verb exists, but because the design refuses to gate on a human review or
|
|
117
|
-
on a fault owned by another repo. Read them, then proceed.
|
|
112
|
+
a plain `mmi-cli doctor` (after the release); `plugin cache` needs a different verb,
|
|
113
|
+
`mmi-cli plugin prune --apply` — saying doctor cleared it was wrong. Both still exit 1 until you run the
|
|
114
|
+
right verb. Read them, then proceed.
|
|
118
115
|
|
|
119
116
|
Treating doctor's exit code as the gate halts a healthy train on cosmetic drift — or, worse, teaches an
|
|
120
117
|
operator to ignore doctor's exit code entirely.
|