PR Ready
SkillDev toolsClear everything blocking an existing PR/MR from merging — rebase onto the default branch, get CI green, and resolve review threads (Copilot and human). Use for "rebase on main", "make CI green", "fix CI/CD", "address the reviews", "address Copilot", "review-loop", or "get this mergeable".
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the PR Ready skill
What this skill tells your AI
The instructions your AI receives, as published by outthislife/brooklyn-skills in skills/pr-ready/SKILL.md and read by ahel’s review.
An open PR/MR isn't mergeable. Two things block it — a stale base or red CI, and open review threads. Same loop for both: fix, push, re-query the forge, repeat. Handle whichever is blocking; usually that's both.
No feature work. No drive-bys.
Rebase + CI
- Find the worktree for this PR (or create one per repo convention). Prefer an existing worktree the user already has.
git fetch origin <default>(usuallymain).- Rebase onto
origin/<default>. Fix conflicts only as needed to preserve intent. - Push (
--force-with-leaseif the rebase rewrote history). - Watch CI. Fix failures caused by the rebase or existing breakage on this branch — nothing else.
- Flaky upstream on the default branch → say so. Don't paper over it with unrelated test deletes.
Review threads
- Commit/push any unpushed work first (ask if the message is unclear).
- List open/unresolved inline comments + review bodies.
- Want a bot pass? Request the repo's review bot, then wait for it — don't spin forever; if it's stuck ~10–15m, say so.
- Per comment: valid → fix and resolve. Wrong or outdated → short reply and
resolve. Nit out of scope → ask once. Never resolve a #1 maintainer comment
without fixing it or an explicit override (
pr-triage). - Push (
pr-updateif they want the commits split). - Repeat until unresolved threads are gone, or only ones they OK'd deferring.
Done when
Re-query the forge — don't trust that a push turned CI green or that a reply resolved a thread. Fail closed: any red check or open thread means you're not done.
Report the branch tip, checks status, and a short fixed-vs-replied summary.
Scope lock
- No refactors, restyles, or "while I'm here" fixes.
- Don't expand the PR description or supersede unless asked (
pr-update). - Wrong-premise PR that needs salvage → stop and say so, hand off to
pr-triage. Don't silently rewrite it.
Forge cheatsheet
# GitHub — CI
gh pr view <N> --json url,headRefName,baseRefName,statusCheckRollup
gh pr checks <N>
# GitHub — threads
gh api repos/{owner}/{repo}/pulls/<N>/comments --jq '.[] | {user:.user.login,path,line,body:(.body[:200])}'
gh api repos/{owner}/{repo}/pulls/<N>/reviews --jq '.[] | {user:.user.login,state,body:(.body[:200])}'
gh api repos/{owner}/{repo}/pulls/<N>/comments -f body='…' -F in_reply_to=<comment_id>
gh pr edit <N> --add-reviewer copilot # if that's what the repo uses
# GitLab
glab mr view <N>
glab ci status
glab mr note <N> # + the discussions API for resolve
Signals
- GitHub stars
- 192
- Forks
- 6
- Last commit
- Aug 2026
Advanced
- Catalog kind
- skill
- Gateway key
pr-ready-outthislife- Source
- github.com/outthislife/brooklyn-skills