deps-audit

deps-audit is a skill for Claude Code from Sagargupta16/claude-skills. It costs 46 tokens per session (1,559 once invoked), scanned A, original, MIT.

A dependency-auditing guide for projects using package managers such as npm, pip, Cargo, or Go. Dependencies are external libraries that an application uses.

In plain words
What is it for?
Use it to detect the package manager, run security audits, check for unused dependencies, apply compatible updates, and test before major upgrades.
Why use it?
It helps identify known vulnerabilities, outdated packages, unused declarations, and the right update order for the project's language and lock files.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the deps-audit plugin — 1 skill, 1 command, 1 agent shipped together

Good fit Use it to detect the package manager, run security audits, check for unused dependencies, apply compatible updates, and test before major upgrades.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/sagargupta16/claude-skills/deps-audit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Sagargupta16/claude-skills --skill deps-audit
Clone the repo
git clone --depth 1 https://github.com/Sagargupta16/claude-skills

Made for: Claude Code.

Or install deps-audit, the plugin that ships this one along with the rest of its 1 skill, 1 command, 1 agent.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deps-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/sagargupta16/claude-skills/deps-audit/github.svg)](https://agentmods.dev/skills/sagargupta16/claude-skills/deps-audit)
Your own site
<a href="https://agentmods.dev/skills/sagargupta16/claude-skills/deps-audit"><img src="https://agentmods.dev/badge/skills/sagargupta16/claude-skills/deps-audit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for deps-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/sagargupta16/claude-skills/deps-audit"><img src="https://agentmods.dev/badge/skills/sagargupta16/claude-skills/deps-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,559 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.01559
Opus 5 $0.00023 $0.00779
Sonnet 5 $0.00009 $0.00312
Haiku 4.5 $0.00005 $0.00156

Measured 12d ago against content hash 5e8bbdb02a47, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

deps-audit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/deps-audit/skills/deps-audit/SKILL.md · 267 lines

How it starts

The opening of the file, as written. The whole thing — 267 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Dependency Audit and Management

Quick Reference

Task Approach
Security scan Run language-specific audit command
Find outdated Check against latest versions
Find unused Analyze imports vs declared dependencies
Update safely Minor/patch first, test, then major
Lock files Always commit lock files

Package Manager Detection

File Package Manager Audit Command
pnpm-lock.yaml pnpm pnpm audit
package-lock.json npm npm audit
yarn.lock yarn yarn audit
bun.lockb bun bun audit (if available)
requirements.txt pip pip-audit
pyproject.toml (with uv) uv uv pip audit
poetry.lock poetry poetry audit (via plugin)
Cargo.lock cargo cargo audit
go.sum go govulncheck ./...

Security Vulnerability Scanning

Node.js

# Check for known vulnerabilities
pnpm audit
# or
npm audit

# Auto-fix compatible updates
pnpm audit --fix
# or
npm audit fix

# See what would change without applying
npm audit fix --dry-run

# Force fixes (may include breaking changes)
npm audit fix --force  # Use with caution

Python

# Install pip-audit if not present
pip install pip-audit

# Scan requirements.txt
pip-audit -r requirements.txt

# Scan installed packages
pip-audit

# Output as JSON for processing
pip-audit --format json

# Fix vulnerabilities
pip-audit --fix -r requirements.txt

Rust

# Install cargo-audit
cargo install cargo-audit

# Scan for vulnerabilities
cargo audit

# Auto-fix compatible updates
cargo audit fix

Go

# Install govulncheck
go install golang.org/x/vuln/cmd/govulncheck@latest

# Scan for vulnerabilities
govulncheck ./...

Outdated Package Detection

Node.js

# List outdated packages
pnpm outdated
# or
npm outdated

# Interactive update (pnpm)
pnpm update --interactive --latest

Python

Read the full file on GitHub · 267 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 267 lines · 46 tokens per session scan A 5e8bbdb02a47

Subscribe to this mod's changes

deps-audit is a skill published in the GitHub repository Sagargupta16/claude-skills (5 stars, last pushed 6d ago), licensed MIT. It adds 46 tokens to every session and 1,559 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

kanban-dev-lane

Use when a Hermes Kanban worker wants to run an autonomous implementation delegation lane with a 3-tier fallback chain across claudy -> codex (--yolo) -> agyd (agy --dangerously-skip-permissions) -> Hermes direct on quota exhaustion.

epicsagas/plugins · 58 tokens

release

This skill should be used when the user wants to create a new release — bump version, tag, push, create GitHub release, and optionally publish to npm. Use when user says "release", "bump version", "publish", "cut a release", or "release candidate".

NikiforovAll/claude-code-marketplace · 60 tokens

council

4-voice parallel deliberation for architecture, tech selection, or design decisions with no clear answer. Each voice gets independent context to prevent anchoring bias. Use when the user says "council", "deliberate", "second opinion", or faces a trade-off between multiple valid approaches.

epicsagas/plugins · 64 tokens

orbit

Autonomous pipeline — spec requirements, execute implementation, audit quality, and ship. Runs the full epic-harness orbit cycle in one go. Use when the user says "orbit", "full pipeline", "spec to ship", or describes a feature that needs end-to-end handling.

epicsagas/plugins · 58 tokens

reflect

Self-assessment of AI session quality. Scores 5 dimensions from session data and harness memory. Not an agent performance review — it's human self-reflection on how well they used AI assistance. Use when the user says "reflect", "how did I do", "session review", or at the end of a long session.

epicsagas/plugins · 67 tokens

teams

Manage org-level agent teams — list available teams, sync agent definitions to a project, or design a new team composition. Use when the user says "team", "agents", "set up a team", or wants to coordinate multiple specialized agents.

epicsagas/plugins · 51 tokens