Batch-process Dependabot PRs end-to-end: checkout, rebase, review, changeset, validate, and auto-merge high-confidence PRs. USE FOR: process all Dependabot PRs, clear dependency backlog, batch-merge safe Dependabot updates, batch-process dependency PRs. DO NOT USE FOR: single-PR deep review (use fusion-dependency-review), feature PRs, non-Dependabot dependency PRs, or PRs requiring manual code changes.
91
88%
Does it follow best practices?
Impact
98%
1.34xAverage score across 3 eval scenarios
Advisory
Suggest reviewing before use
Batch workflow that processes open Dependabot PRs sequentially. Delegates per-PR research, lens analysis, and verdicts to fusion-dependency-review. This skill owns batch orchestration, source-control operations, changeset creation, auto-merge, and reporting.
Typical triggers:
fusion-dependency-reviewOptional: PR filter (include/exclude numbers), --review-only (skip merge), --merge-medium (merge medium-confidence too).
This skill delegates per-PR analysis to fusion-dependency-review:
Changeset rules, confidence criteria, rebase strategy, and validation commands follow .github/instructions/dependabot-pr.instructions.md.
gh pr list --author "app/dependabot" --state open --json number,title,headRefName,baseRefName,mergeable,statusCheckRollupPresent a summary table and ask the user to confirm which PRs to process or confirm "all".
For each confirmed PR, execute Steps 3–7. If a PR fails at any step, log the failure, skip to the next, and include it in the final report.
Follow the rebase strategy in .github/instructions/dependabot-pr.instructions.md:
git fetch origin <base-branch> && gh pr checkout <number>git rebase origin/<base-branch>needs-manual-intervention, skip.git push --force-with-leasepnpm install --frozen-lockfile (if lockfile drifts: pnpm install, commit, push).Run the fusion-dependency-review workflow for this PR:
assets/research-comment-template.md..github/instructions/dependabot-pr.instructions.md.Keep research focused — do not deep-dive unless a concern surfaces.
Follow the changeset decision rules in .github/instructions/dependabot-pr.instructions.md. Create, commit, and push changesets for affected published packages.
pnpm test && pnpm build && pnpm -w checkOn failure: attempt trivial fixes (e.g., pnpm format). If non-trivial, mark needs-manual-intervention.
High confidence:
assets/verdict-comment-template.md.gh pr merge <number> --squash --adminMedium or low confidence:
| PR | Title | Status | Confidence | Action |
|---|---|---|---|---|
| #N | ... | merged / skipped / failed | high/med/low | merged / needs review / needs intervention |
.github/instructions/dependabot-pr.instructions.md takes precedence on conflicts.Never:
--force-with-leaseAlways:
main after batch processing is complete060e3af
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.