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