kinde-billing

kinde-billing is a skill for Claude Code, Codex from ski043/kinde-agent-skills. It costs 77 tokens per session (3,008 once invoked), scanned A, original, MIT.

A guide for designing and connecting Kinde Billing, which manages customer plans, features, prices, subscriptions, and payments through Stripe. It covers both organization-based and individual-user plans.

In plain words
What is it for?
Use it to plan pricing tables, Stripe test billing, customer portals, feature access, usage tracking, billing webhooks, subscription life cycles, and billing troubleshooting.
Why use it?
It turns billing decisions into a clear contract before implementation, so plans, limits, trials, taxes, usage, and subscription events are not handled inconsistently. It also keeps billing work in a test environment until changes are authorized.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to plan pricing tables, Stripe test billing, customer portals, feature access, usage tracking, billing webhooks, subscription life cycles, and billing troubleshooting.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ski043/kinde-agent-skills/kinde-billing
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ski043/kinde-agent-skills --skill kinde-billing
Clone the repo
git clone --depth 1 https://github.com/ski043/kinde-agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kinde-billing

README.md
[![agentmods](https://agentmods.dev/badge/skills/ski043/kinde-agent-skills/kinde-billing/github.svg)](https://agentmods.dev/skills/ski043/kinde-agent-skills/kinde-billing)
Your own site
<a href="https://agentmods.dev/skills/ski043/kinde-agent-skills/kinde-billing"><img src="https://agentmods.dev/badge/skills/ski043/kinde-agent-skills/kinde-billing/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kinde-billing

Your own site · 80×15
<a href="https://agentmods.dev/skills/ski043/kinde-agent-skills/kinde-billing"><img src="https://agentmods.dev/badge/skills/ski043/kinde-agent-skills/kinde-billing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,008 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00077 $0.03008
Opus 5 $0.00039 $0.01504
Sonnet 5 $0.00015 $0.00602
Haiku 4.5 $0.00008 $0.00301

Measured 12d ago against content hash 075fffa89d85, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

kinde-billing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/kinde-billing/SKILL.md · 163 lines

How it starts

The opening of the file, as written. The whole thing — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kinde Billing

Produces a billing contract: customer type, environment, Stripe mode, currency, billing admin, plan group and table, features and charges, trials and tax, portal, entitlements, usage reporting, webhooks, lifecycle policies, and control planes. Consume the kinde-b2b tenant contract; do not invent a second tenancy model.

Stance

Treat the run as design-only until the user authorizes a mutation. Default to a non-production Kinde environment and Stripe test mode. Dated sources and first-party conflicts live in REFERENCES.md. Read it before relying on a product claim that is not already recorded in a sibling file, and whenever two official pages disagree.

Actively invoke the loaded framework adapter for framework work. If none is available, mark implementation blocked. Keep this contract API-neutral.

Vocabulary

Use these names; do not collapse them.

Term Means
Plan group Organization-type or user-type catalog. Never mixed.
Plan Published or draft package of charges and features.
Feature Unmetered gate or metered unit. Shared key, per-plan price/limit.
Pricing table Customer-facing comparison. One group, max four plans.
Customer Billing identity (customer_… / billing_customer_id).
Agreement Subscription (agreement_…).
Entitlement Configured plan access or unit limit, not current consumption.

High-impact

Without explicit authorization, record these as planned: production Stripe connection, first plan publish (locks currency), live price change, cancellation or refund, and meter write. Apply only an explicitly authorized item and capture observed evidence. Work other setup in test.

Verified Management surface

Scopes and bodies are in RUNTIME.md and EVENTS.md. Recheck REFERENCES.md and the published OpenAPI before acting:

  • GET /api/v1/billing/entitlements?customer_id= (read:billing_entitlements)
  • GET /api/v1/billing/agreements?customer_id= (read:billing_agreements)
  • POST /api/v1/billing/agreements (create:billing_agreements; customer_id, plan_code, optional is_prorate, is_invoice_now). Cancels existing agreements.
  • POST /api/v1/billing/meter_usage (create:meter_usage; customer_agreement_id, billing_feature_code, meter_value, optional absolute/delta)
  • POST /api/v1/organization (create:organizations; optional billing fields; omitted billing_plan_code selects the default org plan)
  • POST /api/v1/users/{user_id}/billing_customer (create:user_billing_customers; requires org_code; omitted billing_plan_code selects the default user plan)

Read the full file on GitHub · 163 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 163 lines · 77 tokens per session scan A 075fffa89d85

Subscribe to this mod's changes

kinde-billing is a skill published in the GitHub repository ski043/kinde-agent-skills (2 stars, last pushed 21d ago), licensed MIT. It adds 77 tokens to every session and 3,008 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

tray-pagamentos

API de informações de pagamento da Tray (recurso payments). Cobre listar, consultar, criar, atualizar e excluir registros de pagamento (CRUD em /payments), além de consultar as opções de pagamento ativas da loja (/payments/options) e as configurações globais de pagamento (/payments/settings). Total de 7 endpoints.…

tray-tecnologia/tray-api-ai-plugin · 176 tokens

tray-notas-fiscais

API de Notas Fiscais (NF-e) da Tray. Utilize quando o desenvolvedor precisar gerenciar notas fiscais eletrônicas associadas a pedidos, incluindo listagem geral, consulta por ID, consulta por pedido, criação e atualização. Inclui campos como número, série, chave de acesso, CFOP, link do DANFE e valor total, essenciais…

tray-tecnologia/tray-api-ai-plugin · 88 tokens

app-store-pricing

App Store pricing strategy, global equalization, subscription management, and regional pricing decisions using Apple's official 900-price-point system. Use when user asks about pricing tiers, IAP pricing, subscription pricing, regional pricing, price changes, App Store proceeds, base storefront selection, introductory…

markdavidgan/apple-dev-skills · 66 tokens

stripe-integration

Implement Stripe payment processing for robust, PCI-compliant payment flows including checkout, subscriptions, and webhooks. Use when integrating Stripe payments, building subscription systems, or implementing secure checkout flows.

is-bo/fullstack-forge-skill · 41 tokens

mena-payment-guardian

Use when building or reviewing Arab/MENA payment or BNPL flows, including Paymob, FawryPay, Geidea, PayTabs, Tap Payments, MyFatoorah, HyperPay, Moyasar, Amazon Payment Services, EasyKash, Kashier, PaySky, Tabby, Tamara, valU, Souhoola, webhooks, signatures, redirects, captures, refunds, or payment secret boundaries.

ArabAgentSkills/arab-payments-skill-atlas · 91 tokens

egypt-payment-guardian

Use when building or reviewing Egypt payment flows, including Paymob, FawryPay, Geidea Egypt, EasyKash, Kashier, PaySky, valU, Souhoola, callbacks, webhooks, HMAC, redirects, refunds, pending payments, duplicate events, or payment secret boundaries.

ArabAgentSkills/arab-payments-skill-atlas · 68 tokens