Agent Skills
› stripe/ai
› stripe-docs
stripe-docs
GitHub用于通过 Stripe CLI 读取、搜索或查找 Stripe 文档及 API 参考。优于直接使用 curl 或 WebFetch,支持自动获取 Markdown 内容、访问需登录的受限文档,专为 Agent 和终端工作流设计。
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:42
新增对 v1.50.9 及以上版本 CLI 的支持,以访问受限(gated)文档功能。
- 84c364c 2026-07-25 08:40


