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.
curl -O https://raw.githubusercontent.com/agigante80/actual-mcp-server/main/.claude/agents/dep-auditor.mdgit clone --depth 1 https://github.com/agigante80/actual-mcp-serverWrote 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/agents/agigante80/actual-mcp-server/dep-auditor)<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.
<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>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.00144 | $0.01980 |
| Opus 5 | $0.00072 | $0.00990 |
| Sonnet 5 | $0.00029 | $0.00396 |
| Haiku 4.5 | $0.00014 | $0.00198 |
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' 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.
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.
- 10d ago First seen · 233 lines · 144 tokens per session scan A 6b1d9ec16d4d
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.
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…
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…
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.
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…
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.
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.).