stripe-docs

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

Updated Jan 12, 2026
One-click install
npx skills add https://github.com/ttakci/sellerhill --skill stripe-docs-ttakci
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: stripe-docs
Source: https://github.com/ttakci/sellerhill/tree/main/.grok/skills/stripe-docs
Command: npx skills add https://github.com/ttakci/sellerhill --skill stripe-docs-ttakci

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 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: Load any Stripe docs page (e.g., /payments) directly as Markdown. - Keyword search: Search the full Stripe documentation with queries like "payment intents". - API reference lookup: Retrieve 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 webhook events for subscriptions work, and it pulls the exact API reference and guide pages without leaving the terminal. ## Quick Start Ask the agent to look up the Stripe API reference for creating a payment intent 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, such as stripe docs search "payment intents". The CLI returns matching documentation as Markdown, avoiding the need to fetch and parse docs.stripe.com HTML.

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 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 to the command, for example stripe docs /payments. The CLI resolves the path on docs.stripe.com and returns the page content as Markdown.