This recipe produces a complete cash buffer policy, three-scenario runway model, and tiered contingency playbook for a startup. The output defines exactly how much cash to hold above planned spend at each stage, sets alert thresholds that trigger specific actions (cost cuts, fundraising, bridge round, or orderly wind-down), and pre-authorizes decisions so the team can act fast when runway shrinks. The deliverable replaces gut-feel cash management with a structured system that a board can approve and a finance team can execute weekly. [src1]
Which path?
├── Pre-revenue startup (no meaningful revenue data)
│ └── PATH A: Burn-Only Model — buffer sized as months of gross burn
├── Early revenue with growth (pre-PMF or early PMF)
│ └── PATH B: Default Alive Model — buffer sized relative to breakeven timeline
├── Revenue growing 10%+ MoM (scaling phase)
│ └── PATH C: Dynamic Buffer — buffer adjusts monthly based on net burn trajectory
└── Stable or declining revenue (survival mode)
└── PATH D: Survival Model — minimum viable buffer + immediate cost action plan
| Path | Approach | Buffer Target | Complexity | Update Frequency |
|---|---|---|---|---|
| A: Burn-Only | Months of gross burn | 18-24 months | Low | Monthly |
| B: Default Alive | Time to breakeven + margin | 6-9 months above breakeven | Medium | Bi-weekly |
| C: Dynamic Buffer | Net burn trajectory | 3-6 months above plan | Medium-High | Weekly |
| D: Survival | Minimum viable operations | 3-6 months at skeleton crew | High urgency | Weekly |
Duration: 1-2 hours · Tool: Spreadsheet + accounting data
Build the baseline financial snapshot using actual data from your accounting system. Calculate cash in bank, trailing 3-month average gross burn, net burn, and current runway in months.
CASH POSITION SNAPSHOT
Cash in bank (all accounts): $____________
Accounts receivable (collectible): $____________
TOTAL AVAILABLE CASH: $____________
MONTHLY BURN (trailing 3-month average)
Gross burn (total expenses): $______/month
Net burn (expenses - revenue): $______/month
RUNWAY
Gross runway = Cash / Gross burn = ______ months
Net runway = Cash / Net burn = ______ months
Verify: Cross-check cash figure against bank statement as of today. · If failed: If numbers do not reconcile within 5%, audit missing transactions before proceeding.
Duration: 30-60 minutes · Tool: Spreadsheet
Determine whether the startup reaches profitability before cash runs out, assuming current trajectory continues. Project revenue forward at current MoM growth rate against fixed expenses. [src1]
DEFAULT ALIVE / DEFAULT DEAD CALCULATOR
Monthly revenue today: $____________
Monthly revenue growth rate: ____________%
Monthly expenses (fixed): $____________
Cash on hand: $____________
Breakeven month (revenue >= expenses): Month ______
Cash at breakeven: $____________
VERDICT:
DEFAULT ALIVE — Cash > $0 at breakeven month
DEFAULT DEAD — Cash hits $0 before breakeven
Verify: Run the calculation at 75% of current growth rate as a stress test. · If failed: If pre-revenue, skip this step and use Path A (burn-only model).
Duration: 1-2 hours · Tool: Spreadsheet
Build best, base, and worst case projections over the next 18 months. Buffer requirement equals the difference between worst-case and base-case runway. [src6]
THREE-SCENARIO MODEL (18-month horizon)
Best Case Base Case Worst Case
Revenue growth: ______%/mo ______%/mo 0%
Expense growth: ______%/mo ______%/mo +10%
Fundraise: Yes ($____) None None
Runway: ______ mo ______ mo ______ mo
Breakeven: Month ____ Month ____ Never
Buffer = Worst-case - Base-case = ______ months
Verify: Worst case must assume zero new revenue and 10% cost overrun. · If failed: If worst-case runway is under 6 months, skip to Step 5 immediately.
Duration: 30-60 minutes · Tool: Spreadsheet
Define exact cash levels and runway months that trigger specific actions. Pre-approve with board so decisions are fast when triggers hit. [src2]
ALERT LEVELS
GREEN (18+ mo): Normal operations, monthly cash review
YELLOW (12-18 mo): Begin fundraise prep, warm investor relationships
ORANGE (6-12 mo): Active fundraise + Tier 1 cuts, weekly monitoring
RED (<6 mo): Survival mode + Tier 2 cuts, evaluate bridge/shutdown
Verify: Each level has specific, pre-approved actions — no vague directions. · If failed: If board refuses to pre-approve actions, escalate — ambiguity at crisis time is fatal.
Duration: 1-2 hours · Tool: Spreadsheet
Pre-plan specific cuts at three levels of severity so you can execute in days, not weeks. [src5]
TIER 1 (ORANGE): Non-essential spend (10-20% burn reduction)
Cancel/downgrade SaaS, pause marketing, freeze travel, renegotiate vendors
TIER 2 (RED): Headcount reduction (20-30% burn reduction)
Non-revenue roles, founder salary cuts, FT-to-PT conversions
TIER 3 (Last resort): Skeleton crew
Founders only, no salary, minimum infrastructure
Verify: Each tier has dollar amounts per line item. · If failed: If Tier 1 saves less than 10% of burn, expense structure needs restructuring.
Duration: 1-2 hours · Tool: Spreadsheet + research
If alert level reaches ORANGE or RED, evaluate bridge financing as alternative or complement to cost cuts. Bridge only appropriate when a specific milestone is achievable within 6-12 months. [src4]
BRIDGE QUALIFICATION
Clear milestone in 6-12 months? [ ] Yes [ ] No
Revenue growing? [ ] Yes [ ] No
Existing investors willing to lead? [ ] Yes [ ] No
Dilution acceptable vs. shutdown? [ ] Yes [ ] No
If fewer than 3 checked → focus on cost cuts instead
Verify: Bridge must have defined use-of-funds tied to specific milestone. · If failed: If no existing investor will lead, focus on profitability path.
Duration: 30-60 minutes
Compile all outputs into a board-ready policy document defining target buffer, monitoring cadence, alert thresholds, pre-approved actions, and cash conversion optimization targets. [src7]
Verify: Policy document is signed off by board or co-founders. · If failed: If stakeholders disagree on thresholds, use worst-case-advocate’s numbers — conservative buffers never killed a startup.
{
"output_type": "cash_buffer_policy",
"format": "JSON",
"columns": [
{"name": "alert_level", "type": "string", "description": "GREEN/YELLOW/ORANGE/RED threshold", "required": true},
{"name": "runway_months_min", "type": "number", "description": "Minimum runway months for this level", "required": true},
{"name": "runway_months_max", "type": "number", "description": "Maximum runway months for this level", "required": true},
{"name": "actions", "type": "string", "description": "Pre-approved actions at this alert level", "required": true},
{"name": "monitoring_cadence", "type": "string", "description": "How often to review at this level", "required": true},
{"name": "escalation_trigger", "type": "string", "description": "What triggers escalation to next level", "required": true},
{"name": "cost_cut_tier", "type": "string", "description": "Which contingency tier activates", "required": false},
{"name": "monthly_savings", "type": "number", "description": "Expected monthly savings from activated tier", "required": false}
],
"expected_row_count": "4",
"sort_order": "runway_months_min ascending",
"deduplication_key": "alert_level"
}
| Quality Metric | Minimum Acceptable | Good | Excellent |
|---|---|---|---|
| Financial data freshness | Within 30 days | Within 14 days | Within 7 days |
| Scenario coverage | Base case only | Base + worst case | Best + base + worst |
| Cost-cut tier specificity | Categories identified | Dollar amounts per category | Amounts + owners + timelines |
| Alert threshold coverage | 2 levels defined | 4 levels defined | 4 levels + board-approved |
| Bridge analysis completeness | Options listed | Terms compared | Full dilution impact modeled |
If below minimum: Do not present to board without at least base and worst case scenarios with actual financial data. Incomplete models create false confidence.
| Error | Likely Cause | Recovery Action |
|---|---|---|
| Runway calculation does not match bank balance | Missing expense categories or timing of receivables | Reconcile with bank statement, add all credit card and payroll transactions |
| Worst case shows 20+ months runway | Assumptions too optimistic | Force worst case to assume 0% revenue growth and +10% expense growth |
| Cost-cut tiers save less than 10% each | Too many fixed costs (leases, annual contracts) | Audit all contracts for exit clauses, negotiate early termination |
| Default alive shows breakeven in 3 months | Growth rate unsustainably high or expenses exclude planned hires | Re-run with planned expense level and 75% of current growth rate |
| Bridge round investors unresponsive | Poor relationship management or weak metrics | Pivot to revenue-based financing or focus entirely on profitability path |
| Component | Free Tier | Paid Tier | At Scale |
|---|---|---|---|
| Financial modeling (spreadsheet) | Google Sheets ($0) | Excel ($7/mo) | N/A |
| Accounting data source | Bank CSV export ($0) | QuickBooks ($30/mo) | Xero ($40/mo) |
| Fractional CFO review | Advisor network ($0) | $1K-2K/session | Full-time CFO ($15K+/mo) |
| Cash monitoring tools | Manual tracking ($0) | Runway.com ($49/mo) | Mosaic/Brex ($200+/mo) |
| Total for initial setup | $0 | $1K-2K | $15K+/mo ongoing |
Most founders calculate one runway figure and check it quarterly. This creates false confidence — a single number hides the variance between scenarios and misses the speed at which conditions change. [src1]
Build best/base/worst projections and track actual performance against base case weekly. When actuals deviate toward worst case for 2+ consecutive weeks, escalate immediately.
Bridge financing that buys time without a clear milestone to hit results in worse outcomes — founders face the same problems later with more dilution and less leverage. [src4]
Only pursue bridge financing when a specific, measurable milestone is achievable within the bridge period. If no clear milestone exists, cut costs instead.
Founders who first create their cost-cut list during a cash crisis make worse decisions under pressure — cutting critical roles while keeping non-essential spend. [src2]
Build and maintain the tiered cost-cut playbook when things are going well. Review and update quarterly. When a trigger hits, execute the pre-approved plan within days.
Use this recipe when a startup needs to move from intuitive cash management to a structured buffer policy with pre-approved contingency actions. It is especially critical for startups with less than 18 months of runway, startups approaching a fundraise, or any startup that has never formally calculated its default alive/dead status. The output replaces ad-hoc cash decisions with a board-approved system.