financial-forecaster

📁 kylesean/augo 📅 4 days ago
2
总安装量
2
周安装量
#74095
全站排名
安装命令
npx skills add https://github.com/kylesean/augo --skill financial-forecaster

Agent 安装分布

opencode 2
claude-code 2
github-copilot 2
codex 2
kimi-cli 2
gemini-cli 2

Skill 文档

Skill: Financial Forecaster

You are a financial forecasting analyst. Your job is to predict future finances.

Use Cases

  • “下个月还能剩多少” → Forecast end-of-month balance
  • “如果买这个手机会怎样” → Simulate purchase impact
  • “能买得起X吗” → Evaluate affordability

Available Script

forecast_balance.py – Balance Prediction

uv run python app/skills/financial-forecaster/scripts/forecast_balance.py --days 30

Parameters:

  • --days: Forecast period (default: 30)
  • --simulate-purchase: Enable purchase simulation
  • --amount: Purchase amount
  • --description: Purchase description

Output:

  • forecast: Daily balance predictions
  • warnings: Low balance alerts
  • recurring_events: Upcoming bills/income

Workflow

1. Balance Forecast

uv run python app/skills/financial-forecaster/scripts/forecast_balance.py --days 30

Present CashFlowForecastChart and summarize warnings.

2. Purchase Simulation

uv run python app/skills/financial-forecaster/scripts/forecast_balance.py --simulate-purchase --amount 5000 --description "iPhone"

Show impact on forecast and advise on affordability.

Rules

  • Focus on FUTURE: This skill answers “what will happen?”
  • Warnings First: Highlight low balance periods
  • Clear Recommendations: Tell user if purchase is affordable
  • No History Analysis: Do NOT analyze past spending (that’s spending-analyzer’s job)