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 a la instalación

Datos de origen

Repositorio
appeeky/stripe-skills
Última actividad en el origen
19 de julio de 2026 a las 10:10
Idioma detectado de SKILL.md
inglés
Estrellas
5
Forks
1

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
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 en GitHub