stripe-docs

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

2|Updated Aug 12, 2026
One-click install
npx skills add https://github.com/prianshumitra/Rentify --skill stripe-docs-prianshumitra
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: stripe-docs
Source: https://github.com/prianshumitra/Rentify/tree/main/backend/.agents/skills/stripe-docs
Command: npx skills add https://github.com/prianshumitra/Rentify --skill stripe-docs-prianshumitra

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Fetching Stripe documentation with curl or WebFetch returns raw HTML that is hard to parse and wastes context. This Skill uses the stripe docs CLI to retrieve clean Markdown from docs.stripe.com, purpose-built for terminal and agent workflows. ## Core Features & Use Cases - Read pages by path: Fetch any Stripe docs page (e.g., /payments) directly as Markdown. - Keyword search: Search Stripe documentation by phrase, such as "payment intents". - API reference lookup: Query the 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 Checkout, ask the agent to look up the checkout.session.completed event reference instead of manually browsing docs.stripe.com. ## Quick Start Ask the agent to look up the Stripe API reference for creating a PaymentIntent 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 "payment intents"` with your keyword phrase. The CLI returns matching Stripe documentation results as Markdown, avoiding the need to fetch and parse docs.stripe.com HTML pages.

How to look up Stripe API reference by endpoint?▼

Use `stripe docs api GET /v1/products` with the HTTP method and path. You can also look up by resource name like `stripe docs api product` or by event type like `stripe docs api product.created`.

Why use stripe docs instead of curl or WebFetch for Stripe documentation?▼

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 HTML that requires extra parsing and consumes more context.

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

Yes, pass the web path directly, for example `stripe docs /payments`. The command retrieves that documentation page as Markdown without needing the full docs.stripe.com URL.

Does stripe docs support looking up webhook event types?▼

Yes, pass the event type to the api subcommand, such as `stripe docs api product.created`. This returns the API reference for that specific event, useful when building webhook handlers.