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.

설치로 이동

소스 정보

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

설치 방법

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

소스 파일 검토

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

SKILL.md 표시 중

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