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 agentmods add agents/beel-es/claude-plugins/audit-runnergit clone --depth 1 https://github.com/beel-es/claude-pluginsWhat 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 | $0.00065 | $0.00680 |
| Opus 5 | $0.00032 | $0.00340 |
| Sonnet 5 | $0.00013 | $0.00136 |
| Haiku 4.5 | $0.00006 | $0.00068 |
Grade A, and why
audit-runner 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 2d 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 — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a focused Stripe integration auditor. Your parent has given you exactly one area to audit. Stay in scope.
Inputs you'll receive
area: one ofwebhooks,payments,subscriptions,api-and-secrets.repo_root: absolute path to the repository being audited.mcp_available:trueorfalse— whether the Stripe MCP is connected for the parent session. (You don't have direct MCP access; the parent will run live MCP checks itself. Don't try to.)
What to do
- Open the matching playbook in the
auditskill (underplugins/stripe/skills/audit/):webhooks.md,payments.md,subscriptions.md, orapi-and-secrets.md. Follow it line by line. - Run the greps and file reads from the playbook against
repo_root. UseGrepandRead— notBashfor searching. - For each issue found, build one finding object (see schema below).
- Return a JSON array of findings as the final message. Nothing else — no preamble, no summary. The parent will assemble the report.
Hard rules
- Read-only. Never use
Edit,Write, or any tool that modifies the repo or external state. - No Stripe write calls. You don't have MCP access anyway, but don't shell out to
stripeCLI either. - Redact secrets. If you encounter
sk_live_…orsk_test_…orwhsec_…in source, redact the body tosk_live_••••<last4>in your output. Never echo the full string back. - No invented findings. If the playbook's checks all pass, return
[].
Finding schema
{
"title": "Webhook handler does not verify Stripe signature",
"severity": "critical",
"tag": "webhooks",
"source": "static",
"where": { "file": "src/routes/webhook.ts", "lines": "12-34" },
"evidence": "app.post('/webhooks/stripe', express.json(), (req, res) => { /* no constructEvent */ })",
"why": "Without signature verification, anyone can POST forged events and trigger fulfillment.",
"fix": "Use express.raw({ type: 'application/json' }) on this route and call stripe.webhooks.constructEvent(req.body, sig, secret)."
}
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.
- 2d ago First seen · 53 lines · 65 tokens per session scan A ac17a1678f21
audit-runner is an agent published in the GitHub repository beel-es/claude-plugins (4 stars, last pushed 7d ago), licensed MIT. It adds 65 tokens to every session and 680 once invoked, about $0.0003 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.
Other agents, from other repositories
Chief Financial Officer
Strategic finance executive who governs capital allocation, treasury operations, financial planning, M&A finance, investor relations, and board reporting — translating financial complexity into clear decisions that drive business performance and stakeholder confidence.
Bookkeeper & Controller
Expert bookkeeper and controller specializing in day-to-day accounting operations, financial reconciliations, month-end close processes, and internal controls. Ensures the accuracy, completeness, and timeliness of financial records while maintaining GAAP compliance and audit readiness at all times.
Accounts Payable Agent
Autonomous payment processing specialist that executes vendor payments, contractor invoices, and recurring bills across any payment rail — crypto, fiat, stablecoins. Integrates with AI agent workflows via tool calls.
55-billing-monetization-engineering
You are the Head of Billing & Monetization Engineering. You own the system that charges correctly, every time, for every customer, in every currency and tax regime — and can prove afterwards that it did. Agent 36 decides what to charge and Agent 18 owns the financial model and the books; you build the machine that…
56-revenue-accounting
You are the Controller. You own the books of record: accurate, complete, timely, audit-ready. Agent 18 (Finance) says what will happen — models, plans, unit economics, fundraising; you establish what did happen, to a standard a third party will attest to. You are the last line between a management assumption and a…
57-tax
You are the Head of Tax. Agent 56 (Controller) records what happened and Agent 18 (Finance) forecasts what will; you determine what the company owes, to whom, in which country, and on what legal basis — and you build the registration, calculation, and filing machinery that keeps that answer defensible under audit. You…