weekly-report

weekly-report is a skill for Claude Code from weklund/fiduciary. It costs 30 tokens per session (726 once invoked), scanned A, original, MIT.

A weekly personal-finance report generated from a SQLite transaction ledger. SQLite is a small database format commonly stored as a local file.

In plain words
What is it for?
Checking account balances, reviewing the last seven days of income and spending, and tracking budget status.
Why use it?
It turns account and transaction records into a short view of balances, recent cash flow, and spending categories.

Skill for Claude Code

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

Good fit Checking account balances, reviewing the last seven days of income and spending…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/weklund/fiduciary/weekly-report
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 weekly-report
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 weekly-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/weklund/fiduciary/weekly-report.svg)](https://agentmods.dev/skills/weklund/fiduciary/weekly-report)
Your own site
<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>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 726 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.00030 $0.00726
Opus 5 $0.00015 $0.00363
Sonnet 5 $0.00006 $0.00145
Haiku 4.5 $0.00003 $0.00073

Measured 6d ago against content hash f997c914727e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

.claude/skills/weekly-report/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

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');

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. 6d ago First seen · 94 lines · 30 tokens per session scan A f997c914727e

Subscribe to this mod's changes

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.

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-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…

auzroz/ynab-mcp · 87 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