@mutmutco/codex-plugin 4.3.45 → 4.3.47
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/.codex-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/skills/stage/SKILL.md +12 -12
package/package.json
CHANGED
package/skills/stage/SKILL.md
CHANGED
|
@@ -128,12 +128,12 @@ file (#6351). A vault-native repo with no `.env` gets `PORT` defaulted to the bo
|
|
|
128
128
|
|
|
129
129
|
## /stage --live — personal cloud dev stage
|
|
130
130
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
131
|
+
Project admins can deploy the **current branch** to their project's dev runtime without an IP
|
|
132
|
+
restriction. The CLI dispatches legacy gate cleanup, then the dev deploy through the Hub backend.
|
|
133
|
+
Cleanup removes only that project's old stage rules and creates no Cloudflare rules, so rule-slot
|
|
134
|
+
quotas do not block staging. It still reads Cloudflare to detect old gates; cleanup failures stay visible.
|
|
135
|
+
The stage is accessible from any IP after both workflows succeed. The app's own sign-in still applies.
|
|
136
|
+
No SSH from your machine; project authorization remains enforced by the Hub.
|
|
137
137
|
|
|
138
138
|
**Deploy-model preflight (#5466 / #5467).** `/stage --live` is **not** generally available. Read
|
|
139
139
|
`deployModel` first (`mmi-cli oracle org project get {owner}/{repo}` → `deployModel`, or the dry
|
|
@@ -141,15 +141,15 @@ moves through the central workflows.
|
|
|
141
141
|
model the Hub tenant-deploy + tenant-control gates require). **`registry-publish` is not applicable**
|
|
142
142
|
for live stages — nor are hub-serverless, solo-container, static-cdn, content, or none. For an
|
|
143
143
|
unsupported model the dry plan refuses **before** offering `--apply` / `--down`; do not invent a
|
|
144
|
-
tenant deploy
|
|
144
|
+
tenant deploy.
|
|
145
145
|
|
|
146
146
|
```bash
|
|
147
147
|
mmi-cli stage --live # dry-run plan (refuses when deployModel is not tenant-container)
|
|
148
|
-
mmi-cli stage --live --apply #
|
|
148
|
+
mmi-cli stage --live --apply # clear legacy gates + deploy without an IP restriction
|
|
149
149
|
```
|
|
150
150
|
|
|
151
|
-
Tear it down when done — **only when `--apply` actually created a runtime
|
|
152
|
-
|
|
151
|
+
Tear it down when done — **only when `--apply` actually created a runtime**. This stops the runtime
|
|
152
|
+
without Cloudflare work:
|
|
153
153
|
|
|
154
154
|
```bash
|
|
155
155
|
mmi-cli stage --live --down --apply
|
|
@@ -166,8 +166,8 @@ The stage URL, what's running (server + tools), the workspace path (`tmp/stage/`
|
|
|
166
166
|
## Notes
|
|
167
167
|
|
|
168
168
|
- `/stage` is local — no AWS, no deploy, no board or version effect. The one cloud exception is
|
|
169
|
-
`--live`: an on-demand **dev** stage of your branch for **`tenant-container`** repos only,
|
|
170
|
-
|
|
169
|
+
`--live`: an on-demand **dev** stage of your branch for **`tenant-container`** repos only, without
|
|
170
|
+
a stage IP restriction (above). Preflight `deployModel` before offering it; `registry-publish`
|
|
171
171
|
and other models have no live stage.
|
|
172
172
|
- Remote rc/live environments move only through `/rcand`, `/release`, and `/hotfix`.
|
|
173
173
|
- Everything is gitignored; `/stage` never produces a tracked change.
|