Skip to main content

customer-segmentation

Segments the Stripe subscriber base by plan, country, card funding, tenure, or value -- with per-segment MRR and churn. Use when the user mentions "segment customers", "break down by country/plan", "who are our best customers", or "value tiers". For a single customer, see customer-360.

跳到安装

来源信息

仓库
appeeky/stripe-skills
最近来源活动
2026年7月19日 10:10
检测到的 SKILL.md 语言
英语
星标
5
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
customer-segmentation
description
Segments the Stripe subscriber base by plan, country, card funding, tenure, or value -- with per-segment MRR and churn. Use when the user mentions "segment customers", "break down by country/plan", "who are our best customers", or "value tiers". For a single customer, see customer-360.
metadata
{"version":"1.0.0"}
# Customer Segmentation ## 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 active + past_due subs (expand price + payment method) 2. Segment along a chosen axis: | Axis | Source | |------|--------| | Plan | `price.id` | | Country | `card.country` / customer address | | Funding | `card.funding` | | Tenure | `created` bucketed | | Value | MRR tiers (whale / mid / low) | 3. Per segment: count, MRR, share, past_due rate ## Output Template ``` Segmentation by [axis] | Segment | Subs | MRR | % of MRR | Past due % | |---------|------|-----|----------|------------| Concentration: top [n] customers = [X]% of MRR Insight: [risk or opportunity per segment] ``` High MRR concentration = revenue risk; flag if top 10% > 50% of MRR.
在 GitHub 查看