spending-audit

spending-audit is a skill for Claude Code from weklund/fiduciary. It costs 48 tokens per session (691 once invoked), scanned A, original, MIT.

A review of transaction records for recurring charges, unused subscriptions, category spending, and possible overspending. It uses a local SQLite database, a file-based database format, as its source.

In plain words
What is it for?
Use it to inspect recurring merchants, estimate annual subscription costs, compare spending by month or category, and find dining, delivery, or coffee purchases.
Why use it?
It helps reveal payments that repeat, forgotten subscriptions, and areas where spending is higher than expected. The review is based on recorded transactions rather than guesses.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: positional $N argument.

Good fit Use it to inspect recurring merchants, estimate annual subscription costs, compare spending by month or category, and find dining, delivery, or coffee purchases.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/weklund/fiduciary/spending-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 weklund/fiduciary --skill spending-audit
Clone the repo
git clone --depth 1 https://github.com/weklund/fiduciary

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 spending-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/weklund/fiduciary/spending-audit.svg)](https://agentmods.dev/skills/weklund/fiduciary/spending-audit)
Your own site
<a href="https://agentmods.dev/skills/weklund/fiduciary/spending-audit"><img src="https://agentmods.dev/badge/skills/weklund/fiduciary/spending-audit.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 691 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.00048 $0.00691
Opus 5 $0.00024 $0.00345
Sonnet 5 $0.00010 $0.00138
Haiku 4.5 $0.00005 $0.00069

Measured 8d ago against content hash 7c75d33115b8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

spending-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 8d 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.

.claude/skills/spending-audit/SKILL.md · 94 lines

How it starts

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

Instructions

Perform a spending audit using the unified SQLite ledger.

Data source

Primary: data/finance.db (SQLite)

Analysis to perform

1. Recurring charges / Subscriptions
-- Find merchants that appear monthly with consistent amounts
SELECT description, 
       ROUND(AVG(amount),2) as avg_amount,
       COUNT(*) as occurrences,
       MIN(date) as first_seen,
       MAX(date) as last_seen
FROM transactions 
WHERE amount > 0 AND amount < 500
GROUP BY description 
HAVING COUNT(*) >= 2 
   AND (MAX(date) > date('now', '-60 days'))
ORDER BY avg_amount * 12 DESC;
2. Category spending breakdown
-- Monthly spending by category
SELECT substr(date,1,7) as month,
       SUM(amount) as total_spent,
       COUNT(*) as txn_count
FROM transactions 
WHERE amount > 0
GROUP BY month
ORDER BY month;
3. Dining & delivery analysis
-- Find all dining/delivery/coffee (common national chains + generic patterns)
SELECT date, description, amount 
FROM transactions 
WHERE amount > 0 
  AND (LOWER(description) LIKE '%restaurant%'
    OR LOWER(description) LIKE '%coffee%'
    OR LOWER(description) LIKE '%doordash%'
    OR LOWER(description) LIKE '%uber eats%'
    OR LOWER(description) LIKE '%grubhub%'
    OR LOWER(description) LIKE '%chipotle%'
    OR LOWER(description) LIKE '%starbucks%'
    OR LOWER(description) LIKE '%mcdonald%'
    OR LOWER(description) LIKE '%bar %'
    OR LOWER(description) LIKE '%grill%'
    OR LOWER(description) LIKE '%brewing%'
    OR LOWER(description) LIKE '%tavern%'
    OR LOWER(description) LIKE '%pizza%'
    OR LOWER(description) LIKE '%taqueria%'
    OR LOWER(description) LIKE '%sushi%'
    OR LOWER(description) LIKE '%cafe%'
    OR LOWER(description) LIKE '%pub %'
    OR LOWER(description) LIKE '%bistro%')
ORDER BY date DESC;

Note: This query catches common patterns but will miss local restaurants. Supplement by checking the Plaid category field if available, or look at merchants with amounts in the $8-$80 range that appear on evenings/weekends.

Read the full file on GitHub · 94 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. 8d ago First seen · 94 lines · 48 tokens per session scan A 7c75d33115b8

Subscribe to this mod's changes

spending-audit is a skill published in the GitHub repository weklund/fiduciary (10 stars, last pushed 2mo ago), licensed MIT. It adds 48 tokens to every session and 691 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

Budget Planner

Create, manage, and optimize budgets for projects, departments, and organizations with variance tracking and scenario planning.

eddiebelaval/squire · 23 tokens

financial-planner

Your Personal Finance Manager for Canadians — an AI financial planning partner that conducts thorough financial interviews, builds complete plans, generates interactive dashboards, and provides ongoing coaching. Use this skill whenever someone asks about budgeting, saving, investing, debt strategy, retirement…

cjpatten/canadian-finance-planner-skill · 156 tokens

Construction Estimator

Construction cost estimation, project budgeting, material takeoffs, and bid preparation for contractors and builders.

eddiebelaval/squire · 22 tokens

ecommerce-budgeting-forecasting

Build rolling operating budgets for marketing spend, inventory purchases, and operations with variance analysis, scenario modeling, and budget utilization alerts.

finsilabs/awesome-ecommerce-skills · 32 tokens

ynab-big-goal-savings-planner

Helps plan and fund a large, specific, one-time savings goal with a dollar target and timeline — house down payment, car, wedding, sabbatical. Use when a user says "I'm saving for a house down payment", "how much do I need to save monthly for X", "help me set a savings target with a deadline", or "I want to buy a car…

auzroz/ynab-mcp · 92 tokens

ynab-debt-payoff-planner

Helps build a sustainable debt-payoff plan that fits inside a real budget instead of fighting it. Use when a user says "help me pay off my credit cards", "snowball or avalanche, which should I do", "how do I set up a debt goal", "I keep going into debt for emergencies while paying off debt", or "what order should I…

auzroz/ynab-mcp · 87 tokens