financial-goals
Installation
SKILL.md
Financial Goals Tracker
Overview
Helps you define specific savings goals (vacation, down payment, new car, etc.), calculates the required monthly savings for each, tracks progress from your transaction history, and alerts you when you are ahead or behind schedule.
Wilson Tools Used
spending_summary— determine current savings rate and available capacity for goalstransaction_search— find deposits and transfers related to specific goals
Workflow
- Ask the user to define their goals. For each goal, collect: name, target amount, target date, and any dedicated savings account or label.
- Run
spending_summaryfor the last 3 months to calculate average monthly income and average monthly expenses. Derive the current monthly savings rate:income - expenses. - For each goal, calculate:
- Months remaining: difference between today and target date
- Required monthly savings:
(target amount - current progress) / months remaining
- Run
transaction_searchwithquery: "<goal name> OR <account name>"andmonths: 6for each goal to find related deposits or earmarked transfers. - Sum the deposits found to estimate current progress toward each goal.
- Present a goals dashboard:
Related skills