用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/BuilderIO/agent-native --skill stripe命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | stripe |
| description | How to connect to and query the Stripe API for analytics data. |
https://api.stripe.comSTRIPE_SECRET_KEY credentialserver/lib/stripe.tsserver/routes/stripe.tsapp/pages/adhoc/stripe/ (tool page, not metrics dashboard)STRIPE_SECRET_KEY — configure in Settings → Data sourcesUse stripe for agent-facing Stripe work. Do not call /api/stripe/*
directly from the agent.
| Mode | Args | Description |
|---|---|---|
billing | email, customerId, query, months | Invoices for a customer in timeframe |
payment-status | email, customerId, query | Recent charges + payment intents |
refunds | email, customerId, query | Refunds associated with customer |
subscriptions | email, customerId, query | Active subscriptions |
billing-by-product | email, customerId, query, months | Billing aggregated by product |
| Route | Method | Params | Description |
|---|---|---|---|
/api/stripe/billing | GET | email, months (default 6) | Invoices for a customer in timeframe |
/api/stripe/payment-status | GET | email | Recent charges + payment intents |
/api/stripe/refunds | GET | email | Refunds associated with customer |
/api/stripe/subscriptions | GET | email | All subscriptions (active + inactive) |
All routes resolve email → Stripe customer ID(s) internally.
getCustomersByEmail(email) — lookup customers by emailgetInvoices(customerId, months?) — invoices, optionally filtered by timeframegetCharges(customerId, limit?) — recent chargesgetPaymentIntents(customerId, limit?) — recent payment intentsgetSubscriptions(customerId) — all subscriptions (status=all)getRefunds(customerId) — refunds via charge lookup/v1/refunds does NOT support customer filter. The lib works around this by fetching customer charges first, then fetching refunds for refunded charges.expand parameter is used for invoices (line items) and subscriptions (price details).useStripeBilling(email, months, enabled)useStripePaymentStatus(email, enabled)useStripeRefunds(email, enabled)useStripeSubscriptions(email, enabled)All hooks use enabled flag — data is only fetched when a button is clicked.
The Stripe page is a tool (not a dashboard). It has: