Skip to main content

revenue-forecasting

Projects future MRR, ARR, and revenue run-rate from current Stripe subscription trends, new-sub velocity, and churn. Use when the user asks "revenue forecast", "MRR projection", "where will we be in 6 months", "ARR run-rate", or "growth trajectory". For current MRR only, see mrr-arr-snapshot.

Ir para a instalação

Informações da origem

Repositório
appeeky/stripe-skills
Última atividade na origem
19 de julho de 2026 às 10:10
Idioma detectado do SKILL.md
inglês
Estrelas
5
Forks
1

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
name
revenue-forecasting
description
Projects future MRR, ARR, and revenue run-rate from current Stripe subscription trends, new-sub velocity, and churn. Use when the user asks "revenue forecast", "MRR projection", "where will we be in 6 months", "ARR run-rate", or "growth trajectory". For current MRR only, see mrr-arr-snapshot.
metadata
{"version":"1.0.0"}
# Revenue Forecasting ## Stripe MCP Setup Requires **Stripe MCP** (https://docs.stripe.com/mcp). `GetMcpTools` before `CallMcpTool`. Paginate all lists (`limit: 100`, `starting_after` while `has_more`). Amounts in **cents**. Read-only for audits; confirm before writes. ## Inputs to gather 1. Current MRR (via `mrr-arr-snapshot` logic) 2. New subs / month — count `active` subs created in last 30/60/90d (`created` filter) 3. Monthly churn % (via `churn-analysis`) 4. Avg new MRR per sub ## Model (simple) ``` Next month MRR = current_MRR * (1 - churn_rate) + new_MRR_added ``` Project 3/6/12 months. Show best / base / worst (churn +/-2pp, growth +/-20%). ## Output Template ``` Revenue Forecast (base case) Current MRR: $[X] | Monthly growth: [+X%] | Churn: [X%] | Month | MRR (worst) | MRR (base) | MRR (best) | |-------|-------------|------------|------------| | +3 | | | | | +6 | | | | | +12 | | | | ARR run-rate (12mo base): $[X] Key assumption risks: [list] ``` State all assumptions explicitly. Forecast quality degrades past 6 months.
Ver no GitHub