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에서 보기