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 weklund/fiduciary --skill spending-auditgit clone --depth 1 https://github.com/weklund/fiduciaryWrote 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/weklund/fiduciary/spending-audit)<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>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.00048 | $0.00691 |
| Opus 5 | $0.00024 | $0.00345 |
| Sonnet 5 | $0.00010 | $0.00138 |
| Haiku 4.5 | $0.00005 | $0.00069 |
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.
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.
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.
- 8d ago First seen · 94 lines · 48 tokens per session scan A 7c75d33115b8
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.
Other skills, from other repositories
Budget Planner
Create, manage, and optimize budgets for projects, departments, and organizations with variance tracking and scenario planning.
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…
Construction Estimator
Construction cost estimation, project budgeting, material takeoffs, and bid preparation for contractors and builders.
ecommerce-budgeting-forecasting
Build rolling operating budgets for marketing spend, inventory purchases, and operations with variance analysis, scenario modeling, and budget utilization alerts.
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…
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…