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.

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
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).
Ver no GitHub