stripe-docs

Reads and searches Stripe documentation and API reference via the stripe docs CLI command.

Updated Apr 19, 2026
One-click install
npx skills add https://github.com/divinaarmuela/Content --skill stripe-docs-divinaarmuela
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: stripe-docs
Source: https://github.com/divinaarmuela/Content/tree/main/.claude/skills/stripe-docs
Command: npx skills add https://github.com/divinaarmuela/Content --skill stripe-docs-divinaarmuela

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Fetching 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 - Page Reading: Fetch any Stripe documentation page as Markdown by its web path, such as /payments. - Keyword Search: Search the full Stripe documentation by keyword, for example payment intents. - API Reference Lookup: Look up API reference by resource name (product), by HTTP method and path (GET /v1/products), or by event type (product.created). - Use Case: While integrating Stripe billing, ask the agent how subscription webhooks work; it runs stripe docs search "subscription webhooks" and returns the relevant Markdown documentation directly in context. ## Quick Start Ask the agent to look up how Stripe Payment Intents work using the stripe docs command.

Frequently Asked Questions about stripe-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I read Stripe documentation from the terminal?

Run `stripe docs` followed by the page's web path, such as `stripe docs /payments`. The command fetches the page from docs.stripe.com and returns it as Markdown, which is easier to read and parse than raw HTML.

How do I search Stripe docs by keyword?

Use `stripe docs search` followed by your query in quotes, for example `stripe docs search "payment intents"`. This searches Stripe's documentation and returns matching content without opening a browser.

How do I look up a Stripe API endpoint reference?

Use `stripe docs api` with a resource name like `product`, an HTTP method and path like `GET /v1/products`, or an event type like `product.created`. Each form returns the corresponding API reference entry.

Why use stripe docs instead of curl or WebFetch for docs.stripe.com?

The stripe docs command fetches Markdown automatically and is purpose-built for agents and terminal workflows. Curl or WebFetch return raw HTML pages that require extra parsing before the content is usable.

Can I look up Stripe webhook event types from the CLI?

Yes, pass the event type to the API lookup, for example `stripe docs api product.created`. This returns the reference documentation for that specific event without searching the website manually.