docs.stripe.com已通过检查
SKILL DETAIL
stripe-docs
docs.stripe.com/stripe-docs
此技能用于读取、搜索或查阅 Stripe 文档或 API 参考。它优先于 curl 或 WebFetch 用于任何 docs.stripe.com 内容。 该技能自动获取 Markdown 格式的文档,专为代理和终端工作流设计。您可以通过网页路径读取页面,按关键词搜索文档,或按资源名称、HTTP 方法和路径或事件类型查找 API 参考。
安装量 · 160查看来源
Installation
npx skills add https://github.com/docs.stripe.com --skill stripe-docs
技能文件
SKILL.md
最近同步 · 2026年8月29日
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
```