Dependency update review
Skill stark-ai-de/agent-skills/incubator/skills/repo-maintenance/dependency-update-review
Public Agent Skills for Codex operations, Cursor operations, Claude operations, repo maintenance, skill maintenance, productivity, and engineering workflows.
npx -y skills add stark-ai-de/agent-skills --skill dependency-update-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Review dependency updates, package manager changes, lockfile diffs, version bumps, and dependency risk. Use when the user asks whether dependency updates are safe, wants to upgrade packages, or needs a dependency PR reviewed.
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.9 KB, as published. Nobody here has run it
Dependency Update Review
Goal
Assess dependency and lockfile changes for compatibility, supply-chain risk, package-manager consistency, and targeted validation needs.
When to use
- A PR updates dependencies or lockfiles.
- The user asks whether an upgrade is safe.
- Package manager, runtime version, or dependency policy changes need review.
When not to use
- The task is broad security hygiene; use
security-baseline-review. - The user asks for a full PR review with dependency changes as one part; use
pr-review. - Current vulnerability status is required but advisory data is unavailable.
Inputs to inspect
- Manifest files, lockfiles, package-manager config, and runtime version files.
- Changelogs or release notes for direct dependency major updates.
- CI results, test coverage, and code paths using upgraded packages.
Review rubric
Check direct vs transitive changes, major version jumps, package manager consistency, postinstall scripts, binary/native dependencies, lockfile churn, and targeted test coverage. Read references/dependency-risk-rubric.md for detail.
Workflow
- Identify the package manager and changed dependency files.
- Separate direct dependency updates from transitive lockfile changes.
- Flag major upgrades and packages with build, native, auth, or network behavior.
- Check whether docs, config, or code need migration updates.
- Recommend targeted validation commands.
- Do not claim vulnerability status without current advisory evidence.
Safety rules
- Do not run broad upgrades, lockfile regeneration, or package-manager migrations unless asked.
- Do not claim current vulnerability status without checking current advisory sources.
- Do not print registry credentials or private package URLs from config.
References
Read only when needed:
references/dependency-risk-rubric.md
Scripts
No bundled scripts.
Output format
Return:
- Dependency change summary
- Risk assessment
- Required migration notes
- Targeted validation
- Blocking concerns
- Recommended next action
Failure modes
- If lockfile tooling is unavailable, review manifests and state that lockfile resolution was not reproduced.
- If advisory data is needed, request permission to query current sources.
- If the update mixes unrelated package-manager changes, recommend splitting.
Completion criteria
- Direct and transitive changes are separated.
- Upgrade risks are tied to package behavior or version class.
- Validation is specific to affected surfaces.