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.
npx skills add duthaho/claudekit --skill audit-dependenciesgit clone --depth 1 https://github.com/duthaho/claudekitWrote 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.
[](https://agentmods.dev/skills/duthaho/claudekit/audit-dependencies)<a href="https://agentmods.dev/skills/duthaho/claudekit/audit-dependencies"><img src="https://agentmods.dev/badge/skills/duthaho/claudekit/audit-dependencies.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00101 | $0.02533 |
| Opus 5 | $0.00051 | $0.01267 |
| Sonnet 5 | $0.00020 | $0.00507 |
| Haiku 4.5 | $0.00010 | $0.00253 |
Grade A, and why
audit-dependencies 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Audit Dependencies
Overview
A four-step dependency audit that goes past npm audit / pip-audit / cargo audit
output into the actual import graph. The skill enforces that every claim
("we don't use that import path", "this dep is dead", "this CVE doesn't apply")
is backed by evidence from the code, not from a tool's verdict alone. The audit
produces a list of dependencies with three columns: declared, transitively pulled,
actually called. Anything in column 1 or 2 but not column 3 is a candidate for
removal. Anything called but unpinned, deprecated, or vulnerable is an action item.
Senior ICs use it before adding a new dep, before a major version bump, or after
a CVE lands.
When to Use
- After a CVE alert from
npm audit,pip-audit, GitHub Dependabot, Snyk, or similar - Before adding a new third-party package to the project
- Before a major-version upgrade of a framework, ORM, or runtime
- When
node_modules/site-packages/targetsize feels disproportionate - When evaluating whether a package can be removed
- During quarterly or release-cycle hygiene
When NOT to Use
- A patch-version bump on a dep you actively use, with no behavioral changes in the changelog. Just bump it.
- A dependency you added in this same PR. You know what it does.
- An audit on a deploy artifact you don't own (audit upstream, not the binary).
Process
Step 1: Snapshot
Goal: Capture the current declared dependency state in a form you can diff later.
Inputs: The project's manifest file(s) — package.json, requirements.txt,
pyproject.toml, Cargo.toml, go.mod, Gemfile, etc.
Actions:
- Run the ecosystem's lockfile-respecting list command:
npm ls --all(orpnpm ls --depth=Infinity)pip list --format=jsoncargo treego list -m all
- Pipe to a file. Date-stamp it. This is your before-state.
- Note the count of direct deps and total deps (direct + transitive).
Output: A snapshot file at a known path. A two-line note: <N> direct, <M> transitive.
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.
- 9d ago First seen · 175 lines · 101 tokens per session scan A 1575df45a075
audit-dependencies is a skill published in the GitHub repository duthaho/claudekit (97 stars, last pushed 1mo ago), licensed MIT. It adds 101 tokens to every session and 2,533 once invoked, about $0.0005 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-30.
Other skills, from other repositories
accessibility-a11y
WCAG 2.2 compliance, ARIA patterns, keyboard navigation, screen readers, automated testing.
ai-ml-development
AI and machine learning development with PyTorch, TensorFlow, and LLM integration. Use when building ML models, training pipelines, fine-tuning LLMs, or implementing AI features.
android-development
Android development with Kotlin, Jetpack Compose, and modern Android architecture. Use when building Android apps, implementing Material Design, or following Android best practices.
audio-production
Professional audio production for music, podcasts, and sound design. Use when working with audio recording, mixing, mastering, or sound design for any medium.
authentication-patterns
OAuth 2.0, JWT, SSO, MFA, NextAuth/Clerk/Supabase Auth implementation patterns.
brand-identity
Brand strategy and identity design for businesses and products. Use when creating brand guidelines, developing visual identity systems, or defining brand positioning.