@mutmutco/claude-plugin 4.0.16 → 4.0.17
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/release/SKILL.md
CHANGED
|
@@ -38,6 +38,9 @@ nothing deploys before the protected `main` push accepts that checked SHA.
|
|
|
38
38
|
branch's lineage and every tag-anchored check (coverage trailers, misalignment guard, version probes)
|
|
39
39
|
re-flags or mis-reads forever after. Any merge that carries an already-tagged commit — the Step 5
|
|
40
40
|
`main → development` roll-forward, any alignment PR — lands as a **true merge** (`--merge`), never squash.
|
|
41
|
+
`--wait` does not relax this: use `mmi-cli devops pr merge <n> --wait --merge` (or the policy-gated
|
|
42
|
+
`--auto --merge`). `--wait` alone still defaults the CLI merge method to squash and must not land an
|
|
43
|
+
alignment / tagged-commit-carrying PR.
|
|
41
44
|
- **A refused train is a stop, never a license to finish by hand.** Every fail-closed halt below — authority
|
|
42
45
|
probe, coverage guard, untolerated conflict, required checks, stray tag — ends the run. The recovery is
|
|
43
46
|
always to fix the cause and re-run the train; it is never hand-resolving on `main`, bare-pushing a train
|
|
@@ -294,7 +297,8 @@ why (a hotfix freezes a snapshot that `development` can keep rewriting).
|
|
|
294
297
|
Alignment PRs are the exception to the org's squash default: land them with a true merge —
|
|
295
298
|
`mmi-cli devops pr merge <n> --auto --merge` (not squash; a squash discards the merge parentage, so the
|
|
296
299
|
misalignment guard re-flags the same divergence on the next run). `--auto` clears the checks the PR
|
|
297
|
-
triggers, which block an immediate merge right after a release.
|
|
300
|
+
triggers, which block an immediate merge right after a release. When awaiting checks inline, keep
|
|
301
|
+
`--merge`: `mmi-cli devops pr merge <n> --wait --merge` — `--wait` alone is not enough (merge floor above).
|
|
298
302
|
|
|
299
303
|
**Exception — version-manifest and `.gitignore` paths.** `mmi-cli devops release --apply` tolerates
|
|
300
304
|
conflicts confined to the version-fold paths (Step 1b) and `.gitignore` (#1037 — a
|
|
@@ -529,7 +533,8 @@ mmi-cli oracle org project sync-info --apply # omit --apply for the read-only
|
|
|
529
533
|
PR with a true merge** — `mmi-cli devops pr merge <number> --auto --merge` (never squash — a squash drops the merge
|
|
530
534
|
parentage and the misalignment guard re-flags the divergence). `--auto` is what makes it land right after a
|
|
531
535
|
release: the alignment PR's own `cli`/`infra`/`docs` checks are still running, so a plain immediate merge is
|
|
532
|
-
policy-blocked — `--auto` merges once they pass.
|
|
536
|
+
policy-blocked — `--auto` merges once they pass. If you await with `--wait` instead, still pass `--merge`
|
|
537
|
+
(`mmi-cli devops pr merge <number> --wait --merge`); `--wait` alone must not land the alignment PR. Never force.
|
|
533
538
|
- Full-track repos: `mmi-cli devops release --apply` already aligned `rc` to the released `main` (#1036 — the
|
|
534
539
|
push runs inside the authority-gated train; the result reports it as `rcAlignment`). No manual `rc`
|
|
535
540
|
push — if the result reports a failed alignment, investigate and rerun via the train, never bare-push.
|