agentsclimarketplace

Review dependencies

Skill tobihagemann/turbo/claude/skills/review-dependencies

Detect package managers and discover outdated or vulnerable dependencies. Returns structured findings without upgrading. Use when the user asks to "review dependencies", "check for outdated packages", "check dependencies", "scan dependencies", or "dependency review".From its SKILL.md

Install
npx -y skills add tobihagemann/turbo --skill review-dependencies

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

4.1 KB, ~1.0k tokens by cl100k_base, as published. Nobody here has run it

Review Dependencies

Detect package managers and discover outdated or vulnerable dependencies. Analysis only. Does not upgrade.

Step 1: Detect Package Managers

Identify which package managers are in use by searching for config files:

Config filePackage managerLockfileEcosystem
package.jsonnpm / yarn / pnpmpackage-lock.json / yarn.lock / pnpm-lock.yamlNode.js
Package.swift, *.xcodeprojSwift Package ManagerPackage.resolvedSwift
pyproject.toml, requirements.txt, setup.pypip / poetry / uvpoetry.lock, uv.lockPython
Cargo.tomlcargoCargo.lockRust
go.modGo modulesgo.sumGo
GemfileBundlerGemfile.lockRuby
pom.xmlMavenJava
build.gradle, build.gradle.ktsGradlegradle.lockfileJava/Kotlin

Swift dependencies can live in Package.swift or be configured directly in the Xcode project file (.xcodeproj/.xcworkspace). For Xcode-managed dependencies, inspect the project's package references.

Detection steps:

  1. Search for config files in the project root and subdirectories (exclude vendored directories)
  2. If a lockfile exists, use the corresponding package manager variant (e.g., yarn.lock → yarn, pnpm-lock.yaml → pnpm)
  3. If multiple instances of the same package manager found (e.g., monorepo with several package.json files): use AskUserQuestion to let the user choose which to review (multiSelect allowed)
  4. If multiple package managers found: use AskUserQuestion to let the user choose which to review
  5. If none found: inform user and stop

Step 2: Discovery

Run the appropriate discovery command to find available updates:

Package managerDiscovery commandNotes
npmncu --format groupRequires npm-check-updates. Suggest npm install -g npm-check-updates if missing.
yarnncu --format group or yarn upgrade-interactive
pnpmncu --format group or pnpm outdated
Swift PMCheck resolved versions in Package.resolved against latest releases via WebSearchNo built-in outdated command. Read Package.swift or inspect the Xcode project to identify dependencies and their current version constraints.
pippip list --outdated
poetrypoetry show --outdated
uvuv pip list --outdated
cargocargo outdatedRequires cargo-outdated. Fall back to comparing Cargo.toml versions via WebSearch.
Go modulesgo list -m -u all
Bundlerbundle outdated
Mavenmvn versions:display-dependency-updates
Gradlegradle dependencyUpdatesRequires com.github.ben-manes.versions plugin.

Categorize updates:

  • Major (breaking changes) — requires migration research
  • Minor (new features, backward compatible)
  • Patch (bug fixes)

Step 3: Report Findings

If the discovery tool is not installed, suggest the installation command (see Step 2 notes column). If no tool exists for the ecosystem, fall back to manual version checking via WebSearch.

If no updates are available, report that dependencies are up to date.

Output Format

Format each finding as:

### [P<N>] <title (imperative, <=80 chars)>

**Package:** `<name>` <current> -> <latest>
**Manager:** <npm/pip/cargo/etc.>

<one paragraph: why this matters, known vulnerabilities if any, major version gap>

After all findings, add:

## Overall Verdict

**Dependencies:** <up to date | updates available>

<summary with counts: N major, N minor, N patch>

Priority Levels

  • P0 — Known security vulnerability (CVE) in the current version
  • P1 — Multiple major versions behind (e.g., React 17 → 19)
  • P2 — One major version behind or significantly outdated minor versions
  • P3 — Minor or patch updates available

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,871. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.