runway-calculator

runway-calculator is a cursor rule for Cursor from mohitagw15856/pm-claude-skills. It costs 82 tokens per session (804 once invoked), scanned A, original, MIT.

A calculator for a company's cash runway, monthly burn, and date when its cash reaches zero. It also checks whether the company is default alive, meaning it could reach profitability before running out of cash on its current path.

In plain words
What is it for?
Use it to calculate net burn and months of runway, estimate the zero-cash date, check default-alive status, and work out how much to raise or cut to reach a target.
Why use it?
A company can appear healthy while its cash is shrinking too quickly to reach profitability. This turns cash, revenue, expenses, and growth into a clear time limit and shows the size of any funding or cost-cutting gap.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/runway.py in.json.

Good fit Use it to calculate net burn and months of runway, estimate the zero-cash date, check default-alive status, and work out how much to raise or cut to reach a target.

Compare 6 cursor rules from other repositories ↓
About the project

PM Skills is a collection of plain-Markdown instructions that teach AI assistants structured methods for handling professional, personal, and life-admin tasks. People use it with Claude, ChatGPT, Gemini, Cursor, Codex, and other supported agents for work such as writing product requirements, reviewing documents, or planning difficult situations.

mohitagw15856/pm-claude-skills · 1,352 stars · on GitHub · mohitagw15856.github.io

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/mohitagw15856/pm-claude-skills
agentmods
npx agentmods add rules/mohitagw15856/pm-claude-skills/runway-calculator

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for runway-calculator

README.md
[![agentmods](https://agentmods.dev/badge/rules/mohitagw15856/pm-claude-skills/runway-calculator/github.svg)](https://agentmods.dev/rules/mohitagw15856/pm-claude-skills/runway-calculator)
Your own site
<a href="https://agentmods.dev/rules/mohitagw15856/pm-claude-skills/runway-calculator"><img src="https://agentmods.dev/badge/rules/mohitagw15856/pm-claude-skills/runway-calculator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for runway-calculator

Your own site · 80×15
<a href="https://agentmods.dev/rules/mohitagw15856/pm-claude-skills/runway-calculator"><img src="https://agentmods.dev/badge/rules/mohitagw15856/pm-claude-skills/runway-calculator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 804 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.00804
Opus 5 $0.00041 $0.00402
Sonnet 5 $0.00016 $0.00161
Haiku 4.5 $0.00008 $0.00080

Measured 8d ago against content hash e0e96d4f6fe5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

runway-calculator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

exports/cursor/pm-calculators/runway-calculator/runway-calculator.mdc · 72 lines

How it starts

The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Runway Calculator Skill

For any company spending more than it makes, one number governs everything: how many months of cash are left. This skill computes net burn, runway, and the zero-cash date from your cash and P&L, judges whether you're default alive or dead (Paul Graham's test — would you reach profitability on current cash at current growth?), and shows the raise-or-cut needed to hit a target runway.

Required Inputs

Ask for these only if they aren't already provided:

  • Cash in bank (today).
  • Monthly revenue and monthly expenses (or net monthly burn directly).
  • Monthly growth rate of revenue, if you want the default-alive check.
  • Target — a runway you want to reach (e.g. 18 months) or a raise you're considering.

Output Format

Runway: [company]

1. The numbers (computed via the helper):

Metric Value
Net monthly burn
Cash in bank
Runway (months)
Zero-cash date
Default alive? yes / no

2. Default alive or dead — on current cash and growth, do you reach profitability before the cash runs out? State it plainly; it's the question investors ask first.

3. To extend it — the concrete moves and their effect: cut $X/mo → +Y months; raise $Z → +W months; or the growth rate needed to turn default-alive. Show the trade-off.

4. Caveats — flag if burn is rising (these numbers assume flat burn), and the buffer to keep (don't plan to zero — most raises take months).

Programmatic Helper

scripts/runway.py (stdlib only) computes runway and the zero-cash date:

# in.json: {"cash": 600000, "monthly_revenue": 40000, "monthly_expenses": 110000, "revenue_growth": 0.08}
python3 scripts/runway.py in.json
python3 scripts/runway.py in.json --json

Quality Checks

  • Net burn = expenses − revenue (not gross spend) — and the zero-cash date is an actual date
  • The default-alive/dead question is answered explicitly
  • "To extend it" gives concrete cut/raise/growth options with their month impact
  • Flags that the figures assume flat burn if burn is actually growing
  • Recommends a cash buffer rather than planning to literally zero

Read the full file on GitHub · 72 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 72 lines · 82 tokens per session scan A e0e96d4f6fe5

Subscribe to this mod's changes

runway-calculator is a cursor rule published in the GitHub repository mohitagw15856/pm-claude-skills (1,352 stars, last pushed 4d ago), licensed MIT. It adds 82 tokens to every session and 804 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.