编程

Exit Waterfall

试用

Compute who gets what at each exit price from a cap table — liquidation preferences, conversion points, and where the founders' share collapses. Use when ask...

它能做什么

Compute who gets what at each exit price from a cap table — liquidation preferences, conversion points, and where the founders' share collapses. Use when asked to model an exit waterfall, what do I get if we sell for X, explain liquidation preferences on my cap table, or compare payouts across exit prices. Produces a per-stakeholder payout table across exit values with conversion decisions shown, plus the plain-English reading of what the structure means for each party.

技能文档

Exit Waterfall Skill

A cap table is a promise about percentages; an exit waterfall is what actually happens to the money. The difference — liquidation preferences, participation, option strikes — routinely stuns founders at the worst possible moment. This skill computes the waterfall across exit prices and, more importantly, translates it: the price below which your shares are worth nothing, and the price where everyone finally converts.

What This Skill Produces

  • The payout table — every stakeholder's dollars at each exit price, with conversion decisions shown
  • The cliff points — where preferences stop dominating, where options come into the money
  • The plain-English reading — "you need a $X exit for your common to mean anything" stated as a sentence

Required Inputs

Ask for these if not provided:

  • Share classes — for each: name, share count, type (common / preferred / options); for preferred: amount invested, preference multiple, participating or not; for options: strike
  • Exit prices to test — or default to a spread around the last round's valuation (label it as a default)

Programmatic Helper

The math ships as a deterministic script — run it rather than arithmetic-by-hand:

python3 scripts/exit_waterfall.py cap.json
python3 scripts/exit_waterfall.py cap.json --exit 50000000 --json

Input shape and worked example are in the script docstring. It brute-forces the conversion equilibrium (each non-participating preferred converts only when as-converted beats its preference) and applies the treasury method to options. Stated simplifications: preferences are pari passu (no seniority stacking) and participation is uncapped — flag both when the real cap table differs, and say the numbers shift accordingly.

Formula (readable form)

  • Non-participating preferred takes max(preference, as-converted value) — preference = invested × multiple
  • Participating preferred takes preference + pro-rata of the remainder (why "participating" is the term sheet word worth fighting)
  • Options exercise only when per-share common value > strike; strike proceeds join the pool
  • Remainder splits pro-rata among common + converted + participating shares

Output Format


Exit Waterfall: [Company]

Payout Table

[The script's table: exit price × stakeholder, with the converts column]

What This Means

  • Below $[X]: preferences consume everything — common gets zero
  • At $[Y]: [class] converts; the structure starts behaving like percentages
  • The sentence: "Your [n]% is worth [n]% only above $[Z]; below $[W] it is worth nothing."

Assumptions & Limitations

[Pari passu, uncapped participation, valuation of the classes as supplied — every deviation from the real documents named.]

Educational model, not financial advice — verify with a licensed professional before acting on it.


Quality Checks

  • Conversion decisions are computed, not asserted — the table shows who converts at each price
  • The zero-for-common threshold is stated explicitly as a price
  • Every simplification the model makes vs the real documents is named
  • Payouts at each price sum to the exit value (plus/minus rounding)
  • The disclaimer line appears in the artifact

Anti-Patterns

  • Do not present ownership percentages as payout percentages — the gap between them is this skill's entire reason to exist
  • Do not model participation caps or seniority stacking silently — the script doesn't; say so
  • Do not average across exit prices — the cliff structure IS the information
  • Do not run the numbers without the plain-English sentence — founders remember sentences, not tables

相关技能

Collect debt and mortgage inputs, call a plans API, and return payoff strategy comparisons (snowball, avalanche, refinance) with concise recommendations and...

31 次安装1 星标

Decode an employment benefits package into what it's actually worth and where the fine print bites. Use when someone asks 'is this offer good', 'decode my be...

Investment-grade financial modeling — DCF valuation, comparable-company analysis, 3-statement models, returns (IRR/MOIC/cap-rate), and investor data-room pac...

7 次安装

Compare debt payoff strategies with real amortization math: avalanche (highest APR first), snowball (smallest balance first), and minimum-only baseline. Shows exact debt-free dates, total interest paid, interest saved, and freed-minimum cascading. Use when the user has credit card debt, student loans, or multiple debts and asks which to pay first, how long until debt-free, or whether to pay off small balances or high rates first.

Build a debt-payoff plan across multiple debts using the avalanche or snowball method. Use when asked to pay off debt, tackle credit cards/loans, or choose b...

Performs competitor research and generates detailed analysis reports with market positioning insights. Covers feature comparison, pricing analysis, SWOT, and...