@mutmutco/pi-plugin 4.3.57 → 4.3.58
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/hotfix/SKILL.md
CHANGED
|
@@ -62,6 +62,10 @@ MMI-Hub adds `--announce-summary-file "$f"` with a fresh 3–6 line neutral summ
|
|
|
62
62
|
|
|
63
63
|
## Verify
|
|
64
64
|
|
|
65
|
+
Slack announcements use the GitHub-authenticated Hub service and its server-side MMI vault access.
|
|
66
|
+
Developers need no local AWS tools, AWS identity, or shared Slack key. Preserve a failed summary
|
|
67
|
+
for the supported continuation; never replay a delivery whose result is uncertain.
|
|
68
|
+
|
|
65
69
|
Read the receipts, never the exit code (exit `1` = a follow-up failed after the tag; a pending follow-up exits `0`, so a clean exit alone never means every leg resolved):
|
|
66
70
|
|
|
67
71
|
- `runs[]` — the release-triggered runs on the tagged SHA (workflow, conclusion, url). Watch each non-success entry to conclusion: `gh run watch <run-id> --repo {owner}/{repo} --exit-status`. Name which run is red: `deploy.yml` / `publish.yml` / `tenant-deploy.yml` / `jerv-gateway` is a deploy or publish verdict; a `gate` push run is ordinary CI sharing the SHA. `jerv-gateway` is the operator-host deploy leg: it has no run id to watch, so read its `deployNote` / `ledger.phases.deploy` — `pending` there means production was never deployed and blocks the next train run.
|
|
@@ -91,6 +91,12 @@ by hand. The Hub always needs a curated `--announce-summary-file`, and so does a
|
|
|
91
91
|
META sets `releaseChannel` — 3–6 plain lines in the project's `releaseLanguage` (default `en`),
|
|
92
92
|
written for that project's audience, never the raw PR titles.
|
|
93
93
|
|
|
94
|
+
Announcement delivery uses the developer's GitHub-authenticated Hub session. The Hub checks project
|
|
95
|
+
authority, resolves the registered channel, and reads the MMI Future Slack key inside its vault boundary.
|
|
96
|
+
Developers need no AWS CLI, AWS identity, or copy of the shared bot key. Keep a failed announcement's
|
|
97
|
+
summary for the supported resume path. A delivery-unknown response requires checking the existing
|
|
98
|
+
message; never resend blindly. Confirmed delivery is recorded per repository and release tag.
|
|
99
|
+
|
|
94
100
|
For local or private live testing, read [stage](../../stage/SKILL.md).
|
|
95
101
|
For a new product repository, use [bootstrap](../../bootstrap/SKILL.md).
|
|
96
102
|
|
package/skills/release/SKILL.md
CHANGED
|
@@ -64,6 +64,11 @@ Use the actual current stage, never a guessed sequence. Explain a pending result
|
|
|
64
64
|
|
|
65
65
|
## Verify
|
|
66
66
|
|
|
67
|
+
Slack announcements use the GitHub-authenticated Hub service and its server-side MMI vault access.
|
|
68
|
+
Never install AWS, ask for AWS credentials, or copy the shared Slack key to unblock a developer.
|
|
69
|
+
The Hub chooses the registered channel and checks project authority. A failed announcement keeps
|
|
70
|
+
its summary file; an uncertain delivery is never automatically replayed.
|
|
71
|
+
|
|
67
72
|
Read the saved result, never the exit code (exit `1` = a follow-up failed after promotion; a pending follow-up exits `0`, so a clean exit alone never means every leg resolved):
|
|
68
73
|
|
|
69
74
|
- `releaseVerdict.releaseStatus` + `followUpStatus` — `succeeded` + `pending` is shipped with the follow-up unresolved: neither failed nor done. A `--resume` receipt carries the same `releaseVerdict` (`command: release-resume`), plus its own `mode` and `state`.
|
package/skills/stage/SKILL.md
CHANGED
|
@@ -48,8 +48,9 @@ compose logs`/`down` fails the same `required variable … is missing a value`.
|
|
|
48
48
|
`NODE_AUTH_TOKEN=@github-packages-token` for `@mutmutco/fofu-ds` on GitHub Packages), `/stage` injects those
|
|
49
49
|
BuildKit ids into the **`docker compose build`** process env only — not into the running container. Central
|
|
50
50
|
deploy mints the packages sentinel from Actions `GITHUB_TOKEN`; a laptop cannot. Resolution order: existing
|
|
51
|
-
process env → stageless project vault secret under the BuildKit id
|
|
52
|
-
`
|
|
51
|
+
process env → stageless project vault secret under the BuildKit id → existing GitHub sign-in
|
|
52
|
+
(`GH_TOKEN`, `GITHUB_TOKEN`, or `gh auth token`). Package read access is still required and is enforced
|
|
53
|
+
by GitHub Packages during the build. If every source is missing, `/stage` fails before the build.
|
|
53
54
|
Setup: [`docs/Guides/tenant-runtime.md`](../../docs/Guides/tenant-runtime.md) § Local `/stage`. Never commit
|
|
54
55
|
or print the PAT.
|
|
55
56
|
|