Merge pr
Production-grade Claude Code skills for shipping quality code. One command takes your branch from "done coding" to PR-ready via audit → review → docs → push.
npx -y skills add cloverink/shipwright --skill merge-prAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Merge current PR after CI passes. Waits for all checks, squash merges, deletes branch, switches to main.
SKILL.md
1.0 KB, as published. Nobody here has run it
/merge-pr
Wait for CI, then merge cleanly.
Workflow
- Get current PR —
gh pr viewon current branch - Wait for CI — poll every 15s until all checks pass
- Squash merge —
gh pr merge --squash --delete-branch - Switch to main —
git checkout main && git pull --rebase - Report — confirm merge succeeded
Rules
<!-- CONFIGURE: Change merge strategy (--squash, --merge, --rebase) and branch cleanup to match your workflow -->- Never merges with failing CI — if checks fail, report which ones and stop
- Always squash merge — keeps main history clean (change to
--mergeor--rebaseif preferred) - Always deletes branch — no stale branches (remove
--delete-branchif you want to keep them) - Never merges to non-default branch — PR must target
main(or your default branch)
Usage
/merge-pr # Merge current branch's PR