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 weekly-reportgit 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/weekly-report)<a href="https://agentmods.dev/skills/weklund/fiduciary/weekly-report"><img src="https://agentmods.dev/badge/skills/weklund/fiduciary/weekly-report.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.00030 | $0.00726 |
| Opus 5 | $0.00015 | $0.00363 |
| Sonnet 5 | $0.00006 | $0.00145 |
| Haiku 4.5 | $0.00003 | $0.00073 |
Grade A, and why
weekly-report 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 6d 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
Generate a weekly finance report from the unified SQLite ledger.
Data source
Primary: data/finance.db (SQLite)
Before generating, check if data is fresh:
sqlite3 data/finance.db "SELECT MAX(date) FROM transactions"
If older than 2 days, suggest running bash scripts/sync.sh first.
Report sections
1. Account Summary
SELECT name, mask, type, balance_current, balance_limit,
CASE WHEN balance_limit > 0
THEN ROUND(balance_current * 100.0 / balance_limit, 0)
ELSE NULL END as utilization_pct
FROM accounts ORDER BY type, balance_current DESC;
2. Weekly Cash Flow (last 7 days)
SELECT
SUM(CASE WHEN amount < 0 THEN ABS(amount) ELSE 0 END) as income,
SUM(CASE WHEN amount > 0 THEN amount ELSE 0 END) as spending,
SUM(CASE WHEN amount < 0 THEN ABS(amount) ELSE 0 END) -
SUM(CASE WHEN amount > 0 THEN amount ELSE 0 END) as net
FROM transactions
WHERE date >= date('now', '-7 days');
3. Spending by Category (top 10, last 7 days)
SELECT description, SUM(amount) as total, COUNT(*) as txns
FROM transactions
WHERE amount > 0 AND date >= date('now', '-7 days')
GROUP BY description
ORDER BY total DESC LIMIT 15;
4. Notable Transactions
- Largest single purchases (top 5)
- Any new recurring charges detected
- Fees or interest charges
-- Fees/interest this week
SELECT date, description, amount FROM transactions
WHERE date >= date('now', '-7 days') AND amount > 0
AND (LOWER(description) LIKE '%fee%'
OR LOWER(description) LIKE '%interest%'
OR LOWER(description) LIKE '%overdraft%')
ORDER BY amount DESC;
5. Week-over-Week Comparison
-- This week vs last week
SELECT
'This week' as period,
SUM(CASE WHEN amount > 0 THEN amount ELSE 0 END) as spent
FROM transactions WHERE date >= date('now', '-7 days')
UNION ALL
SELECT
'Last week',
SUM(CASE WHEN amount > 0 THEN amount ELSE 0 END)
FROM transactions WHERE date >= date('now', '-14 days') AND date < date('now', '-7 days');
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.
- 6d ago First seen · 94 lines · 30 tokens per session scan A f997c914727e
weekly-report is a skill published in the GitHub repository weklund/fiduciary (10 stars, last pushed 2mo ago), licensed MIT. It adds 30 tokens to every session and 726 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-assign-money
Helps give every dollar a job — assigns unallocated Ready to Assign money to categories, funds underfunded goals, and sets up new categories or category groups. Use when the user says "I have money to assign", "help me budget this month", "what should I fund", "help me set up a new category", "organize my budget…
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…