| name | pushing |
| description | Run the pre-push gate (update, install, fix --all, check --all, cover) and, only on all-green, push origin + watch CI to green. The deterministic executor for the fleet push workflow — landing on local main is the default; this guards the push when you choose to send it. Use before pushing the wheelhouse (the fleet's canonical source) to origin. |
| user-invocable | true |
| allowed-tools | Bash(node:*), Bash(git:*), Bash(gh:*) |
| model | claude-haiku-4-5 |
| context | fork |
pushing
Landing on local main is the default; pushing origin is deliberate — the wheelhouse is the fleet's canonical source (members cascade from origin/main), so a red push breaks the fleet. This skill gates the push, then drives CI to green.
Run the gate
node scripts/fleet/pre-push-gate.mts
Runs in order, stopping + failing loud on the first red step:
pnpm run update — refresh tool/catalog pins (soak-held stay held)
pnpm install — reconcile the lockfile
pnpm run fix --all — lint/format autofix
pnpm run check --all — the fleet check gates
pnpm run cover — full coverage suite (covers "all tests pass")
On GREEN
Push, then drive CI to green — don't walk away on a red run (the post-push-ci-monitor-nudge hook reminds you):
git push
gh run watch
If pnpm run update / pnpm install changed the lockfile or pins, commit those first (the lockfile-only -o pnpm-lock.yaml reconcile is sanctioned), then re-run the gate. The gate never pushes for you — it only tells you it is safe to.