ワンクリックで
ship
Commit, create PR, wait for CI, and merge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Commit, create PR, wait for CI, and merge
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| 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.