用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HybridAIOne/hybridclaw --skill stripe命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Read, send, react to, edit, pin, and thread Discord messages with HybridClaw's `message` tool.
Work with Lexware Office contacts, products, invoices, quotations, bookkeeping vouchers, receipts, payment status, and guarded invoice, quotation, or expense writes through the Public API.
Expose HybridClaw as a custom Alexa skill and prepare guarded Alexa smart-home/device control payloads without exposing Amazon credentials.
基于 SOC 职业分类
正在显示 SKILL.md
| name | stripe |
| description | Investigate Stripe customers, subscriptions, payments, webhooks, dashboard state, and CLI or API workflows. |
| user-invocable | true |
| metadata | {"hybridclaw":{"category":"business","short_description":"Stripe customer and payment ops.","tags":["stripe","payments","billing","webhooks","enterprise"],"related_skills":["feature-planning","code-review"]}} |
Use this skill for Stripe Dashboard, Stripe API, Stripe CLI, and integration-debugging workflows.
Basic checks:
stripe version
stripe login
stripe config --list
Useful read commands:
stripe customers list --limit 10
stripe customers retrieve cus_123
stripe products list --limit 20
stripe prices list --product prod_123
stripe subscriptions retrieve sub_123
stripe payment_intents retrieve pi_123
stripe events list --limit 10
Use the API when the application already has a configured Stripe client, authenticated helper, or server-side integration path.
Prefer the official Stripe SDKs over ad hoc HTTP calls when you are working in application code. Useful read-first targets include:
/v1/customers/{id}/v1/subscriptions/{id}/v1/payment_intents/{id}/v1/checkout/sessions/{id}/v1/events/{id}/v1/prices?product={product_id}For API-backed debugging:
If the user wants integration help, state whether the source of truth is:
For local development, forward Stripe events to the app:
stripe listen --forward-to http://127.0.0.1:3000/api/stripe/webhook
Trigger common test events:
stripe trigger payment_intent.succeeded
stripe trigger checkout.session.completed
stripe trigger customer.subscription.created
When debugging webhook issues, capture:
Use the Dashboard when the user is already authenticated in the browser or when the CLI does not cover the needed operation cleanly.
Prepare the exact target first:
Never click through destructive Dashboard actions until the user has confirmed them explicitly.