Skip to main content
ClaudeWave
Skill1.8k repo starsupdated 3d ago

stripe-docs

>-

Install in Claude Code
Copy
git clone --depth 1 https://github.com/stripe/ai /tmp/stripe-docs && cp -r /tmp/stripe-docs/skills/stripe-docs ~/.claude/skills/stripe-docs
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

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
```