stripe
Installation
SKILL.md
Stripe Operations
Use this skill to read Stripe account state and, with explicit confirmation, perform guarded mutations: account balance, payment intents, subscriptions, and subscription cancellation. This is a tool skill for the Stripe platform. Building Stripe payments into an application is integration development; this skill owns the everyday agent workflow: answering "what is our balance?", "which payments succeeded?", "what subscriptions are active?", and applying a confirmed cancellation.
Operating contract
- Read-only first. Balance, payment, and subscription queries run freely and never change anything. The bundled
stripe-cliscript's primary surface is these reads. - Guard every mutation. State-changing operations — canceling a subscription — require an explicit human directive plus
--dry-runpreview and--yesconfirmation throughstripe-cli. Cancellations are financial actions with billing consequences: confirm the subscription, the timing, and the impact before acting. - Respect bounded reads. Stripe paginates with
limitandhas_more; never page past what the task needs.stripe-cli --limitcaps every listing. - Keep evidence bounded. Quote short IDs, amounts, and statuses; never dump full API keys, customer data, or raw payloads into chat.
- Treat money data as sensitive. Balances, payments, and subscription details are financial records; quote only what the question needs and never expose full card or customer data.
The stripe-cli script
scripts/stripe-cli is an agent-first, stdlib-only CLI over the Stripe API. It is read-only-first: balance, payments, and subscriptions are the primary surface; the only mutation is guarded.