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

paymentspayments 搜索

Agent Skill

payments 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

279

周安装

12

GitHub Stars

167

下载量

98
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/whawkinsiv/claude-code-skills --skill payments

简介

payments 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在支付相关开发流程中进行协作管理与状态跟踪。
  • 通过 npx skills add 命令从指定仓库安装。
  • 安装前应核实维护状态及可能触发的敏感操作权限。
  • payments 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Payments & Billing Operations

Billing is 20% code and 80% configuration and business decisions. This skill helps you set up Stripe correctly, handle the edge cases, and avoid the mistakes that lose customer trust.

Core Principles

  • Stripe is the right choice for 95% of bootstrapped SaaS. Do not overthink this decision.
  • Test mode exists for a reason. Never touch live mode until you've tested every flow.
  • Billing is the one place you cannot "move fast and break things." A billing bug loses trust permanently.
  • Automate everything. Manual invoicing doesn't scale and you will forget.
  • Tax compliance is not optional. Set it up from day one.

Stripe Setup Checklist

Stripe Configuration:
- [ ] Create Stripe account and verify identity
- [ ] Enable test mode (toggle in top-right of dashboard)
- [ ] Set up products and prices in Stripe Dashboard (not in code)
- [ ] Configure Customer Portal (Settings -> Billing -> Customer portal)
- [ ] Enable Stripe Tax (Settings -> Tax)
- [ ] Set up webhook endpoint in your app
- [ ] Add Stripe keys to environment variables
- [ ] Test complete purchase flow (test card: 4242424242424242)
- [ ] Test failed payment (decline card: 4000000000000002)
- [ ] Test subscription cancellation and upgrade/downgrade flows
- [ ] Switch to live mode, re-add live API keys
- [ ] Make one real purchase with your own card to verify

Tell AI:

Set up Stripe subscription billing for my SaaS:
- Monthly and annual pricing tiers: [list your tiers and prices]
- Checkout flow using Stripe Checkout (hosted payment page)
- Customer Portal for managing subscriptions
- Webhook handler for subscription events
- Environment variables for Stripe keys
Use [your framework/stack].

Products & Prices: Dashboard First

Always create products and prices in the Stripe Dashboard. Then reference them by Price ID in your code.

How to Set Up

  1. Stripe Dashboard -> Products -> Create one Product per tier (e.g., "Starter", "Pro")
  2. Add two Prices per product — monthly and annual
  3. Copy the Price IDs (price_...) into your app config
  4. Use lookup keys for cleaner code (e.g., starter_monthly, pro_annual)

Pricing Tips

  • Annual pricing = monthly x 10 (2 months free)
  • Show monthly price with annual savings highlighted
  • Use Stripe's built-in trial period (set on the Price, not in code)
  • Don't create "free" prices — handle free tier in your app logic

Subscription Lifecycle

Every state your app needs to handle:

EventSubscription StatusYour App Should
Payment succeeds after checkoutactiveGrant paid features
Card fails on renewalpast_dueShow "update payment" banner
All retries failunpaid or canceledDowngrade to free tier
Customer cancelsactive (until period end)Continue access until period ends, then downgrade
Customer upgradesactive (new plan)Prorate and grant new plan immediately
Customer downgradesactive (current plan)Schedule change for end of billing period

Essential Webhooks

Your app MUST handle these events:

EventWhat HappenedYour App Should
checkout.session.completedCustomer finished checkoutActivate subscription, grant access
customer.subscription.updatedPlan changed or status changedUpdate user's plan in database
customer.subscription.deletedSubscription fully canceledRevoke paid access, move to free tier
invoice.payment_failedRecurring payment failedShow "update payment" banner, send email

Tell AI:

Create a Stripe webhook handler for my [framework] app:
- Handle: checkout.session.completed, customer.subscription.updated,
  customer.subscription.deleted, invoice.payment_failed
- Verify webhook signatures using the endpoint secret
- Store subscription status in [database]
- Return 200 immediately (process async if needed)

Webhook security: Always verify signatures. Use stripe.webhooks.constructEvent(). Return 200 immediately — Stripe retries on timeout.


Customer Portal

Stripe's hosted Customer Portal lets users manage subscriptions without you building anything.

Configure in Settings -> Billing -> Customer portal:

  • Allow: update payment method, cancel subscription, switch plans, view invoices
  • Enable cancellation reason collection (gives you churn data)
  • Set cancellation policy to "at end of billing period" (not immediate)

Tell AI:

Add a "Manage Billing" button to my app's settings page.
It should create a Stripe Customer Portal session and redirect the user.
Use [framework].

Failed Payments (Dunning)

~5-10% of recurring charges fail each month. Plan for it.

Automatic Recovery

  1. Enable Smart Retries (Settings -> Billing -> Automatic collection) — Stripe retries 3 times over ~3 weeks, recovers 30-40% of failures automatically
  2. Add your own email sequence on top of Smart Retries:

Tell AI:

Create a dunning email sequence for failed payments:
- Day 0: "Your payment didn't go through. Update your card." + Customer Portal link
- Day 3: "Reminder: your account is at risk."
- Day 7: "Final warning before downgrade."
- Day 14: Account downgraded. "We miss you" + reactivation link.
Tone: helpful, not threatening.

Tax Collection

You are legally required to collect sales tax / VAT in most jurisdictions.

Option 1: Stripe Tax (Recommended)

  1. Settings -> Tax -> Enable Stripe Tax
  2. Set your business address
  3. Stripe automatically calculates and collects tax by customer location
  4. Cost: 0.5% per transaction. Worth it.

Option 2: Merchant of Record

If tax terrifies you, use Paddle or Lemon Squeezy. They handle all tax collection and remittance. Trade-off: higher fees (~5-10% vs Stripe's ~3%) and less control.

Tax Registration

  • Start with your home state/country. Expand as revenue grows.
  • US: Register in your home state + states where you exceed ~$100K in sales
  • EU: Need VAT registration if selling to EU customers

Pricing Implementation Patterns

PatternHow It WorksStripe Setup
Free trial -> Paid14-day trial, no card. Enter card to continue.Track trial in your DB. Create Checkout Session when trial ends.
Freemium -> UpgradeFree forever. Upgrade when hitting limits.No Stripe for free users. Checkout Session on upgrade only.
Card-required trialEnter card at signup. Auto-charges after 14 days.Create subscription with trial_period_days: 14.

Testing Checklist

Test every flow in Stripe test mode before going live:

- [ ] Successful purchase (card: 4242424242424242)
- [ ] Failed payment (card: 4000000000000002)
- [ ] 3D Secure authentication (card: 4000002500003155)
- [ ] Subscription cancellation and access revocation
- [ ] Plan upgrade (check proration)
- [ ] Plan downgrade (check scheduling)
- [ ] Customer Portal access
- [ ] Webhook delivery (Stripe Dashboard -> Webhooks -> logs)
- [ ] Trial expiration and conversion to paid

Going Live Checklist

- [ ] Switch to live mode in Stripe Dashboard
- [ ] Replace test API keys with live keys in production
- [ ] Update webhook endpoint URL and signing secret
- [ ] Verify Stripe Tax is enabled in live mode
- [ ] Make a real $1 purchase with your own card
- [ ] Verify webhook received in Stripe logs
- [ ] Refund your test purchase

Stripe Fees

FeeAmount
Standard (US cards)2.9% + $0.30 per transaction
International cards+1.5%
Stripe Tax+0.5% per transaction
Chargebacks$15 per dispute
Monthly/setup feesNone

Common Mistakes

MistakeFix
Hardcoding prices in your appUse Stripe Price IDs from the Dashboard
Skipping webhook signature verificationAlways verify — prevents spoofed events
Not handling past_due statusShow a banner, send dunning emails
Granting access based on Checkout redirect onlyUse webhooks — redirects can fail silently
Forgetting to test decline cardsTest every failure path, not just happy path
Ignoring tax collectionSet up Stripe Tax or use a Merchant of Record
Building your own billing portalUse Stripe's hosted Customer Portal

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.24%
按下载量换算34

Claude

29.76%
按下载量换算29

Cursor

18.91%
按下载量换算19

Gemini CLI

9.21%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills