What problem does it solve? Newly opened pull requests often fail CI, and babysitting those checks manually wastes time. This Skill watches a PR's checks, dispatches an implementer agent to fix failures, and either lands the PR green or marks it draft with an escalation label when the fix budget runs out. ## Core Features & Use Cases - Autonomous CI watch-and-fix loop: Polls checks with a background waiter, gathers failure context (issue body, PR diff, failed job logs), spawns an implementer agent, and pushes append-only fix commits for up to 10 rounds. - Dependabot bot mode: The --bot flag switches to a 3-attempt budget shared across fires via marker comments, regenerates lockfiles with npm install --legacy-peer-deps, and applies the AFK:deps-failed label instead of AFK:checks-failed. - Safe exhaustion handling: On budget exhaustion it converts the PR to draft, applies the correct lane label, and comments for human triage — it never force-pushes, never merges, and never extends the cap. - Use Case: After /afk-pickup opens a PR on feat/issue-42, invoke pr-watch to sit on the checks; if the build fails, it automatically fixes, pushes, and re-polls until green or until 10 rounds are spent. ## Quick Start Ask the agent to run pr-watch with the PR number, branch, repo, and issue number, adding the --bot flag if it is a Dependabot pull request.