@mutmutco/kilo-plugin 3.119.0 → 3.121.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/release/SKILL.md +9 -0
package/package.json
CHANGED
package/skills/release/SKILL.md
CHANGED
|
@@ -145,6 +145,15 @@ A different npm MAJOR (e.g. local 12 vs. CI's 11) resolves the same lockfile dif
|
|
|
145
145
|
<pkg> from lock file` on a lockfile that is not actually broken. Align the local npm major
|
|
146
146
|
(`npm install -g npm@<CI major>`) and re-run `npm ci` before rewriting or regenerating the lockfile.
|
|
147
147
|
|
|
148
|
+
**A `npm ci was killed (signal SIGTERM)` failure during the fold is a cold npm cache, not a lockfile or
|
|
149
|
+
toolchain problem (#4841).** The signature is the kill, not error text: no `Missing:` line, no lockfile
|
|
150
|
+
complaint at all — the fold's child-process budget expired while a cold cache installed the full tree.
|
|
151
|
+
The npm-major note above is inert here (majors match, the lockfile is fine), and following it tempts the
|
|
152
|
+
one thing it warns against — regenerating the lockfile for a problem that has nothing to do with it.
|
|
153
|
+
Warm the cache with a plain `npm ci` in the release checkout, then rerun the identical train command; the
|
|
154
|
+
rollback the failed fold already ran makes the rerun clean. Never regenerate or rewrite the lockfile in
|
|
155
|
+
response to a SIGTERM kill.
|
|
156
|
+
|
|
148
157
|
**Then check the version yourself — do not rely on doctor having printed a row (#3674).** "Read the rows"
|
|
149
158
|
resolves to "proceed" when the row is *absent*, and doctor's version row is conditional. On 2026-07-27 this
|
|
150
159
|
step reported healthy with no version line while the installed CLI was 3.70.0 against a released 3.71.0;
|