From gh
Use when the user asks to "babysit a PR", "babysit my pull request", "monitor my PR", "watch my pull request", "keep my PR green", "fix PR check failures automatically", "handle PR review comments", or wants autonomous GitHub PR monitoring that fixes build breaks, test failures, coverage gaps, and review comments on a polling loop.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gh:gh-babysit-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Autonomous PR babysitter. Monitor a GitHub pull request in a continuous loop,
Autonomous PR babysitter. Monitor a GitHub pull request in a continuous loop,
collect issues, and delegate fixes to the gh:gh-babysit-pr-worker agent each
iteration. Act without asking for user confirmation on individual fixes — fix,
push, and re-check.
$ARGUMENTS, orgh pr view.sln / .csproj -> dotnet build / dotnet testpackage.json -> npm run build / npm testpom.xml -> mvn compile / mvn testMakefile -> make / make testRepeat until an exit condition is met.
Use GitHub MCP pull-request/actions tools or gh pr view / gh pr checks to
check:
Exit if:
Build one structured checklist for the iteration.
Capture actionable items such as:
Note but do not try to automate purely human items such as "needs reviewer approval" unless the user explicitly asked for that.
[BLOCKER] comments as highest-priority review itemsreferences/review-reception-protocol.md (verification, stale-diff check,
YAGNI/context evaluation, disposition rules) and
references/review-thread-state-machine.md (conversation state handling) as:
Default to Resolve unless there is a clear, defensible technical reason not to do so.
Convert the collected issues into concrete todo items before any fixes begin. Each todo should be specific enough that the worker agent can act on it without re-analyzing the whole PR.
Priority order:
Spawn gh:gh-babysit-pr-worker with:
The worker should follow references/review-reception-protocol.md in
autonomous mode when replying, pushing back, or deciding whether to resolve a
conversation.
The worker addresses the todos, performs self-review, verifies locally when possible, commits, pushes, and reports what it did.
Report a brief status summary, then wait 15 minutes before looping back to Step 1.
Stop when:
Invoke the gh:gh-mentions skill before composing any comment or reply.
gh / gh api as the fallback path.references/review-reception-protocol.md for review evaluation and
references/review-thread-state-machine.md for conversation closure behavior.npx claudepluginhub gautam-achieveai/claudeplugins --plugin ghCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.