| name | ship-staging |
| description | Prepare, commit, push, and summarize a staging-only change for Orbital Breach. |
| argument-hint | ["summary-or-commit-scope"] |
| disable-model-invocation | true |
| allowed-tools | Read Grep Glob LS Bash |
Ship Staging
Use this skill when the user wants to land work on staging and prepare for a PR to main.
Workflow
- Inspect
git status --short --branch.
- Separate intended changes from unrelated local edits.
- Run
/preflight unless the user explicitly asks to skip it.
- Stage only the intended files.
- Write a concise commit message that matches the actual diff.
- Push to
origin/staging.
- Summarize what changed and what remains local.
Guardrails
- Never sweep unrelated working tree changes into the commit.
- If local changes are mixed together in the same file, stop and explain the risk before staging.
- If the branch is not
staging, say so and fix it only if the user asked for branch changes.
- For PR prep, summarize the exact commits ahead of
main.