with one click
ship
Commit, create PR, wait for CI, and merge
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Commit, create PR, wait for CI, and merge
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | ship |
| description | Commit, create PR, wait for CI, and merge |
Commit current changes, open a PR, wait for CI to pass, then squash-merge.
Run git status and git diff --stat to see what's changed. Run git log --oneline -5 for commit message style.
Draft a concise commit message based on the changes. Stage relevant files (not .env, credentials, etc.) and commit.
Create a feature branch if not already on one (use a descriptive name based on the changes). Push with -u.
Create a PR with gh pr create — short title, summary bullets, test plan.
Wait for CI: gh pr checks <pr-number> --watch
Once CI passes, merge: gh pr merge <pr-number> --squash --delete-branch
If any step fails, stop and report the error.