用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/openaccountant/skills --skill net-worth命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | net-worth |
| description | Calculate net worth from assets and liabilities with a formatted statement. |
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.