mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-03-13 22:05:42 +00:00
## Summary - add a reusable skill for the Dependabot PR rollup workflow - place it under `.agents/skills/` for cross-client discovery - keep the skill aligned with the Agent Skills standard and client-agnostic ## Details - adds `.agents/skills/dependabot-pr-rollup/SKILL.md` - documents the workflow for: - finding open Dependabot PRs - comparing PR heads to their base branch - replaying only net dependency changes in a fresh worktree - running `npm run all` - optionally committing, pushing, and opening a PR ## Notes - `.agents/skills/` is the shared interoperability location used across multiple coding agents - no code changes - tests not run (documentation-only skill)
2.2 KiB
2.2 KiB
name, description, license, compatibility
| name | description | license | compatibility |
|---|---|---|---|
| dependabot-pr-rollup | Find open Dependabot PRs for the current GitHub repo, compare each PR head to its base branch, replay only the net dependency changes in a fresh worktree and branch, run npm validation, and optionally commit, push, and open a PR. Use when you want to batch or manually replicate active Dependabot updates. | MIT | Requires git, git worktree, gh CLI auth, npm, and a GitHub repo with an origin remote. |
Dependabot PR Rollup
When to use
Use this skill when the user wants to:
- find all open Dependabot PRs in the current repo
- reproduce their net effect in one local branch
- validate the result with the repo's standard npm checks
- optionally commit, push, and open a PR
Workflow
- Inspect the current checkout state, but do not reuse a dirty worktree.
- List open Dependabot PRs with
gh pr list --state open --author app/dependabot. - For each PR, collect the title, base branch, head branch, changed files, and relevant diffs.
- Compare each PR head against
origin/<base>instead of trusting the PR title. Dependabot PRs can already be partially merged, superseded by newer versions, or have no remaining net effect. - Create a new worktree and branch from
origin/<base>. - Reproduce only the remaining dependency changes in the new worktree.
- Inspect
package.jsonbefore editing. - Run
npm ci --ignore-scriptsbefore applying updates. - Use
npm install ... --ignore-scriptsfor direct dependency changes sopackage-lock.jsonstays in sync.
- Inspect
- Run
npm run all. - If requested, commit the changed source, lockfile, and generated artifacts, then push and open a PR.
Repo-specific notes
- Use
ghfor GitHub operations. - Keep the user's original checkout untouched by working in a separate worktree.
- In this repo,
npm run allis the safest validation command because it runs build, check, package, and test. - If dependency changes affect bundled output, include the regenerated
dist/files.
Report back
Always report:
- open Dependabot PRs found
- which PRs required no net changes
- new branch name
- new worktree path
- files changed
npm run allresult- if applicable, commit SHA and PR URL