Agent Skills
› stripe/ai
› stripe-docs
stripe-docs
GitHub提供Stripe文档和API参考的查询能力,支持按路径读取、关键词搜索及API资源查找,专为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.",
"allowed-tools": [
"Bash(stripe docs *)"
]
}
Use stripe docs instead of fetching docs.stripe.com content directly with curl or WebFetch.
- Fetches Markdown automatically
- 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
- 84c364c Current 2026-07-25 08:40


