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.

설치로 이동

소스 정보

저장소
appeeky/stripe-skills
최근 소스 활동
2026년 7월 19일 10:10
감지된 SKILL.md 언어
영어
스타
5
포크
1

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
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.
GitHub에서 보기