원클릭으로
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).