Skip to main content

billing-stripe

Work with Stripe billing — subscriptions, plans/prices, the Customer Portal, credits, usage metering, invoices, and webhook events. Use when changing plans, handling a new Stripe webhook, debugging a payment/subscription flow, or touching credit balances and usage.

설치로 이동

소스 정보

저장소
vstorm-co/full-stack-ai-agent-template
최근 소스 활동
2026년 6월 22일 14:41
감지된 SKILL.md 언어
영어
스타
1,898
포크
375

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
billing-stripe
description
Work with Stripe billing — subscriptions, plans/prices, the Customer Portal, credits, usage metering, invoices, and webhook events. Use when changing plans, handling a new Stripe webhook, debugging a payment/subscription flow, or touching credit balances and usage.
# Billing & Credits (Stripe) Billing is a **thick service** at `backend/app/services/billing/`. Routes never touch Stripe directly — everything goes through `BillingService` (the facade in `facade.py`, re-exported from `__init__.py`). ## Layout | File | Responsibility | |------|---------------| | `facade.py` | `BillingService` — the only thing routes/workers import | | `checkout_service.py` | Checkout sessions (seat-configurable) | | `subscription_service.py` | Subscription CRUD, change plan, cancel/reactivate | | `credit_service.py` | Credit ledger + usage aggregation | | `stripe_client.py` | Thin Stripe API wrapper | | `webhook_handler.py` + `handlers/` | Event processing (customer / invoice / payment / subscription) | | `pricing.py` | Static plan/price data | | `exceptions.py` | Billing domain errors (extend `core/exceptions`) | Data model: `plan` / `price` mirror Stripe products; `subscription` is one-per-org; `stripe_event` is an idempotency log; `credit_transaction` is an immutable ledger; `usage_event` records per-message token spend, rolled up into the `mv_usage_daily` materialized view. ## Common tasks **Handle a new webhook event:** add a handler module/function under `services/billing/handlers/`, dispatch it from `webhook_handler.py`, and record it in `stripe_event` for idempotency (skip if already processed). Verify the signature — never trust unsigned payloads. **Add/adjust a plan:** update `pricing.py` and the corresponding Stripe product/price; the `sync-stripe-plans` command (`{{ cookiecutter.project_slug }} cmd sync-stripe-plans`) mirrors Stripe → local `plan`/`price` tables. **Charge/grant credits:** go through `credit_service` so every change writes a `credit_transaction` row (grants, purchases, debits) and the running balance stays consistent. Never mutate balances directly. **Meter usage:** write a `usage_event` (input/output/cached tokens, model, provider, credits charged) — the daily rollup and dashboard charts read from `mv_usage_daily` (refreshed by a background task). ## Local testing Use the Stripe CLI to forward webhooks: `stripe listen --forward-to localhost:8000/api/v1/billing/webhook`. Use Stripe test keys/mode. The webhook endpoint is unauthenticated but signature-verified. ## Rules - Routes call `BillingService`; never import `stripe_client` or a sub-service directly from a route. - Every webhook is idempotent via `stripe_event` — re-delivery must be a no-op. - Credit changes always go through the ledger; the balance is derived, not authoritative state you overwrite. - Keep Stripe secrets in `settings` / `.env`, never inline.
GitHub에서 보기