What problem does it solve?
Looking up Stripe documentation with curl or WebFetch returns raw HTML that is hard for agents to parse. This Skill routes all docs.stripe.com lookups through the stripe docs CLI, which returns clean Markdown purpose-built for terminal and agent workflows.
Core Features & Use Cases
- Read pages by path: Fetch any Stripe docs page (e.g.,
/payments) as Markdown directly in the terminal.
- Keyword search: Search Stripe documentation with queries like
stripe docs search "payment intents".
- API reference lookup: Query the API reference by resource name (
stripe docs api product), by HTTP method and path (stripe docs api GET /v1/products), or by event type (stripe docs api product.created).
- Use Case: While integrating Stripe Checkout, ask the agent how webhook events work; it runs
stripe docs api checkout.session.completed and returns the exact event schema without leaving the terminal.
Quick Start
Ask the agent to look up how Stripe Payment Intents work using the stripe docs command.