Skip to main content

cohort-retention

Builds subscriber cohort retention and revenue-retention tables grouped by signup month from Stripe data. Use when the user mentions "cohort", "retention curve", "LTV curve", "how long do subscribers stay", or "retention by signup month". For overall churn, see churn-analysis.

Zur Installation springen

Quellinformationen

Repository
appeeky/stripe-skills
Letzte Quellaktivität
19. Juli 2026 um 10:10
Erkannte Sprache von SKILL.md
Englisch
Sterne
5
Forks
1

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
cohort-retention
description
Builds subscriber cohort retention and revenue-retention tables grouped by signup month from Stripe data. Use when the user mentions "cohort", "retention curve", "LTV curve", "how long do subscribers stay", or "retention by signup month". For overall churn, see churn-analysis.
metadata
{"version":"1.0.0"}
# Cohort Retention ## 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. ## Workflow 1. List subscriptions (all statuses) with `created` and `canceled_at`/`ended_at` 2. Bucket by signup month (`created`) 3. For each cohort, compute % still active at month 1, 2, 3... 4. Optionally weight by MRR for **revenue retention** ## Output Template ``` Cohort Retention (logo) | Cohort | Size | M1 | M2 | M3 | M6 | |--------|------|----|----|----|----| | 2026-01 | | | | | | Revenue retention (NRR) latest cohort: [X]% Insight: [where the biggest drop occurs] ``` Flag the month with steepest drop -- that's the retention leak to fix (route to churn-analysis or onboarding).
Auf GitHub ansehen