Agent Skills
› stripe/ai
› stripe-docs
stripe-docs
GitHub提供 Stripe 文档和 API 参考的专用工具,支持通过 CLI 读取页面、关键词搜索及查询 API 信息。相比直接抓取网页,能自动获取 Markdown 格式并支持访问受限内容,专为 Agent 和终端工作流设计。
Trigger Scenarios
用户需要查阅 Stripe 官方文档
用户需要搜索 Stripe API 参考或支付功能说明
Agent 需要从 docs.stripe.com 获取结构化内容
Install
npx skills add stripe/ai --skill stripe-docs -g -y
SKILL.md
Frontmatter
{
"name": "stripe-docs",
"metadata": {
"short-description": "Read and search Stripe documentation from the terminal"
},
"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. Use to fetch gated documentation.",
"allowed-tools": [
"Bash(stripe docs *)",
"Bash(stripe login)",
"Bash(stripe version)"
]
}
Use stripe docs instead of fetching docs.stripe.com content directly with curl or WebFetch. If you don’t have the CLI installed, install the Stripe CLI.
Always use the latest CLI version. If the current CLI version is less than v1.50.9, you must upgrade to access gated documentation.
- Fetches Markdown automatically
- Fetches gated documentation. Users must log in using
stripe loginto access gated documentation. - Purpose-built for agents and terminal workflows
Read a page by its web path
stripe docs /payments
Search documentation by keyword
stripe docs search "payment intents"
Look up API reference
# 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
Version History
-
12f4881
Current 2026-09-09 09:41
新增对受限(gated)文档的支持,要求 CLI 版本不低于 v1.50.9,需先登录 stripe login。
- 84c364c 2026-07-25 08:40


