What problem does it solve? Pull requests often accumulate two kinds of remaining work: failing CI checks and unresolved review comments. Handling them separately is error-prone because review fixes can break CI again. This Skill coordinates both concerns in a single workflow so a PR reaches a clean, mergeable state. ## Core Features & Use Cases - Orchestrated CI and review resolution: Delegates CI failures to the resolve-ci skill and review comments to the resolve-reviews skill, always in CI-first order to avoid conflicts and wasted reruns. - Iterative convergence loop: Re-runs CI checks after review fixes are pushed, looping until all checks pass and no review comments remain unaddressed. - Safe stop conditions: Halts and reports when environment-dependent failures or human intervention is required, instead of forcing changes. - Use Case: A developer returns to a PR with two failing CI jobs and three review comments. Running this skill fixes the CI failures, addresses the review feedback, re-verifies CI, and produces a final summary report. ## Quick Start Ask the agent to resolve all remaining tasks on PR number 42, or on the current branch's pull request if no number is given.