agentsclimarketplace

Financial goals

Skill openaccountant/skills/personal/financial-goals

Set savings goals with timelines and track monthly progress toward them.From its SKILL.md

Install
npx -y skills add openaccountant/skills --skill financial-goals

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • runs commandsInstructs the agent to run 2 commands, including `spending_summary` and 1 more.

SKILL.md

3.9 KB, 882 tokens by cl100k_base, as published. Nobody here has run it

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 goals
  • transaction_search — find deposits and transfers related to specific goals

Workflow

  1. Ask the user to define their goals. For each goal, collect: name, target amount, target date, and any dedicated savings account or label.

  2. 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.

  3. For each goal, calculate:

    • Months remaining: difference between today and target date
    • Required monthly savings: (target amount - current progress) / months remaining
  4. Run transaction_search with query: "<goal name> OR <account name>" and months: 6 for each goal to find related deposits or earmarked transfers.

  5. Sum the deposits found to estimate current progress toward each goal.

  6. 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
    
  7. If total required monthly savings exceeds available savings rate, flag the shortfall and suggest either extending timelines, reducing targets, or increasing income.

  8. Prioritize goals by deadline and suggest an allocation order.

Without Wilson

  1. Open a spreadsheet and create columns: Goal Name, Target Amount, Target Date, Current Balance, Monthly Required.
  2. For current balance, check the account(s) designated for each goal. If you use a single savings account for everything, you will need to track allocations manually (one row per goal with a running tally).
  3. Calculate months remaining: in Google Sheets, =DATEDIF(TODAY(), C2, "M") where C2 is the target date.
  4. Monthly required: =(B2-D2)/E2 where B2 is target, D2 is current balance, E2 is months remaining.
  5. Sum the "Monthly Required" column to see your total goal obligations.
  6. Check your monthly savings capacity: review last month's bank statement, note total deposits minus total non-savings expenses.
  7. If total required exceeds your capacity, either push target dates out or reduce amounts.
  8. Apps that help: Ally Bank has built-in "Buckets" for goal tracking. Capital One 360 allows multiple savings accounts. YNAB has explicit goal tracking.
  9. Set up automatic transfers for each goal amount on payday to avoid relying on willpower.

Important Notes

  • Wilson tracks transaction activity but does not know your account balances. You must provide starting balances for each goal.
  • If you use a single savings account for multiple goals, Wilson cannot distinguish between goal contributions without descriptive memo fields on transfers.
  • Reassess goals quarterly. Life changes, and rigid goals that no longer matter will drain motivation.
  • Consider prioritizing goals with fixed deadlines (tax payments, tuition) over flexible ones (vacation, new car).

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most finance skills give in 882 tokens

Counted across 469 of the 469 authors here whose files we hold, read 2026-08-07

  • Extract date vendor amount and descriptionin 15 of 469, across 3 files
  • Scan folder for invoice filesin 14 of 469, across 2 files
  • Rename files to standard formatin 14 of 469, across 2 files
  • Show organization plan before movingin 14 of 469, across 2 files
  • Generate summary CSVin 14 of 469, across 2 files
  • Organize files by categoryin 13 of 469, across 1 file
  • Preserve original filesin 13 of 469, across 1 file
  • Flag files missing critical infoin 13 of 469, across 1 file
  • Produce the requested output filein 9 of 469, across 4 files
  • Build best, base, and worst case scenariosin 9 of 469, across 5 files
  • Implement backoff if rate limit errors occurin 8 of 469, across 3 files
  • Determine the weighted average cost of capitalin 8 of 469, across 4 files

Said here and by no other author read

  • Collect goal details from the user
  • Calculate current monthly savings rate
  • Calculate months remaining for each goal
  • Calculate required monthly savings per goal
  • Search transactions for each goal over six months
  • Sum found deposits to estimate current progress

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.