actual-mcp-server: Agent for Claude Code

.claude/agents/dep-auditor.md

dep-auditor is an agent for Claude Code from agigante80/actual-mcp-server. It costs 144 tokens per session (1,980 once invoked), scanned A, original, MIT.

An agent that checks a project's software libraries for unused packages, duplicate dependencies, abandoned libraries, and known security flaws.

In plain words
What is it for?
Use it to audit all workspace packages, create a combined report, and reuse its record of recently checked libraries.
Why use it?
It helps reveal dependency problems that can add maintenance work, unnecessary code, or security risk.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions CLAUDE.md.

This is agigante80/actual-mcp-server's own configuration. It tells Claude Code how to work on actual-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything actual-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to agigante80/actual-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/agigante80/actual-mcp-server/main/.claude/agents/dep-auditor.md
Clone the repo
git clone --depth 1 https://github.com/agigante80/actual-mcp-server

Made for: Claude Code.

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 dep-auditor

README.md
[![agentmods](https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/dep-auditor/github.svg)](https://agentmods.dev/agents/agigante80/actual-mcp-server/dep-auditor)
Your own site
<a href="https://agentmods.dev/agents/agigante80/actual-mcp-server/dep-auditor"><img src="https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/dep-auditor/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 dep-auditor

Your own site · 80×15
<a href="https://agentmods.dev/agents/agigante80/actual-mcp-server/dep-auditor"><img src="https://agentmods.dev/badge/agents/agigante80/actual-mcp-server/dep-auditor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 144 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,980 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00144 $0.01980
Opus 5 $0.00072 $0.00990
Sonnet 5 $0.00029 $0.00396
Haiku 4.5 $0.00014 $0.00198

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

Security

Grade A, and why

dep-auditor scanned grade A with 1 finding 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 10d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://api.npmjs.org/downloads/point/last-week/<pkg>" | jq '.downloads'
.claude/agents/dep-auditor.md · 233 lines

How it starts

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

You are the Dependency Health Auditor for actual-mcp-server: an agent that checks every dependency for health issues using open-source tools and npm registry queries.

Repository: agigante80/actual-mcp-server

Forge host: GitHub only. Upstream forge-kit v3 routes ticket operations through the forge-host adapter (scripts/forge-lib.sh) so the auditor also works on self-hosted Forgejo. That adapter is not installed in this project; use gh directly as shown below. If this project ever moves to a self-hosted forge, install the forge-host skill and swap the gh calls for forge_issue_create / forge_issue_list / forge_issue_label / forge_api.


Step 0: Discover workspaces and package manager

This is a single-package npm project (no monorepo). Package manager: npm.

# Confirm package manager
[ -f package-lock.json ] && echo "npm" || echo "unexpected"

# Read direct dependencies
cat package.json | jq '{dependencies, devDependencies}'

Audit cache

Before running checks, read docs/audit/dep-audit-cache.json. This file tracks the last audit date per library. Skip libraries checked within the last 30 days unless the user explicitly requests a full re-audit ("full audit" or "force re-check").

Cache format:

{
  "lastFullAudit": "2026-04-01T00:00:00.000Z",
  "libraries": {
    "express": { "lastChecked": "2026-04-01", "status": "maintained", "lastPublish": "2026-03-15" },
    "abandoned-lib": { "lastChecked": "2026-03-01", "status": "unmaintained", "lastPublish": "2023-01-01" }
  }
}

After the audit completes, update the cache with new check dates and statuses.


Checks to run (in order)

Check 1: Unused dependencies

npm run knip   # committed knip.json (#234); blocking in CI since #237

Scope (#234): file only DEPENDENCY findings here. The unused files, exports, and types that Knip also reports are SOURCE dead code, owned by the /code-health-auditor skill; do not file them here.

Read the full file on GitHub · 233 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. 10d ago First seen · 233 lines · 144 tokens per session scan A 6b1d9ec16d4d

Subscribe to this mod's changes

dep-auditor is an agent published in the GitHub repository agigante80/actual-mcp-server (53 stars, last pushed today), licensed MIT. It adds 144 tokens to every session and 1,980 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

roadmap

CEO of the product, strategic product owner who defines what to build and why with outcome-focused vision. Creates epics, prioritizes by business value using RICE and KANO frameworks, guards against strategic drift. Use when you need direction, outcomes over outputs, sequencing by dependencies, or user-value…

rjmurillo/ai-agents · 64 tokens

code-reviewer

Use when a major project step completes and needs review against the original plan and coding standards. Examples: Context: User finished implementing user authentication as step 3 of plan. user: "I've finished implementing the user authentication system as outlined in step 3 of our plan" assistant: "Let me use the…

axiomantic/spellbook · 190 tokens

pr-creator

Use for creating and editing pull requests via gh pr create, gh pr edit, gh pr view, gh pr diff, and gh pr list. Does NOT merge or mark ready (use pr-merger for that). A Bash command denied by the harness permission system is surfaced to the operator, never reshaped to evade the denial.

axiomantic/spellbook · 75 tokens

agent-registry-auditor

Audits agents for DIP-0016 compliance and registry alignment. Use this agent when: Adding a new agent to the system Checking if existing agents need registry entries Validating spawn relationships and circular dependencies Generating missing registry entries Upgrading agents with Agent Context sections This agent…

datacore-one/datacore · 84 tokens

onboard-guide

Onboarding assistant that provides ongoing personalized guidance after initial /onboard. Use for questions about conventions, architecture, patterns, or "where do I put this?" — answers are tailored to the engineer's background.

smicolon/ai-kit · 46 tokens

qa-tester

Use when the task is a verifiable browser interaction with a binary pass/fail outcome — login flow, submit form, attach file, verify message appears. Returns a verdict + evidence. Do NOT use for tasks needing user decisions mid-flow (region selection, domain pick, etc.).

DevZonayed/Mochi · 60 tokens