--- name: stripe-docs 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. metadata: short-description: Read and search Stripe documentation from the terminal allowed-tools: - Bash(stripe docs *) --- Use `stripe docs` instead of fetching [docs.stripe.com](https://docs.stripe.com/.md) content directly with `curl` or `WebFetch`. - Fetches Markdown automatically - Purpose-built for agents and terminal workflows ## Read a page by its web path ```bash stripe docs /payments ``` ## Search documentation by keyword ```bash stripe docs search "payment intents" ``` ## Look up API reference ```bash # 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 ``` ## Source and license Source: https://github.com/stripe/agent-toolkit/blob/1953b6cce7344d880a054c42b8dd21ca3e50ebd5/skills/stripe-docs/SKILL.md MIT License Copyright (c) 2024–2025 Stripe Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.