Token导航 LogoToken导航TokenDH.com
待分类权限需确认github未标认证来源可访问许可证需确认审计未展示

billing-integration计费集成

Agent Skill

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

总安装

260

周安装

8

GitHub Stars

2

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/credyt/ai-tools --skill billing-integration

简介

billing-integration 提供与 Credyt 计费系统的集成能力,支持产品配置与流程验证。

  • 适用于接入新支付渠道或调整订阅模型,需结合 MCP 工具使用。
  • 通过 npx skills add 安装,调用相关接口完成资产与产品管理。
  • 首次使用前应检查现有配置,避免重复创建或冲突设置。
  • 生产环境操作前建议测试环境验证,防止误操作导致服务中断。

SKILL.md

name
billing-integration
description
Wire Credyt billing into your application code. Adds customer creation to registration, usage event tracking, balance checks, cost tracking, and billing portal links. Run after /credyt:billing-setup and /credyt:billing-verification. Use when the user wants to add Credyt to their app, integrate billing, send events from code, show balances, or add a billing page.

Credyt Integrate

Help the user wire Credyt into their application code. This skill works with the user's actual codebase — reading their existing code and adding Credyt integration in the right places.

The full integration guide with code examples is at docs.credyt.ai/ai-integration.md. Fetch it for detailed patterns and examples when needed.

Understand the codebase first

Before writing any code, understand what the user has:

"Let me look at your project to understand your stack and where billing should plug in."

Check for:

  • Language and framework (Node/Express, Next.js, Python/FastAPI, etc.)
  • Authentication setup (how users sign up and log in)
  • Where the billable activities happen in their code
  • Existing environment variable patterns

Integration areas

Walk through each area. Not all will apply to every user — ask which ones they need.

1. API key setup

The Credyt API key must be stored securely on the server side — never in code that runs in the browser.

Add CREDYT_API_KEY to their environment variables alongside their other secrets. Show them how to create an API client or helper that attaches the key as an X-CREDYT-API-KEY header.

2. Customer creation (registration flow)

When a new user signs up in their app, create a matching Credyt customer. Find their registration/signup handler and add customer creation after successful account creation.

Key points:

  • Use external_id to link the Credyt customer to their app's user ID
  • Subscribe the customer to the relevant products during creation
  • Store the Credyt customer ID in their database alongside the user record
  • Handle the case where the customer already exists (409/422 — look up by external_id instead)

Recurring fixed fees — pending subscriptions

If the product uses a recurring fixed fee (e.g. $20/month), the customer must pay upfront before their subscription activates. In this case the API returns a pending status rather than activating immediately.

Set return_url, failure_url, and redirect_to on the subscription creation call so Credyt knows where to send the customer after payment — before you ever redirect them anywhere:

  • return_url — where to send the customer after successful payment (e.g. https://yourapp.com/account)
  • failure_url — where to send them if payment fails (e.g. https://yourapp.com/callbacks/payment-failed)
  • redirect_to — set to "return_url" so the customer lands back on your site instead of staying in the Credyt billing portal (this is the default, but set it explicitly)

When the response status is pending:

  • Check the required_actions array for an action with type: "payment" and extract its redirect_url
  • Redirect the customer to that URL — Credyt will handle the payment form and route them to your return_url or failure_url automatically
  • Do not activate the user's account yet — store it as pending in your database until payment is confirmed
  • If the redirect link expires before the customer completes payment, fetch the customer by their Credyt ID to get a refreshed link

Once the customer pays, Credyt fires a subscription.activated webhook. Listen for this event on your backend and use it to activate the user's account.

3. Usage event tracking

Find where the billable activities happen in their code and add event submission after each one. Each event needs:

  • A unique ID (UUID) so the same event can't be billed twice
  • The correct event_type matching the product configuration
  • A timestamp of when it happened
  • Any data fields needed for pricing (volume fields, dimensions)

For volume-based products, the event data must include the volume field (e.g., total_tokens: 1500). For dimensional products, include the dimension values (e.g., model: "gpt-4").

4. Cost tracking (if they set up vendors)

If the user set up vendors in /credyt:billing-setup, add cost data to usage events. Each event can include a costs array with the vendor ID, the amount it cost, and the currency.

This is typically added right after the billable action completes, when the cost is known (e.g., after receiving the response from an AI API that includes token counts).

"Even if you're not charging users yet, attaching costs to every event lets Credyt calculate your unit economics so you can make pricing decisions based on real data."

5. Balance checks (pre-action gating)

Before expensive operations, check the customer's wallet balance. If insufficient, block the action and prompt the user to top up.

Find where billable actions are initiated (API routes, button handlers, etc.) and add a balance check before the action runs. Return a clear message if the balance is too low.

Show them how to estimate the cost of the upcoming action and compare it against the available balance.

6. Billing portal / top-up UI

Help users add funds through Credyt's billing portal. This is the simplest way to handle payments — Credyt hosts the page, handles Stripe, and redirects back to their app.

Add a "Billing" or "Add funds" link/button in their app's settings or account page. When clicked, the backend creates a billing portal session and redirects the user to the URL.

Key points:

  • Portal sessions expire after 10 minutes
  • Set a return_url for where to send users after they're done
  • Set a failure_url for payment failures

7. Balance display

Show the user's current balance in the app UI. Fetch from the wallet endpoint and display the available amount.

Consider where this fits in their app — sidebar, header, account page — and add it there.

Implementation approach

Don't dump all the code at once. Work through each area one at a time:

  1. Start with API key setup and customer creation — these are foundational
  2. Then add usage event tracking — this is the core billing integration
  3. Add balance checks to gate expensive operations
  4. Add billing portal and balance display for the user-facing pieces
  5. Add cost tracking last if applicable

After each piece, suggest they test it:

"Try creating a new account in your app and check the Credyt dashboard — you should see a new customer appear. Then we'll move on to usage tracking."

Reference

For detailed code examples, error handling patterns, and advanced topics (hybrid billing, refunds, auto top-up), point the user to:

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

34.23%
按下载量换算22

Claude

33.72%
按下载量换算22

Cursor

17.9%
按下载量换算12

Gemini CLI

10.44%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills