com um clique
ship
Commit, create PR, wait for CI, and merge
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Commit, create PR, wait for CI, and merge
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional 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.