What problem does it solve? Open pull requests on agent-driven workflows drift out of a mergeable state: master moves under them causing merge conflicts, human reviewers hand them back with unresolved comment threads, or a prior automation run died before finishing CI and manual verification. This Skill autonomously brings one such PR back to a green, review-clean state without human intervention. ## Core Features & Use Cases - Conflict Rebase: Rebases the PR branch onto master using a dedicated rebase driver, spawning an implementer subagent to resolve conflicts in place, and pushing with --force-with-lease as the only sanctioned force push. - Review Thread Resolution: Enumerates unresolved review threads via GraphQL, spawns implementer rounds (capped at 3) to address each comment, replies in-thread with what changed, and resolves each thread. - Verification Tail: Re-runs CI watching, a marker-gated one-time PR review, and a blocking manual verification round after any push, with strict rules preventing a PASS result without real verification evidence. - Escalation Paths: Parks unresolvable PRs with labels like AFK:rebase-failed or AFK:revise-failed and explanatory comments instead of looping forever. - Use Case: A daemon triage step picks PR #512 because it both conflicts with master and carries the AFK:revise label; this Skill rebases it, fixes the three review comments, re-runs CI and manual verification, and reports a clean PASS. ## Quick Start Invoke the skill with the PR number, branch, issue number, and triage reason, for example: run /pr-reconcile --pr 512 --branch feat/issue-87 --issue 87 --reason both.