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".

Zur Installation springen

Quellinformationen

Repository
appeeky/stripe-skills
Letzte Quellaktivität
19. Juli 2026 um 10:10
Erkannte Sprache von SKILL.md
Englisch
Sterne
5
Forks
1

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
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.
Auf GitHub ansehen