ワンクリックで
cash-flow-forecast
Project future cash flow using historical trends and recurring patterns.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Project future cash flow using historical trends and recurring patterns.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Calculate break-even revenue by separating fixed and variable costs.
Analyze revenue and costs per client to find your most profitable accounts.
Monitor 1099 contractor payments and flag $600 threshold.
Track unpaid invoices by age bucket and flag overdue payments.
Run a monthly bookkeeping close checklist with reconciliation.
Manage finances across multiple businesses or legal entities.
| name | cash-flow-forecast |
| description | Project future cash flow using historical trends and recurring patterns. |
Project future cash inflows and outflows using a 3-month moving average methodology. Identifies recurring revenue and expenses, detects seasonal patterns, and produces a monthly projection table.
spending_summary — get monthly expense totals and category breakdowns for trend analysisanomaly_detect — identify recurring transactions (subscriptions, regular payments, payroll) that form the predictable baselinetransaction_search — pull historical cash position and transaction datatransaction_search to pull the last 6-12 months of transactions.spending_summary for each of the past 6 months to get income and expense totals.anomaly_detect to identify recurring transactions (subscriptions, payroll, rent, retainers).CASH FLOW FORECAST — [Start Month] to [End Month]
══════════════════════════════════════════════════════════
Month 1 Month 2 Month 3
──────────────────────────────────────────────────────────
Opening Balance $XX,XXX $XX,XXX $XX,XXX
INFLOWS
Recurring Revenue $X,XXX $X,XXX $X,XXX
Variable Revenue $X,XXX $X,XXX $X,XXX
Total Inflows $X,XXX $X,XXX $X,XXX
OUTFLOWS
Payroll ($X,XXX) ($X,XXX) ($X,XXX)
Rent ($X,XXX) ($X,XXX) ($X,XXX)
Subscriptions ($XXX) ($XXX) ($XXX)
Variable Expenses ($X,XXX) ($X,XXX) ($X,XXX)
Total Outflows ($X,XXX) ($X,XXX) ($X,XXX)
NET CASH FLOW $X,XXX $X,XXX $X,XXX
Closing Balance $XX,XXX $XX,XXX $XX,XXX
══════════════════════════════════════════════════════════
Month column: =TEXT(Date,"YYYY-MM").=AVERAGE(B2:B4) sliding across the monthly totals.=FORECAST.ETS() function on monthly totals, which handles seasonality automatically.=FORECAST(target_date, known_values, known_dates).