/cs:cfo-review — CFO Forcing Questions

/cs:cfo-review <plan> — Numerate-skeptic interrogation of any plan that touches money.

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/cfo-review.
  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 alirezarezvani/claude-skills/c-level-agents/skills/cfo-review#main ~/.claude/skills/cfo-review

For one project only, change the path to .claude/skills/cfo-review.

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 /cs:cfo-review — CFO Forcing Questions

Show the full text106 lines
namedescription
cfo-review/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.

/cs:cfo-review — CFO Forcing Questions

Command: /cs:cfo-review <plan>

The numerate skeptic stress-tests anything that touches money. Six questions before any spend or fundraise.

When to Run

  • Before approving any spend > 1% of revenue
  • Before opening a new hiring requisition
  • Before any fundraise conversation
  • Before changing pricing or unit economics
  • Before signing a multi-year contract

The Six CFO Questions

1. Burn & Runway

What's the burn multiple and how many months of cash remain at base / bull / bear?

  • Burn multiple = Net burn ÷ Net new ARR. Above 2x is a problem.
  • If bear case < 12 months, you're already in fundraising mode.
2. Unit Economics

What is LTV / CAC per channel, and what's the payback period on the top-2 channels?

  • LTV / CAC > 3x is healthy. Payback < 12 months is healthy.
  • If either is broken, do not scale that channel.
3. Dilution Path

If this plan requires a raise, what's the dilution at base and bear valuations?

  • Founder dilution per round.
  • Cumulative dilution to next 2 rounds.
4. Capital Allocation Alternative

If this dollar wasn't spent here, where else could it go and what's the expected return?

  • Three alternatives: hiring, product, marketing.
  • Make the opportunity cost explicit.
5. Revenue Quality

What's the gross margin, and how does it trend at scale?

  • If margin compresses with scale, the model is broken.
  • Cost-of-revenue should grow slower than revenue.
6. Bear Case Survival

If revenue is 50% of plan, does the company survive 18 months?

  • Default-alive is non-negotiable.
  • If not, identify the cut triggers in advance.

Workflow

  1. Run the numbers:
    python ../../../c-level-advisor/skills/cfo-advisor/scripts/burn_rate_calculator.py
    python ../../../c-level-advisor/skills/cfo-advisor/scripts/unit_economics_analyzer.py
    python ../../../c-level-advisor/skills/cfo-advisor/scripts/fundraising_model.py
    
  2. Answer all six questions with numbers, not adjectives.
  3. Apply the verdict:
    • 🟢 GREEN — fund it
    • 🟡 YELLOW — fund with cut triggers
    • 🔴 RED — kill or revise

Output Format

# CFO Review: <plan>
**Date:** YYYY-MM-DD
**Reviewer:** cs-cfo-advisor

## Numbers
- Burn multiple: X.Xx
- Runway (base/bull/bear): X / X / X months
- LTV/CAC top channel: X.Xx, payback Y months
- Gross margin: X% (trend: Y)
- Dilution this round: X%
- Bear-case survival: PASS / FAIL

## Verdict
🟢 GREEN | 🟡 YELLOW | 🔴 RED

## Conditions (if YELLOW)
- Cut trigger: <metric> < <threshold> → <action>
- Review checkpoint: <date>

## Recommendation
[3 concrete next steps]

Routing

  • /cs:decide — log the verdict
  • /cs:execute — build 90-day plan if GREEN
  • /cs:boardroom — escalate if multi-role implications

Version: 1.0.0

1---
2name: "cfo-review"
3description: "/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."
4---
5 
6# /cs:cfo-review — CFO Forcing Questions
7 
8**Command:** `/cs:cfo-review <plan>`
9 
10The numerate skeptic stress-tests anything that touches money. Six questions before any spend or fundraise.
11 
12## When to Run
13 
14- Before approving any spend > 1% of revenue
15- Before opening a new hiring requisition
16- Before any fundraise conversation
17- Before changing pricing or unit economics
18- Before signing a multi-year contract
19 
20## The Six CFO Questions
21 
22### 1. Burn & Runway
23**What's the burn multiple and how many months of cash remain at base / bull / bear?**
24- Burn multiple = Net burn ÷ Net new ARR. Above 2x is a problem.
25- If bear case < 12 months, you're already in fundraising mode.
26 
27### 2. Unit Economics
28**What is LTV / CAC per channel, and what's the payback period on the top-2 channels?**
29- LTV / CAC > 3x is healthy. Payback < 12 months is healthy.
30- If either is broken, do not scale that channel.
31 
32### 3. Dilution Path
33**If this plan requires a raise, what's the dilution at base and bear valuations?**
34- Founder dilution per round.
35- Cumulative dilution to next 2 rounds.
36 
37### 4. Capital Allocation Alternative
38**If this dollar wasn't spent here, where else could it go and what's the expected return?**
39- Three alternatives: hiring, product, marketing.
40- Make the opportunity cost explicit.
41 
42### 5. Revenue Quality
43**What's the gross margin, and how does it trend at scale?**
44- If margin compresses with scale, the model is broken.
45- Cost-of-revenue should grow slower than revenue.
46 
47### 6. Bear Case Survival
48**If revenue is 50% of plan, does the company survive 18 months?**
49- Default-alive is non-negotiable.
50- If not, identify the cut triggers in advance.
51 
52## Workflow
53 
541. **Run the numbers:**
55 ```bash
56 python ../../../c-level-advisor/skills/cfo-advisor/scripts/burn_rate_calculator.py
57 python ../../../c-level-advisor/skills/cfo-advisor/scripts/unit_economics_analyzer.py
58 python ../../../c-level-advisor/skills/cfo-advisor/scripts/fundraising_model.py
59 ```
602. **Answer all six questions** with numbers, not adjectives.
613. **Apply the verdict:**
62 - 🟢 GREEN — fund it
63 - 🟡 YELLOW — fund with cut triggers
64 - 🔴 RED — kill or revise
65 
66## Output Format
67 
68```markdown
69# CFO Review: <plan>
70**Date:** YYYY-MM-DD
71**Reviewer:** cs-cfo-advisor
72 
73## Numbers
74- Burn multiple: X.Xx
75- Runway (base/bull/bear): X / X / X months
76- LTV/CAC top channel: X.Xx, payback Y months
77- Gross margin: X% (trend: Y)
78- Dilution this round: X%
79- Bear-case survival: PASS / FAIL
80 
81## Verdict
82🟢 GREEN | 🟡 YELLOW | 🔴 RED
83 
84## Conditions (if YELLOW)
85- Cut trigger: <metric> < <threshold> → <action>
86- Review checkpoint: <date>
87 
88## Recommendation
89[3 concrete next steps]
90```
91 
92## Routing
93 
94- `/cs:decide` — log the verdict
95- `/cs:execute` — build 90-day plan if GREEN
96- `/cs:boardroom` — escalate if multi-role implications
97 
98## Related
99 
100- Agent: [`cs-cfo-advisor`](../../agents/cs-cfo-advisor.md)
101- Skill: [`cfo-advisor`](../../../c-level-advisor/skills/cfo-advisor/SKILL.md)
102 
103---
104 
105**Version:** 1.0.0
106 

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 · 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 · MITFinancial Analyst SkillPerforms financial ratio analysis, DCF valuation, budget variance analysis, and rolling forecast construction for strategic decision-making. Use when analyzing financial statements, building valuation models, assessing budget variances, or constructing financial projections and forecasts. Also applicable when users mention financial modeling, cash flow analysis, company valuation, financial projections, or spreadsheet analysis.Business & ops · MIT