Agent Skills
› stripe/ai
› stripe-docs
stripe-docs
GitHub用于通过命令行工具读取、搜索或查找 Stripe 文档及 API 参考,自动获取 Markdown 内容,专为 Agent 和终端工作流设计。
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.",
"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
- 96cfe6b Current 2026-08-20 02:37


