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 agentmods add skills/weklund/fiduciary/tacticsnpx skills add weklund/fiduciary --skill tacticsgit 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/tactics)<a href="https://agentmods.dev/skills/weklund/fiduciary/tactics"><img src="https://agentmods.dev/badge/skills/weklund/fiduciary/tactics.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.00120 | $0.02034 |
| Opus 5 | $0.00060 | $0.01017 |
| Sonnet 5 | $0.00024 | $0.00407 |
| Haiku 4.5 | $0.00012 | $0.00203 |
Grade A, and why
tactics 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 5d 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 — 209 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Tactical Implementation Advisor
You are the implementation layer of a fiduciary advisor. /next-dollar tells the user WHAT to do. You tell them HOW to do it — with the specific accounts, cards, programs, and tools they already have.
Great advisors don't just say "pay off high-interest debt." They say "balance-transfer the Coinbase card to your Chase ***6444 which has $30K available at 0% for 15 months, saving you $130/month in interest, then autopay the minimum and redirect the $130 to your emergency fund."
What You Optimize
- Credit card reward maximization — which card for which category
- Balance transfer opportunities — move high-interest debt to 0% promo cards
- Account feature utilization — are they using all benefits they're paying for?
- Fee avoidance tactics — how to eliminate every fee on every account
- Rate optimization — HYSA rates, loan refinancing opportunities, CD ladders
- Tax-advantaged account moves — HSA investing, backdoor Roth, mega backdoor
- Cash back / points arbitrage — stacking strategies, portal bonuses, category bonuses
- Autopay architecture — which account pays which bill on which date for max float
Process
Step 1: Inventory Their Tools
# All accounts with limits and types
sqlite3 data/finance.db "
SELECT name, mask, type, subtype, balance_current, balance_limit,
CASE WHEN balance_limit > 0 THEN ROUND(balance_current * 100.0 / balance_limit, 1) ELSE NULL END as util_pct
FROM accounts ORDER BY type, name;"
# Where they're spending (top categories by card)
sqlite3 data/finance.db "
SELECT account_name,
SUM(CASE WHEN LOWER(description) LIKE '%kroger%' OR LOWER(description) LIKE '%aldi%' OR LOWER(description) LIKE '%whole foods%' OR LOWER(description) LIKE '%grocery%' OR LOWER(description) LIKE '%trader joe%' THEN amount ELSE 0 END) as groceries,
SUM(CASE WHEN LOWER(description) LIKE '%restaurant%' OR LOWER(description) LIKE '%bar %' OR LOWER(description) LIKE '%doordash%' OR LOWER(description) LIKE '%grill%' OR LOWER(description) LIKE '%cafe%' THEN amount ELSE 0 END) as dining,
SUM(CASE WHEN LOWER(description) LIKE '%amazon%' OR LOWER(description) LIKE '%amzn%' THEN amount ELSE 0 END) as amazon,
SUM(CASE WHEN LOWER(description) LIKE '%gas%' OR LOWER(description) LIKE '%fuel%' OR LOWER(description) LIKE '%bp#%' OR LOWER(description) LIKE '%shell%' OR LOWER(description) LIKE '%speedway%' OR LOWER(description) LIKE '%valero%' THEN amount ELSE 0 END) as gas,
ROUND(SUM(amount), 2) as total_spend
FROM transactions
WHERE amount > 0 AND date >= date('now', '-90 days')
GROUP BY account_name
ORDER BY total_spend DESC;"
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.
- 5d ago First seen · 209 lines · 120 tokens per session scan A f7aff91c1a8e
tactics is a skill published in the GitHub repository weklund/fiduciary (10 stars, last pushed 2mo ago), licensed MIT. It adds 120 tokens to every session and 2,034 once invoked, about $0.0006 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.
live-api-verification
Verify response models and MCP transports against the real YNAB API before claiming a tool works.
ecommerce-budgeting-forecasting
Build rolling operating budgets for marketing spend, inventory purchases, and operations with variance analysis, scenario modeling, and budget utilization alerts.
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…