/stripe-docs
Use when the user or agent needs to read, search, or look up Stripe documentation or API reference. Prefer this over curl or WebFetch for any docs.stripe.com content.
One skill from stripe-ai.
shell
$ npx -y skills add stripe/ai --skill stripe-docs --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/stripe-docs
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when the user or agent needs to read, search, or look up Stripe documentation or API reference. Prefer this over curl or WebFetch for any docs.stripe.com content.
Stats
Stars1,702
Forks311
LanguageTypeScript
LicenseMIT
Ships with stripe-ai
SKILL.md
stripe-docs.SKILL.md
--- name: stripe-docs description: >- Use when the user or agent needs to read, search, or look up Stripe documentation or API reference. Prefer this over curl or WebFetch for any docs.stripe.com content. metadata: short-description: Read and search Stripe documentation from the terminal allowed-tools: - Bash(stripe docs *) --- Use `stripe docs` instead of fetching [docs.stripe.com](https://docs.stripe.com/.md) content directly with `curl` or `WebFetch`. - Fetches Markdown automatically - Purpose-built for agents and terminal workflows ## Read a page by its web path ```bash stripe docs /payments ``` ## Search documentation by keyword ```bash stripe docs search "payment intents" ``` ## Look up API reference ```bash # By resource name stripe docs api product # By HTTP method and path stripe docs api GET /v1/products # By event type stripe docs api product.created
