What problem does it solve? Merging dependency update PRs based only on passing CI is risky, especially for 0.x dependencies where minor updates can contain breaking changes. This Skill standardizes the review-and-merge workflow for Dependabot PRs so every merge decision is verified against changelogs and recorded as a PR comment. ## Core Features & Use Cases - Single PR review and merge: Verify the author is Dependabot, confirm CI success, assess merge impact from release notes and changelogs, record the rationale as a PR comment, then merge with a configurable method (squash, merge, or rebase). - Batch processing with --all: Enumerate all open Dependabot PRs with pagination-safe listing, re-fetch each PR's latest state before processing, and loop until no new PRs appear, accounting for Dependabot's rebase and force-push behavior. - Robust CI and behind-branch handling: Detect false-positive CI completion after rebases, fall back from @dependabot rebase to @dependabot recreate on refusal, and switch to successor PRs when one is superseded. - Use Case: You return to a repository with eight open Dependabot PRs. Run the skill with --all to have each PR's CI status and changelog impact checked one by one, with safe updates merged and risky ones documented with the reason and required fix. ## Quick Start Ask the AI to review and merge all open Dependabot pull requests in the current repository, checking CI results and changelogs before each merge.