Skip to main content

invoice-revenue-audit

Reviews Stripe invoices — paid, open, uncollectible, revenue by period, and subscription billing health. Use when the user asks about "invoices", "billing history", "uncollectible", or "collected revenue" (cash, not MRR).

Ir a la instalación

Datos de origen

Repositorio
appeeky/stripe-skills
Última actividad en el origen
19 de julio de 2026 a las 10:10
Idioma detectado de SKILL.md
inglés
Estrellas
5
Forks
1

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
name
invoice-revenue-audit
description
Reviews Stripe invoices — paid, open, uncollectible, revenue by period, and subscription billing health. Use when the user asks about "invoices", "billing history", "uncollectible", or "collected revenue" (cash, not MRR).
metadata
{"version":"1.0.0"}
# Invoice & Revenue Audit ## Stripe MCP Setup Requires **Stripe MCP** connected via OAuth or restricted key. Docs: https://docs.stripe.com/mcp 1. `GetMcpTools` with `server: "user-Stripe"` (or `plugin-stripe-stripe`) before any call 2. Prefer `stripe_api_search` → `stripe_api_details` → `stripe_api_read` for list/retrieve 3. **Always paginate** — `limit: 100`, follow `has_more` with `starting_after` 4. Amounts are in **cents** unless noted 5. Never expose secret keys in output ## Workflow 1. `GetInvoices` — filter by `status`: `paid`, `open`, `uncollectible`, `void` 2. Sum `amount_paid` for paid invoices in period (cash collected) 3. Compare to MRR snapshot — gap explains one-time charges, prorations, credits ## Status Meanings | Status | Action | |--------|--------| | `open` | Awaiting payment — check past_due subs | | `paid` | Collected | | `uncollectible` | Write-off — churn signal | | `void` | Canceled invoice | ## Output Template ``` Invoice Summary ([period]) Paid: $[X] ([n] invoices) Open: $[Y] ([n]) Uncollectible: $[Z] vs MRR snapshot: [explain delta] ```
Ver en GitHub