@mutmutco/codex-plugin 4.3.43 → 4.3.44
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
|
@@ -34,8 +34,10 @@ Read the selected release skill before operating the train. Let it choose versio
|
|
|
34
34
|
publish, deploy, and verify the resulting release. A refusal requires fixing its cause; do not
|
|
35
35
|
finish by hand, bypass checks, or start a duplicate release.
|
|
36
36
|
A release announces itself in Slack: the Hub to the org alerts channel, a product to its own
|
|
37
|
-
project channel when the project
|
|
38
|
-
by hand.
|
|
37
|
+
project channel when the project's registry META sets `releaseChannel`; never post release notes
|
|
38
|
+
by hand. The Hub always needs a curated `--announce-summary-file`, and so does any product whose
|
|
39
|
+
META sets `releaseChannel` — 3–6 plain lines in the project's `releaseLanguage` (default `en`),
|
|
40
|
+
written for that project's audience, never the raw PR titles.
|
|
39
41
|
|
|
40
42
|
For local or private live testing, read [stage](../../stage/SKILL.md).
|
|
41
43
|
For a new product repository, use [bootstrap](../../bootstrap/SKILL.md).
|
package/skills/release/SKILL.md
CHANGED
|
@@ -33,7 +33,7 @@ Read `ready`, then `findings[]`: each carries `code`, `severity` (`blocker` · `
|
|
|
33
33
|
|
|
34
34
|
Run from the primary checkout on the lane's start branch (`rc`; `development` for direct-track and `--dev`). Export the bump intent once from the bare argument — `MMI_BUMP_INTENT=minor|major|patch`, unset → `patch`; `MMI_RELEASE_VERSION=X.Y.Z` only for an exact target the tag math cannot derive.
|
|
35
35
|
|
|
36
|
-
MMI-Hub
|
|
36
|
+
Two cases need a summary file. (1) **MMI-Hub** — always: write a fresh 3–6 line neutral summary to `f=$(mktemp tmp/release-summary.XXXXXX)` — sourced from Hub PR titles only (`origin/main..origin/development`), rewritten in Hub-subsystem terms, never a product or brand name. Hub scope is only `mutmutco/MMI-Hub`: never a product's board, `ds-propagate.yml`, or a product's deploy state. (2) **Any product repo whose META carries `releaseChannel`** (`mmi-cli oracle org project get {owner}/{repo} --json`) — required too: read `releaseLanguage` (default `en`) and write 3–6 lines IN THAT LANGUAGE, in plain words for the project's audience: what changed and why it matters to a user; no commit prefixes, no issue or PR numbers, no file names, no product-internal jargon. The train refuses `--apply` without the file, and raw release notes are never posted to a project channel. A repo with no `releaseChannel` announces nothing and needs no file.
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
r=$(mktemp tmp/release-receipt.XXXXXX)
|