Calculates net worth by searching transactions for savings, investments, debts; prompts for account balances; generates formatted statement with growth delta.
npx claudepluginhub openaccountant/skillsThis skill uses the workspace's default tool permissions.
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.
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.
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.