Agent Skills
› stripe/ai
› stripe-docs
stripe-docs
GitHub提供 Stripe CLI 工具以读取、搜索和查找 Stripe 文档及 API 参考,支持自动获取 Markdown 和受限内容,专为代理和终端工作流设计。
Trigger Scenarios
查询 Stripe 官方文档
检索 Stripe API 参考信息
通过关键词搜索 Stripe 知识库
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:43
新增对版本 v1.50.9 及以上的要求以访问受限文档,以及 stripe login 登录说明。
- 84c364c 2026-07-25 08:41


