Skip to main content

stripe-billing-context

Creates or updates a stripe-billing-context.md with business model, Stripe account, products/prices, webhook endpoints, email flows, and KPI targets. Use FIRST for a new Stripe account or when other skills need business context. Triggers: "set up stripe context", "billing brief", "document our Stripe setup".

跳到安装

来源信息

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

安装方式

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

检查来源文件

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

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
stripe-billing-context
description
Creates or updates a stripe-billing-context.md with business model, Stripe account, products/prices, webhook endpoints, email flows, and KPI targets. Use FIRST for a new Stripe account or when other skills need business context. Triggers: "set up stripe context", "billing brief", "document our Stripe setup".
# Stripe Billing Context Produce `stripe-billing-context.md` in the workspace so every Stripe skill shares the same facts. ## Gather (ask or infer) 1. Business name + Stripe account (`get_stripe_account_info`) 2. Products & prices (`GetPrices`, `GetProducts` — active only) 3. Subscription model (monthly/annual, trials, add-ons) 4. Webhook endpoints (from codebase + Dashboard) 5. Customer Portal enabled? Billing emails configured? 6. KPI targets: MRR goal, acceptable churn, past-due threshold ## MCP Calls ``` get_stripe_account_info → {} stripe_api_read GetProducts { parameters: { active: true, limit: 100 } } stripe_api_read GetPrices { parameters: { active: true, limit: 100, type: recurring } } ``` ## Output Template ```markdown # Stripe Billing Context ## Account - Display name: - Account ID: - Mode: live / test ## Revenue Model - Primary product: - Price tiers: - Trials: - Add-ons: ## Integrations - Webhook URL: - Events subscribed: - Customer Portal: - Payment failed emails: ## KPI Targets | Metric | Target | |--------|--------| | MRR | | | Monthly churn | < % | | Past due subs | < N | | Dunning recovery | > % | ## Notes ``` Re-run when pricing or webhook architecture changes.
在 GitHub 查看