stripe-docs

Reads and searches Stripe documentation and API reference from the terminal.

Updated Jul 30, 2026
One-click install
npx skills add https://github.com/PhongCT1105/okta_stripe_hack --skill stripe-docs-phongct1105
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: stripe-docs
Source: https://github.com/PhongCT1105/okta_stripe_hack/tree/main/.agents/skills/stripe-docs
Command: npx skills add https://github.com/PhongCT1105/okta_stripe_hack --skill stripe-docs-phongct1105

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 uses the stripe docs CLI to retrieve documentation as clean Markdown, purpose-built for terminal and agent workflows. ## Core Features & Use Cases - Read pages by path: Fetch any docs.stripe.com page as Markdown using its web path, such as /payments. - Keyword search: Search Stripe documentation by keyword, for example "payment intents". - API reference lookup: Look up API reference by resource name, HTTP method and path, or event type (e.g., product.created). - Use Case: While integrating Stripe Checkout, ask the agent to look up the checkout.session.completed event reference instead of manually browsing docs.stripe.com. ## Quick Start Use the stripe-docs skill to look up the Stripe API reference for creating a Checkout Session.

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 CLI fetches the page as Markdown automatically, which is easier for agents and terminal workflows than parsing HTML from curl.

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 documentation directly without opening a browser.

How do I look up Stripe API reference for a specific endpoint?

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`. All three lookup styles return the API reference as Markdown.

Should I use curl or WebFetch for docs.stripe.com pages?

No. The stripe docs command is preferred over curl or WebFetch for any docs.stripe.com content because it fetches Markdown automatically and is purpose-built for agents and terminal workflows.

What are the limitations of the stripe docs command?

It only covers Stripe documentation and API reference hosted on docs.stripe.com. It does not execute API calls, manage Stripe resources, or fetch documentation for other services.