stripe-docs

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

5.3k|765|Updated Mar 4, 2026
One-click install
npx skills add https://github.com/openai/plugins --skill stripe-docs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: stripe-docs
Source: https://github.com/openai/plugins/tree/main/plugins/stripe/skills/stripe-docs
Command: npx skills add https://github.com/openai/plugins --skill stripe-docs

SYSTEM DOCUMENTATION & REQUIREMENTS

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.

Frequently Asked Questions about stripe-docs

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

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

Run stripe docs search followed by your query in quotes, for example stripe docs search "payment intents". The command returns matching Stripe documentation as Markdown directly in the terminal.

How do I look up a Stripe API endpoint reference?

Use stripe docs api with a resource name like stripe docs api product, or with an HTTP method and path like stripe docs api GET /v1/products. You can also look up event types such as stripe docs api product.created.

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. Fetching docs.stripe.com with curl or WebFetch returns raw web content that is harder to parse.

Can I read a specific Stripe docs page by its URL path?

Yes, pass the web path directly to the command, for example stripe docs /payments. It fetches that page from docs.stripe.com and returns the content as Markdown.

What are the limitations of the stripe docs command?

It only covers content hosted on docs.stripe.com, including guides and API reference. It requires the Stripe CLI to be installed and does not replace the Stripe API itself for creating or managing resources.