ワンクリックで
ship
Evaluate changes, branch, commit, create issue + PR, get user review, merge, and clean up.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Evaluate changes, branch, commit, create issue + PR, get user review, merge, and clean up.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | ship |
| description | Evaluate changes, branch, commit, create issue + PR, get user review, merge, and clean up. |
| allowed-tools | Bash(git*), Bash(gh*) |
Ship current work: evaluate changes, create a branch if needed, commit, open issue + PR, get user approval, merge, and clean up.
Run git status and git diff to check for uncommitted changes.
Run git branch --show-current to see what branch you're on.
Run git log main..HEAD --oneline (if on a feature branch) to see commits ahead of main.
Also check for local feature branches ahead of main: git branch --no-merged main.
Four possible states:
| State | Action |
|---|---|
On main with uncommitted changes | → Go to step 2 (branch + commit) |
On main, clean, but feature branches exist ahead of main | → List them, ask user which to ship, checkout that branch, then skip to step 4 |
On main with no changes and no feature branches | → Abort: "Nothing to ship." |
| On a feature branch (with or without uncommitted changes) | → Go to step 3 (commit if needed, then skip to step 4) |
main with uncommitted changes)feat/..., fix/..., refactor/..., docs/....git checkout -b <branch-name>git add -A).Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>.gh issue create describing the changes.git push -u origin <branch>.gh pr create linking to the issue (Closes #N).Closes #N + test plan.start <PR_URL> (Windows) or open <PR_URL> (macOS).gh pr merge <number> --squash --delete-branch.main and pull: git checkout main && git pull.git branch -d <branch>.git remote prune origin.git add -A — avoid accidentally committing secrets or build artifacts.