Agent Skills
› stripe/ai
› stripe-docs
stripe-docs
GitHub通过 Stripe CLI 高效读取、搜索文档及 API 参考,支持自动获取 Markdown 和需登录的受限内容。
Trigger Scenarios
查询 Stripe 官方文档
查找 Stripe API 参考信息
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 时升级以访问受限文档的要求,并增强了对 gated documentation 的支持。
- 84c364c 2026-07-25 08:40


