Calculates net worth by searching transactions for savings, investments, debts; prompts for account balances; generates formatted statement with growth delta.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openaccountant-skills:net-worthThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Calculates your net worth by combining transaction-derived data (savings deposits, investment contributions, debt payments) with user-provided account balances. Produces a formatted net worth statement and tracks changes over time.
Calculates your net worth by combining transaction-derived data (savings deposits, investment contributions, debt payments) with user-provided account balances. Produces a formatted net worth statement and tracks changes over time.
transaction_search — find savings deposits, investment contributions, and debt payments to identify accounts and activityRun transaction_search with query: "savings OR transfer to savings OR deposit" and months: 3 to identify savings account activity.
Run transaction_search with query: "investment OR 401k OR IRA OR brokerage OR Vanguard OR Fidelity OR Schwab" and months: 3 to find investment contributions.
Run transaction_search with query: "mortgage OR loan payment OR student loan OR auto loan" and months: 3 to find liability-related payments.
From the results, compile a list of accounts detected (savings accounts, investment accounts, loan accounts).
Ask the user to provide current balances for each detected account, plus any accounts not visible in transactions (home value, vehicle value, other assets, credit card balances).
Organize into a net worth statement:
ASSETS
──────────────────────────────────
Checking Accounts $X,XXX.XX
Savings Accounts $X,XXX.XX
Investment Accounts $X,XXX.XX
Retirement (401k/IRA) $X,XXX.XX
Property $X,XXX.XX
Vehicles $X,XXX.XX
Other Assets $X,XXX.XX
──────────────────────────────────
TOTAL ASSETS $XX,XXX.XX
LIABILITIES
──────────────────────────────────
Credit Cards $X,XXX.XX
Student Loans $X,XXX.XX
Auto Loans $X,XXX.XX
Mortgage $X,XXX.XX
Other Liabilities $X,XXX.XX
──────────────────────────────────
TOTAL LIABILITIES $XX,XXX.XX
══════════════════════════════════
NET WORTH $XX,XXX.XX
══════════════════════════════════
If the user has run this skill before and provides previous balances, calculate the change in net worth and show the delta.
Highlight the biggest contributor to net worth growth or decline.
Net Worth = Total Assets - Total Liabilities.=SUM(B2:B8) for total assets and =SUM(B10:B15) for total liabilities. Net worth: =B9-B16.npx claudepluginhub openaccountant/skillsCalculates net worth by subtracting total liabilities from total assets. Use for tracking financial health, setting wealth goals, and deciding debt paydown vs. investing.
Generates avalanche (highest interest first) or snowball (smallest balance first) debt payoff plans with month-by-month payment schedules from transaction data.
Financial planning skill for Canadians: conducts interviews, builds plans with dashboards, and provides coaching. Triggers on budgeting, saving, investing, retirement, tax, debt, and benefits.