What problem does it solve? Pull request review loops with automated reviewers like GitHub Copilot can run indefinitely, burning paid review rounds on findings outside the PR's actual scope. This Skill bounds that loop: it requests reviews, triages findings against a written review scope, applies fixes, and stops when the reviewer has finished with the PR rather than with the fixes. ## Core Features & Use Cases - Bounded review loop: Requests Copilot reviews, waits for completion, triages each round via kreview, and stops on explicit signals (second-order findings, no in-scope items, round budget) instead of looping forever. - Scope-anchored triage: Every finding is judged against the PR body's ## Review scope section, with dispositions of IMPLEMENT, PUSH BACK, DISCUSS, or OUT OF SCOPE, and out-of-scope items filed as issues. - Auditable reporting: Posts a Babysit report comment on the PR with per-round provenance columns, effort levels, push-back reasoning, and a merge-ready or needs-decision verdict. - Use Case: After opening a milestone PR, run /kbabysit 42 from the PR's worktree; the loop requests Copilot review, addresses real findings, pushes fixes, and stops after the round where all findings sit on prior fix commits, ending with a TL;DR report for the human. ## Quick Start Run /kbabysit followed by the PR number from a session checked out on that PR's branch to drive it to merge-ready.