Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

stripe-integrationStripe 集成

Agent Skill

stripe-integration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

713

周安装

30

GitHub Stars

10

下载量

250
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:stripe-integration(Stripe 集成)
来源仓库:https://github.com/oakoss/agent-skills
仓库路径:skills/stripe-integration
安装命令:
npx skills add https://github.com/oakoss/agent-skills --skill stripe-integration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/oakoss/agent-skills --skill stripe-integration

简介

stripe-integration 用于查找、检索和筛选相关信息,适合在支付集成相关任务中提供线索支持。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境中的关键词定位与场景匹配。
  • 通过 GitHub 仓库安装,使用 npx skills add 等 --skill stripe-integration 命令部署。
  • 建议确认权限范围和维护状态,避免不必要的网络或服务调用。
  • 可结合原始 README 文档进一步核验具体应用场景和操作流程。

SKILL.md

Stripe Integration

Overview

Stripe provides a complete payments platform with server-side SDKs (Node.js) and client-side libraries (Stripe.js, React Stripe.js). The Node.js SDK handles server operations like creating Payment Intents, managing Subscriptions, and verifying webhooks. The React Stripe.js library provides pre-built UI components (PaymentElement, Elements provider) for secure client-side payment collection.

When to use: One-time payments, recurring subscriptions, usage-based billing, marketplace payouts, hosted checkout pages, custom payment forms, webhook-driven fulfillment.

When NOT to use: Cryptocurrency payments (not supported), regions where Stripe is unavailable, simple static product sales without payment processing (use a hosted storefront).

Quick Reference

PatternAPIKey Points
Hosted checkoutstripe.checkout.sessions.create()Stripe-hosted page, supports payment, subscription, setup modes
Payment Intentstripe.paymentIntents.create()Server-side, returns client_secret for client confirmation
Confirm paymentstripe.confirmPayment({elements, clientSecret})Client-side, requires Elements instance
Create subscriptionstripe.subscriptions.create()Use payment_behavior: 'default_incomplete' for SCA
Update subscriptionstripe.subscriptions.update()Set proration_behavior explicitly
Cancel subscriptionstripe.subscriptions.cancel()Use prorate: true to credit unused time
Customer Portalstripe.billingPortal.sessions.create()Self-service billing management, returns short-lived URL
Webhook verifystripe.webhooks.constructEvent()Requires raw body, signature header, and endpoint secret
Elements provider<Elements stripe={stripePromise} options={options}>Wraps payment components, pass clientSecret or mode
PaymentElement<PaymentElement />Renders all supported payment methods automatically
Retrieve + expandstripe.checkout.sessions.retrieve(id, {expand})Expand nested objects to reduce API calls
Searchstripe.paymentIntents.search({query})Stripe Query Language for filtering

Common Mistakes

MistakeCorrect Pattern
Parsing webhook body as JSON before verificationUse express.raw({type: 'application/json'}) to pass raw body to constructEvent
Hardcoding payment method typesUse automatic_payment_methods or let Checkout choose based on currency and region
Creating PaymentIntent client-sideCreate on server, pass only client_secret to client
Not awaiting elements.submit() before confirmCall elements.submit() first to trigger validation, then confirmPayment
Missing return_url in confirmPaymentAlways provide return_url for redirect-based payment methods
Using test keys in productionStore keys in environment variables, validate STRIPE_SECRET_KEY prefix (sk_live_ vs sk_test_)
Not handling requires_action statusCheck PaymentIntent status after confirmation, handle 3D Secure or other authentication
Creating Customer Portal session without settingsSave portal settings in Dashboard first, otherwise API returns an error
Not expanding related objectsUse expand parameter to include nested objects like latest_invoice.payment_intent
Ignoring webhook idempotencyUse event.id to deduplicate, webhook events can be delivered more than once

Delegation

  • Payment flow architecture: Use Explore agent to discover integration patterns
  • Webhook debugging: Use Task agent for end-to-end event tracing
  • Code review: Delegate to code-reviewer agent for security review of payment handlers

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.46%
按下载量换算91

Claude

31.16%
按下载量换算78

Cursor

18.67%
按下载量换算47

Gemini CLI

8.79%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills