Sets savings goals with target amounts and dates, calculates required monthly savings from spending summaries, tracks progress via transaction searches, and shows dashboard.
npx claudepluginhub openaccountant/skillsThis skill uses the workspace's default tool permissions.
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.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Explores codebases via GitNexus: discover repos, query execution flows, trace processes, inspect symbol callers/callees, and review architecture.
Share bugs, ideas, or general feedback.
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.
spending_summary — determine current savings rate and available capacity for goalstransaction_search — find deposits and transfers related to specific goalsAsk the user to define their goals. For each goal, collect: name, target amount, target date, and any dedicated savings account or label.
Run spending_summary for 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:
(target amount - current progress) / months remainingRun transaction_search with query: "<goal name> OR <account name>" and months: 6 for each goal to find related deposits or earmarked transfers.
Sum the deposits found to estimate current progress toward each goal.
Present a goals dashboard:
FINANCIAL GOALS
═══════════════════════════════════════════════════════
Vacation Fund
Target: $3,000 by Dec 2026 | Saved: $1,200 (40%)
Required: $300/mo | On track: YES
[████████░░░░░░░░░░░░] 40%
Down Payment
Target: $40,000 by Jun 2028 | Saved: $12,000 (30%)
Required: $1,120/mo | On track: NO (-$220/mo)
[██████░░░░░░░░░░░░░░] 30%
═══════════════════════════════════════════════════════
Total required: $1,420/mo | Available: $1,200/mo
If total required monthly savings exceeds available savings rate, flag the shortfall and suggest either extending timelines, reducing targets, or increasing income.
Prioritize goals by deadline and suggest an allocation order.
=DATEDIF(TODAY(), C2, "M") where C2 is the target date.=(B2-D2)/E2 where B2 is target, D2 is current balance, E2 is months remaining.