health-check

health-check is a skill for Claude Code from weklund/fiduciary. It costs 101 tokens per session (2,172 once invoked), scanned A, original, MIT.

A procedure for reviewing a person's overall financial health each quarter. It checks accounts, income, goals, financial-planning areas, and key ratios to identify risks and priorities.

In plain words
What is it for?
Use it for a full financial review, such as checking debt, savings, income, goals, and the next actions needed to improve the situation.
Why use it?
It turns scattered financial information into an assessment of whether the person is on track and what needs attention first.

Skill for Claude Code

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

Good fit Use it for a full financial review, such as checking debt, savings, income, goals, and the next actions needed to improve the situation.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/weklund/fiduciary/health-check/github.svg)](https://agentmods.dev/skills/weklund/fiduciary/health-check)
Your own site
<a href="https://agentmods.dev/skills/weklund/fiduciary/health-check"><img src="https://agentmods.dev/badge/skills/weklund/fiduciary/health-check/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for health-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/weklund/fiduciary/health-check"><img src="https://agentmods.dev/badge/skills/weklund/fiduciary/health-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,172 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.00101 $0.02172
Opus 5 $0.00051 $0.01086
Sonnet 5 $0.00020 $0.00434
Haiku 4.5 $0.00010 $0.00217

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

Security

Grade A, and why

health-check 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 12d 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/health-check/SKILL.md · 264 lines

How it starts

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

Quarterly Financial Health Assessment

You are conducting a comprehensive financial health review — the most important thing a fiduciary advisor does. This is NOT a spending summary (that's /weekly-report). This is a full diagnostic: are they on track, what's at risk, and what needs to change?

Process

  1. Gather current state from the database
  2. Compare against their goals and targets (from Client Context or memory)
  3. Assess each layer of the Financial Planning Pyramid
  4. Check all key ratios
  5. Identify the #1 priority
  6. Deliver a structured assessment with specific next actions

Step 1: Gather Current State

# Account balances
sqlite3 data/finance.db "SELECT name, mask, type, balance_current, balance_limit FROM accounts ORDER BY type, balance_current DESC;"
# Monthly income (last 3 months)
sqlite3 data/finance.db "
SELECT strftime('%Y-%m', date) as month, ROUND(SUM(ABS(amount)), 2) as income
FROM transactions WHERE amount < 0
  AND date >= date('now', '-90 days')
  AND description NOT LIKE '%TRANSFER%'
  AND description NOT LIKE '%Payment%Thank%'
  AND description NOT LIKE '%EPAYMENT%'
  AND description NOT LIKE '%AUTOPAY%'
GROUP BY month ORDER BY month;"
# Monthly spending (last 3 months)
sqlite3 data/finance.db "
SELECT strftime('%Y-%m', date) as month, ROUND(SUM(amount), 2) as spending
FROM transactions WHERE amount > 0
  AND date >= date('now', '-90 days')
  AND description NOT LIKE '%AMERICAN EXPRESS ACH%'
  AND description NOT LIKE '%Coinbase Card Payment%'
  AND description NOT LIKE '%Payment to Chase%'
  AND description NOT LIKE '%AMEX EPAYMENT%'
  AND description NOT LIKE '%APPLECARD GSBANK%'
  AND description NOT LIKE '%AUTOPAY%'
  AND description NOT LIKE '%AUTO PAY%'
GROUP BY month ORDER BY month;"
# Interest and fees (last 90 days)
sqlite3 data/finance.db "
SELECT strftime('%Y-%m', date) as month, ROUND(SUM(amount), 2) as fees_interest
FROM transactions WHERE amount > 0
  AND date >= date('now', '-90 days')
  AND (LOWER(description) LIKE '%interest%' OR LOWER(description) LIKE '%late fee%' OR LOWER(description) LIKE '%fee%')
GROUP BY month ORDER BY month;"

Read the full file on GitHub · 264 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. 12d ago First seen · 264 lines · 101 tokens per session scan A 17735d8c2b77

Subscribe to this mod's changes

health-check is a skill published in the GitHub repository weklund/fiduciary (10 stars, last pushed 2mo ago), licensed MIT. It adds 101 tokens to every session and 2,172 once invoked, about $0.0005 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