Cash flow snapshot

Reads AR/AP, historical cash timing, and known fixed costs from the ledger (MYOB, NetSuite, QuickBooks, Xero, or Zoho Books) or from PayPal, Square, or Stripe — or a CSV upload — and produces a 30/60/90-day cash flow forecast with percentage-variance confidence bands and named risk flags.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/cash-flow-snapshot.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit anthropics/knowledge-work-plugins/small-business/skills/cash-flow-snapshot#main ~/.claude/skills/cash-flow-snapshot

For one project only, change the path to .claude/skills/cash-flow-snapshot.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Cash flow snapshot

Show the full text252 lines
namedescriptioncompatibilityallowed-tools
cash-flow-snapshot> Reads AR/AP, historical cash timing, and known fixed costs from the ledger (MYOB, NetSuite, QuickBooks, Xero, or Zoho Books) or from PayPal, Square, or Stripe — or a CSV upload — and produces a 30/60/90-day cash flow forecast with percentage-variance confidence bands and named risk flags. Delivers a chat summary and a downloadable XLSX. Use when the user asks "forecast my cash flow," "will I make payroll," mentions "runway," or says "cash crunch. Falls back to CSV upload when no connector is live.Requires one or more of: a ledger MCP (MYOB, NetSuite, QuickBooks, Xero, Zoho Books), PayPal MCP, Shopify MCP, Square MCP, Stripe MCP, file upload (CSV fallback). Output uses xlsx skill.Read, WebFetch

Cash Flow Snapshot

Produces a 30/60/90-day cash flow forecast with percentage-variance confidence bands and named risk flags. Delivers a two-part output: a concise chat summary and a downloadable XLSX workbook.

Quick start

"Will I make payroll next month?"

Claude pulls the current bank balance, AR/AP, and fixed costs from connected sources, calculates expected inflows and outflows across 30, 60, and 90-day windows, applies confidence bands from each customer's payment variance, and flags specific risks by name.


Workflow

Step 1 — Identify available data sources

Check which connectors are live. Pull from every one that is, in one batch:

  1. The ledger — MYOB, NetSuite, QuickBooks, Xero, or Zoho Books, whichever is connected — for AR aging, AP, fixed costs, and the cash balance. Ledgers are peers (../../shared/connector-neutrality.md); if two are connected, ask which is the source of record and take totals from that one only
  2. PayPal — transaction history and settlement timing
  3. Square — sales and payout history
  4. Stripe — charge and payout history
  5. Shopify — orders (list-orders) as the inflow, plus payout timing. Shopify on its own is enough to run: for a commerce business it is often the largest inflow. The payout read may fail because the connector's scopes exclude Shopify Payments — then ask the owner for their payout schedule and model from that; never infer a lag (reference/v2_sources.md)
  6. CSV upload — when no connector is connected

If no connector is live and no file is attached, ask the user to either connect a source or upload a CSV (income/expense tabular data, any reasonable format). Note which sources were used in the output — this affects confidence band width.

Always establish the starting cash balance — "will I make payroll" is a question about the balance, not the net. Pull it in Step 2, or ask: "What's in the business account right now, and as of what date?" Never assume one. If nobody knows, head the output "no opening balance — net change only" and drop cash-on-hand from the risk flags.

Step 2 — Pull the data

From the ledger:

  • Balance sheet: bank and cash balances with the as-of date — the opening balance (MYOB holds none; see reference/v2_sources.md)
  • AR aging report: customer name, invoice amount, invoice date, due date, days outstanding
  • AP: vendor name, amount due, due date
  • Recurring fixed costs: rent, payroll, subscriptions (look for recurring transactions)

From Gusto, when connected:

  • The next payroll run's date and expected amount, and the regular pay-schedule cadence — the real numbers for the biggest fixed cost, instead of inferring payroll from recurring transactions. When Gusto and the ledger disagree on payroll, trust Gusto for timing and amount and say so in the output

From PayPal / Stripe / Square:

  • Settlement history: transaction date, amount, settlement date
  • Use settlement lag (transaction date → payout date) to compute each source's average and variance payment delay

From CSV upload:

  • Parse as income/expense tabular data
  • Required columns (flexible naming): date, amount, type (income or expense), description
  • If columns are ambiguous, show the header row and ask the user to confirm mapping
Step 3 — Compute historical payment timing

For each AR customer (or income source from CSV), calculate:

  • Mean payment lag — average days from invoice/transaction date to receipt
  • Payment variance — standard deviation of payment lag across last 6–12 payments
  • Use variance to set confidence band width (see Step 4)

If fewer than 3 payments exist for a customer, use the population mean as the point estimate and apply a ±30% variance band as the default. When running on CSV data with sufficient history (≥3 payments per source), compute the band from the actual payment variance — do not assume ±30%.

Step 4 — Build the 30/60/90-day forecast

Produce three time windows: 0–30 days, 31–60 days, 61–90 days.

For each window, compute:

Line Method
Expected inflows AR due in window, adjusted for mean payment lag
Expected outflows AP due in window + fixed costs falling in window
Net cash position Inflows − Outflows
Confidence band ± weighted average payment variance as a % of expected inflows

Confidence band formula:

band_pct = weighted_avg_stddev_days / avg_payment_lag_days
low  = net_cash × (1 − band_pct)
high = net_cash × (1 + band_pct)

Round band_pct to one decimal place. Cap at ±50% — higher variance means the data is too thin to model; flag it instead (see Step 5).

Step 5 — Flag named risks

Scan for conditions that push the low-band estimate negative or create a liquidity crunch. For each risk found, produce a one-line flag:

  • Late-payer risk: "Customer X historically pays 18 days late; that shifts their USD 8,400 invoice out of the 30-day window into day 48."
  • Payroll crunch: "Payroll (USD 22,000) hits April 15. Opening balance USD 31,000 on April 1, plus inflows, minus outflows, puts low-band cash on hand April 14 at USD 19,200. Shortfall risk: USD 2,800." Needs a sourced balance.
  • Thin data warning: "Only 2 payments on record for Customer Y — confidence band set to default ±30%."
  • No-connector warning: "Running on CSV data only — no real-time AP or recurring cost data. Confidence bands are wider than normal."

Limit to the top 5 risks by severity (largest dollar impact first).

Step 6 — Deliver outputs

Chat summary (always). Use a markdown table for the forecast, not a fenced code block — the chat surface renders markdown tables; a fenced block shows up as raw monospace text. Shape:

  • Title line: Cash Flow Snapshot — <date range>
  • Source(s): <connectors used>
  • Opening balance: AUD X,XXX as of <date> (or: none on file — net change only)

Then the forecast as a markdown table, amounts carrying the business's currency code (../../shared/currency-and-locale.md), never a bare symbol:

Window Expected Low High
30-day net AUD X,XXX AUD X,XXX AUD X,XXX
60-day net AUD X,XXX AUD X,XXX AUD X,XXX
90-day net AUD X,XXX AUD X,XXX AUD X,XXX

Then risks as a short bulleted list under "⚠ Risks flagged: <count>".

XLSX workbook (always): read xlsx/SKILL.md first, then produce three sheets:

  1. Summary — the 30/60/90 forecast table with confidence bands. Beneath each window row, expand inline sub-rows showing the individual transactions that make up its inflows (green) and outflows (red). This makes the estimates auditable without leaving the Summary sheet.

  2. Detail — all transactions grouped by window, sorted by date within each group. Include a running net column (cumulative inflows minus outflows within the window) and a subtotal row at the bottom of each window showing total inflows, total outflows, and net. Grey out past transactions in a separate section at the bottom for reference. Ensure all three windows have rows even if one is empty — show a "No transactions in this window" placeholder row.

  3. Risks — the flagged risks with dollar impact and affected window.

Save as cash-flow-snapshot-[YYYY-MM-DD].xlsx.

The forecast page (always, alongside the chat summary — never instead of it), delivered per the owner's stored output preference — never default to a markdown file. Check the ## Business context block's Output preference (shared style guide rule, ../../shared/artifact-style.md):

  • Visual artifact (the default): render the full forecast as an HTML page in the house style. The 30/60/90-day nets are stat tiles with the confidence range as each tile's context line; the transaction detail is a table with right-aligned tabular-nums amounts; each risk flag carries a status pill — critical for a projected shortfall, warn for late-payer and thin-data flags; sources and opening balance sit in a small header panel.
  • docx / md / notion / canva preference: deliver the same content in that form — a DOCX or markdown file, a Notion page created via the connector (named destination, never overwriting), or a Canva Doc created via the Canva connector (a new design each run, named with the date; tables become lists); fall back to the visual artifact if Notion or Canva is not connected — and say that is why. The XLSX still ships alongside.
  • Best for skill: use the visual artifact — a forecast is read at a glance and re-run often.

After the run

One line on what just happened: the forecast is built and the risks are named. Then offer the single most relevant next step, plus at most two others nearby:

  • If a payroll crunch was flagged: "can I make payroll" runs /plan-payroll.
  • "Who owes me money?" runs invoice-chase to pull collections forward.
  • "Close the month" runs /close-month so next forecast runs on clean books.

Max three offers, and never repeat an offer the owner declined this session.

Approval gates

This skill is read-only — no approval gate before generating the forecast.

Remind the user after delivery:

"This forecast is based on [sources listed]. It is not a substitute for accounting advice — verify with your bookkeeper before making financing decisions."


More sources, and a schedule

Read reference/v2_sources.md for the full mapping:

  • Shopify — payments inflow timing, which is often the largest single inflow for a commerce business and settles on a delay worth modeling
  • NetSuite — a ledger of record, common at the larger end of the segment: AR, AP, fixed costs, and the cash balance via reports and SuiteQL
  • Xero — a ledger of record: aged receivables, bills, bank balances, and the organisation's currency and financial year
  • Ramp — card spend that hasn't hit the books yet, which is the most common reason a forecast is quietly optimistic
  • Ramp balances — real business and treasury account balances with history. When the owner banks with Ramp this is a sourced opening balance rather than a number they had to remember
  • MYOB — AR and AP legs for MYOB shops. Read-only, and it holds no bank or cash balances at all — never source an opening balance from it

Nothing about the forecast logic changes. These are additional legs into the same model.

Running on a schedule

This skill is schedulable. The monthly preset is a cash heads-up before the month turns.

Offer it once, after a forecast the owner found useful:

Want this monthly, a few days before month end? That's when it's most useful,
and it's the same forecast you just got.

Scheduling is a property of this skill. There is no separate command for it.

QuickBooks summary fields lie. Read ../../shared/quickbooks-report-traps.md before quoting any total from a QuickBooks summary object: the AP aging summary nets vendor credits into its buckets and can show a negative overdue figure, and the P&L summary can report expenses as zero against real rows. Total the rows, or use the detail call.

Reference files

File Load when
reference/gotchas.md When a connector returns unexpected data or variance is extreme
reference/examples/worked-example.md When modeling the output format for a new data shape

Using a tool that isn't listed

The connectors named in this skill are the tested paths, not a wall. If the owner wants this flow to use a tool that isn't connected or listed, offer build-connector — it checks the connector directory first and connects through Zapier otherwise, never hand-building against a raw API. Once the connection exists, the tool joins this skill like any other optional connector, under the same approval gates.

1---
2name: cash-flow-snapshot
3description: >
4 Reads AR/AP, historical cash timing, and known fixed costs from the ledger
5 (MYOB, NetSuite, QuickBooks, Xero, or Zoho Books) or from PayPal, Square, or Stripe — or
6 a CSV upload — and produces a 30/60/90-day cash flow forecast with
7 percentage-variance confidence bands and named risk flags. Delivers a chat
8 summary and a downloadable XLSX. Use when the user asks "forecast my cash
9 flow," "will I make payroll," mentions "runway," or says "cash crunch."
10 Falls back to CSV upload when no connector is live.
11compatibility: "Requires one or more of: a ledger MCP (MYOB, NetSuite, QuickBooks, Xero, Zoho Books), PayPal MCP, Shopify MCP, Square MCP, Stripe MCP, file upload (CSV fallback). Output uses xlsx skill."
12allowed-tools: Read, WebFetch
13---
14 
15# Cash Flow Snapshot
16 
17Produces a 30/60/90-day cash flow forecast with percentage-variance confidence
18bands and named risk flags. Delivers a two-part output: a concise chat summary
19and a downloadable XLSX workbook.
20 
21**Quick start**
22 
23> "Will I make payroll next month?"
24 
25Claude pulls the current bank balance, AR/AP, and fixed costs from connected
26sources, calculates expected inflows and outflows across 30, 60, and 90-day
27windows, applies confidence bands from each customer's payment variance, and
28flags specific risks by name.
29 
30---
31 
32## Workflow
33 
34### Step 1 — Identify available data sources
35 
36Check which connectors are live. Pull from every one that is, in one batch:
37 
381. The ledger — MYOB, NetSuite, QuickBooks, Xero, or Zoho Books, whichever is connected — for AR aging, AP, fixed costs, and the cash balance. Ledgers are peers (`../../shared/connector-neutrality.md`); if two are connected, ask which is the source of record and take totals from that one only
392. PayPal — transaction history and settlement timing
403. Square — sales and payout history
414. Stripe — charge and payout history
425. Shopify — orders (`list-orders`) as the inflow, plus payout timing. Shopify on its own is enough to run: for a commerce business it is often the largest inflow. The payout read may fail because the connector's scopes exclude Shopify Payments — then ask the owner for their payout schedule and model from that; never infer a lag (`reference/v2_sources.md`)
436. CSV upload — when no connector is connected
44 
45If no connector is live and no file is attached, ask the user to either connect
46a source or upload a CSV (income/expense tabular data, any reasonable format).
47Note which sources were used in the output — this affects confidence band width.
48 
49**Always establish the starting cash balance** — "will I make payroll" is a
50question about the balance, not the net. Pull it in Step 2, or ask: "What's in
51the business account right now, and as of what date?" **Never assume one.** If
52nobody knows, head the output "no opening balance — net change only" and drop
53cash-on-hand from the risk flags.
54 
55### Step 2 — Pull the data
56 
57**From the ledger:**
58- Balance sheet: bank and cash balances with the as-of date — the opening balance
59 (MYOB holds none; see `reference/v2_sources.md`)
60- AR aging report: customer name, invoice amount, invoice date, due date, days outstanding
61- AP: vendor name, amount due, due date
62- Recurring fixed costs: rent, payroll, subscriptions (look for recurring transactions)
63 
64**From Gusto, when connected:**
65- The next payroll run's date and expected amount, and the regular pay-schedule
66 cadence — the real numbers for the biggest fixed cost, instead of inferring
67 payroll from recurring transactions. When Gusto and the ledger disagree on
68 payroll, trust Gusto for timing and amount and say so in the output
69 
70**From PayPal / Stripe / Square:**
71- Settlement history: transaction date, amount, settlement date
72- Use settlement lag (transaction date → payout date) to compute each source's
73 average and variance payment delay
74 
75**From CSV upload:**
76- Parse as income/expense tabular data
77- Required columns (flexible naming): date, amount, type (income or expense), description
78- If columns are ambiguous, show the header row and ask the user to confirm mapping
79 
80### Step 3 — Compute historical payment timing
81 
82For each AR customer (or income source from CSV), calculate:
83- **Mean payment lag** — average days from invoice/transaction date to receipt
84- **Payment variance** — standard deviation of payment lag across last 6–12 payments
85- Use variance to set confidence band width (see Step 4)
86 
87If fewer than 3 payments exist for a customer, use the population mean as the
88point estimate and apply a ±30% variance band as the default. When running on
89CSV data with sufficient history (≥3 payments per source), compute the band
90from the actual payment variance — do not assume ±30%.
91 
92### Step 4 — Build the 30/60/90-day forecast
93 
94Produce three time windows: 0–30 days, 31–60 days, 61–90 days.
95 
96For each window, compute:
97 
98| Line | Method |
99|---|---|
100| Expected inflows | AR due in window, adjusted for mean payment lag |
101| Expected outflows | AP due in window + fixed costs falling in window |
102| Net cash position | Inflows − Outflows |
103| Confidence band | ± weighted average payment variance as a % of expected inflows |
104 
105Confidence band formula:
106```
107band_pct = weighted_avg_stddev_days / avg_payment_lag_days
108low = net_cash × (1 − band_pct)
109high = net_cash × (1 + band_pct)
110```
111 
112Round band_pct to one decimal place. Cap at ±50% — higher variance means the
113data is too thin to model; flag it instead (see Step 5).
114 
115### Step 5 — Flag named risks
116 
117Scan for conditions that push the low-band estimate negative or create a
118liquidity crunch. For each risk found, produce a one-line flag:
119 
120- **Late-payer risk:** "Customer X historically pays 18 days late; that shifts
121 their USD 8,400 invoice out of the 30-day window into day 48."
122- **Payroll crunch:** "Payroll (USD 22,000) hits April 15. Opening balance USD 31,000
123 on April 1, plus inflows, minus outflows, puts low-band cash on hand April 14
124 at USD 19,200. Shortfall risk: USD 2,800." Needs a sourced balance.
125- **Thin data warning:** "Only 2 payments on record for Customer Y — confidence
126 band set to default ±30%."
127- **No-connector warning:** "Running on CSV data only — no real-time AP or
128 recurring cost data. Confidence bands are wider than normal."
129 
130Limit to the top 5 risks by severity (largest dollar impact first).
131 
132### Step 6 — Deliver outputs
133 
134**Chat summary** (always). Use a markdown table for the forecast, not a fenced
135code block — the chat surface renders markdown tables; a fenced block shows up
136as raw monospace text. Shape:
137 
138- Title line: Cash Flow Snapshot — <date range>
139- Source(s): <connectors used>
140- Opening balance: AUD X,XXX as of <date> (or: none on file — net change only)
141 
142Then the forecast as a markdown table, amounts carrying the business's currency
143code (`../../shared/currency-and-locale.md`), never a bare symbol:
144 
145| Window | Expected | Low | High |
146|---|---|---|---|
147| 30-day net | AUD X,XXX | AUD X,XXX | AUD X,XXX |
148| 60-day net | AUD X,XXX | AUD X,XXX | AUD X,XXX |
149| 90-day net | AUD X,XXX | AUD X,XXX | AUD X,XXX |
150 
151Then risks as a short bulleted list under "⚠ Risks flagged: <count>".
152 
153**XLSX workbook** (always): read `xlsx/SKILL.md` first, then produce three sheets:
154 
1551. **Summary** — the 30/60/90 forecast table with confidence bands. Beneath
156 each window row, expand inline sub-rows showing the individual transactions
157 that make up its inflows (green) and outflows (red). This makes the estimates
158 auditable without leaving the Summary sheet.
159 
1602. **Detail** — all transactions grouped by window, sorted by date within each
161 group. Include a running net column (cumulative inflows minus outflows within
162 the window) and a subtotal row at the bottom of each window showing total
163 inflows, total outflows, and net. Grey out past transactions in a separate
164 section at the bottom for reference. Ensure all three windows have rows even
165 if one is empty — show a "No transactions in this window" placeholder row.
166 
1673. **Risks** — the flagged risks with dollar impact and affected window.
168 
169Save as `cash-flow-snapshot-[YYYY-MM-DD].xlsx`.
170 
171**The forecast page** (always, alongside the chat summary — never instead of
172it), delivered per the owner's stored output preference — never default to a
173markdown file. Check the `## Business context` block's `Output preference`
174(shared style guide rule, `../../shared/artifact-style.md`):
175 
176- **Visual artifact (the default):** render the full forecast as an HTML page
177 in the house style. The 30/60/90-day nets are stat tiles with the confidence
178 range as each tile's context line; the transaction detail is a table with
179 right-aligned tabular-nums amounts; each risk flag carries a status pill —
180 critical for a projected shortfall, warn for late-payer and thin-data flags;
181 sources and opening balance sit in a small header panel.
182- **docx / md / notion / canva preference:** deliver the same content in that
183 form — a DOCX or markdown file, a Notion page created via the connector
184 (named destination, never overwriting), or a Canva Doc created via the Canva
185 connector (a new design each run, named with the date; tables become
186 lists); fall back to the visual artifact if Notion or Canva is not
187 connected — and say that is why. The XLSX still ships alongside.
188- **Best for skill:** use the visual artifact — a forecast is read at a glance
189 and re-run often.
190 
191---
192 
193## After the run
194 
195One line on what just happened: the forecast is built and the risks are named.
196Then offer the single most relevant next step, plus at most two others nearby:
197 
198- If a payroll crunch was flagged: "can I make payroll" runs `/plan-payroll`.
199- "Who owes me money?" runs `invoice-chase` to pull collections forward.
200- "Close the month" runs `/close-month` so next forecast runs on clean books.
201 
202Max three offers, and never repeat an offer the owner declined this session.
203 
204## Approval gates
205 
206This skill is read-only — no approval gate before generating the forecast.
207 
208Remind the user after delivery:
209> "This forecast is based on [sources listed]. It is not a substitute for
210> accounting advice — verify with your bookkeeper before making financing decisions."
211 
212---
213 
214## More sources, and a schedule
215 
216Read `reference/v2_sources.md` for the full mapping:
217 
218- **Shopify** — payments inflow timing, which is often the largest single inflow for a commerce business and settles on a delay worth modeling
219- **NetSuite** — a ledger of record, common at the larger end of the segment: AR, AP, fixed costs, and the cash balance via reports and SuiteQL
220- **Xero** — a ledger of record: aged receivables, bills, bank balances, and the organisation's currency and financial year
221- **Ramp** — card spend that hasn't hit the books yet, which is the most common reason a forecast is quietly optimistic
222- **Ramp balances** — real business and treasury account balances with history. When the owner banks with Ramp this is a sourced opening balance rather than a number they had to remember
223- **MYOB** — AR and AP legs for MYOB shops. Read-only, and it holds **no bank or cash balances at all** — never source an opening balance from it
224 
225Nothing about the forecast logic changes. These are additional legs into the same model.
226 
227### Running on a schedule
228 
229This skill is schedulable. The monthly preset is a cash heads-up before the month turns.
230 
231Offer it once, after a forecast the owner found useful:
232 
233```
234Want this monthly, a few days before month end? That's when it's most useful,
235and it's the same forecast you just got.
236```
237 
238Scheduling is a property of this skill. There is no separate command for it.
239 
240**QuickBooks summary fields lie.** Read `../../shared/quickbooks-report-traps.md` before quoting any total from a QuickBooks summary object: the AP aging summary nets vendor credits into its buckets and can show a negative overdue figure, and the P&L summary can report expenses as zero against real rows. Total the rows, or use the detail call.
241 
242## Reference files
243 
244| File | Load when |
245|---|---|
246| `reference/gotchas.md` | When a connector returns unexpected data or variance is extreme |
247| `reference/examples/worked-example.md` | When modeling the output format for a new data shape |
248 
249## Using a tool that isn't listed
250 
251The connectors named in this skill are the tested paths, not a wall. If the owner wants this flow to use a tool that isn't connected or listed, offer `build-connector` — it checks the connector directory first and connects through Zapier otherwise, never hand-building against a raw API. Once the connection exists, the tool joins this skill like any other optional connector, under the same approval gates.
252 

Discussion

Alternatives

Also in Cash & budgetSee all 35 in Finance →
Ad campaign analyzerAnalyze ad campaign performance data (Google, Meta, LinkedIn) to identify what's working, what's wasting budget, and specific cut/scale/test recommendations. Runs statistical analysis, funnel diagnostics, and multi-channel budget reallocation with specific dollar-amount shift recommendations and scenario modeling.Business & ops · MITStartup financial modelingBuild comprehensive 3-5 year financial models with revenue projections, cost structures, cash flow analysis, and scenario planning for early-stage startups. Use this skill when creating financial projections, calculating burn rate or runway, modeling fundraising scenarios, or preparing investor-ready financials for a seed or Series A raise.Business & ops · MIT/cs:cfo-review — CFO Forcing Questions/cs:cfo-review <plan> — Numerate-skeptic interrogation of any plan that touches money. Unit economics, runway, dilution, capital allocation. Use when a plan commits meaningful spend — e.g. a hiring wave, a fundraise decision, or a new channel budget.Business & ops · MITCfo advisorFinancial leadership for startups and scaling companies. Financial modeling, unit economics, fundraising strategy, cash management, and board financial packages. Use when building financial models, analyzing unit economics, planning fundraising, managing cash runway, preparing board materials, or when user mentions CFO, burn rate, runway, fundraising, unit economics, LTV, CAC, term sheets, or financial strategy.Business & ops · MIT