Merge pr
Merge current PR after CI passes. Waits for all checks, squash merges, deletes branch, switches to main.From its SKILL.md
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.
SKILL.md
1.0 KB, 242 tokens by cl100k_base, 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
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.