stripe-docs

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

Updated Sep 8, 2026
One-click install
npx skills add https://github.com/FarooqProProgrammer/the-magician --skill stripe-docs-farooqproprogrammer
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: stripe-docs
Source: https://github.com/FarooqProProgrammer/the-magician/tree/main/agent/skills/stripe-docs
Command: npx skills add https://github.com/FarooqProProgrammer/the-magician --skill stripe-docs-farooqproprogrammer

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 clean Markdown from docs.stripe.com, 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 (product), by HTTP method and path (GET /v1/products), or by event type (product.created). - Use Case: While integrating Stripe billing, ask the agent to look up the invoice.created event payload structure, and it retrieves the exact API reference without leaving the terminal. ## Quick Start Ask the agent to look up the Stripe API reference for the product resource 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 docs.stripe.com page as Markdown, which is easier for agents and terminal workflows to consume 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 documentation and returns relevant results directly in the terminal.

How do I look up a Stripe API reference by endpoint?▼

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

Should I use stripe docs or curl for docs.stripe.com content?▼

Prefer `stripe docs` over curl or WebFetch for any docs.stripe.com content. It fetches Markdown automatically and is purpose-built for agents and terminal workflows, avoiding the overhead of parsing raw HTML.

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

Yes, pass the event type to `stripe docs api`, for example `stripe docs api product.created`. This returns the API reference for that event without needing to browse the documentation site.