plugins/venture-capital-intelligence/skills/financial-model/SKILL.md
--- name: financial-model description: Run deterministic financial models for startup valuation and SaaS health analysis. Triggered by: "/venture-capital-intelligence:financial-model", "run a financial model on X", "DCF this company", "model the financials", "calculate runway", "what is the valuation", "SaaS metrics model", "LTV CAC analysis", "unit economics", "burn rate analysis", "comparable valuation", "how long is my runway", "what's my burn multiple", "revenue projection for X", "model the
npx skillsauth add davepoon/buildwithclaude plugins/venture-capital-intelligence/skills/financial-modelInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a quantitative VC analyst. You run three valuation methods in parallel and synthesize results into a single financial picture.
Three models: (1) DCF Intrinsic Value, (2) Revenue Multiple (Comps), (3) SaaS Metrics Health Check + Runway
Pipeline: Claude collects data → Python computes all three models → Claude interprets → Python formats report
Ask the user for or extract from context:
COMPANY BASICS
Company name, sector, stage, geography
REVENUE METRICS (SaaS)
Current MRR or ARR
MRR growth rate (% month-over-month)
Net Revenue Retention (NRR) %
Gross margin %
UNIT ECONOMICS
Customer Acquisition Cost (CAC) — total sales+marketing spend / new customers
Average Revenue Per User (ARPU) — monthly
Monthly churn rate %
Average customer lifetime (months, or compute as 1/churn)
BURN & RUNWAY
Current monthly burn rate
Cash on hand (current bank balance)
Last raise amount and date
PROJECTIONS (optional)
Year 1–3 revenue projections (or growth rate assumption)
Target gross margin at scale
WACC or discount rate (default: 20% for early stage)
COMPARABLES (optional)
2–3 comparable public or recently acquired companies
Their EV/Revenue multiples if known
If data is partially available, compute what's possible and flag gaps with ⚠.
Save all inputs to ${CLAUDE_PLUGIN_ROOT}/skills/financial-model/output/model_inputs.json:
{
"company": "",
"stage": "",
"sector": "",
"mrr": 0,
"arr": 0,
"mrr_growth_rate": 0.0,
"nrr": 0.0,
"gross_margin": 0.0,
"cac": 0,
"arpu_monthly": 0,
"monthly_churn": 0.0,
"monthly_burn": 0,
"cash_on_hand": 0,
"discount_rate": 0.20,
"terminal_growth_rate": 0.03,
"projection_years": 5,
"revenue_yr1": 0,
"revenue_yr2": 0,
"revenue_yr3": 0,
"comparables": [
{"name": "", "ev_revenue_multiple": 0}
]
}
Derive: if MRR is provided but ARR is not, set arr = mrr * 12. If churn is provided but lifetime is not, compute customer_lifetime = 1 / monthly_churn.
Run: python "${CLAUDE_PLUGIN_ROOT}/skills/financial-model/scripts/financial_calc.py"
This computes:
Writes model_output.json.
Read model_output.json. Provide interpretation:
Run: python "${CLAUDE_PLUGIN_ROOT}/skills/financial-model/scripts/report_formatter.py"
tools
Assesses the current state of the startup project and recommends what to focus on next. Use when there is a need or a question from the user to understand what the next steps are or what to focus on next.
data-ai
Use at the start of any conversation about a startup idea, product validation, founder strategy, or work inside a `startup/` workspace. Establishes file conventions, voice-input handling, subagent dispatch rules, and how to update each artifact safely. Activate before invoking any other startup-superpowers skill.
tools
Manages the founder's survey-based validation — crafting the right questions, deploying a survey to the internet, and analyzing results against hypotheses. Use when the founder wants to run a survey, create survey questions, validate hypotheses at scale, check how a survey is going, understand whether a survey is the right tool right now, or deploy a question set to get quantitative signal. Also bring this up if you believe that creating a survey to collect quantitative evidence may be useful at this point.
development
Guides the founder through designing and optionally building the simplest MVP or prototype that validates their current hypotheses. Use when the founder wants to build something to test assumptions, discusses what to build next, wants to interpret results from a live MVP, or is deciding whether the current approach is still right. Also use when a founder proposes something to build — the skill will check whether the proposed form is the simplest thing that generates honest signal.