Agent Skills › trycompai/comp › billing

billing

GitHub

用于管理Comp AI计费系统,包括Stripe产品、订阅、支付及权限控制。涉及SKU定义、账单处理、Webhook事件响应及审计日志,确保数据一致性与幂等性。

.agents/skills/billing/SKILL.md trycompai/comp

Trigger Scenarios

修改Stripe产品价格或产品配置 处理订阅结账与支付方法变更 更新组织权限或使用量账本 配置或调试计费相关的Webhook

Install

npx skills add trycompai/comp --skill billing -g -y
More Options

Non-standard path

npx skills add https://github.com/trycompai/comp/tree/main/.agents/skills/billing -g -y

Use without installing

npx skills use trycompai/comp@billing

指定 Agent (Claude Code)

npx skills add trycompai/comp --skill billing -a claude-code -g -y

安装 repo 全部 skill

npx skills add trycompai/comp --all -g -y

预览 repo 内 skill

npx skills add trycompai/comp --list

SKILL.md

Frontmatter
{
    "name": "billing",
    "metadata": {
        "short-description": "Comp AI billing architecture"
    },
    "description": "Use when changing Comp AI billing, Stripe products\/prices, subscription checkout, org payment methods, entitlements, usage ledgers, invoices, or billing webhooks."
}

Billing

Comp AI billing is SKU-first and subscription-ready. Stripe is the payment provider; Comp AI owns catalog definitions, entitlement state, usage gating, and audit history.

Core Rules

  • Use @trycompai/billing for SKU keys, amounts, Stripe product IDs, Stripe price IDs, cadence, and included usage.
  • Do not add product-specific nullable fields to OrganizationBilling.
  • Keep org-level billing generic: stripeCustomerId, stripePaymentMethodId, and paymentMethodUpdatedAt.
  • Store per-product state in generic per-SKU tables keyed by skuKey.
  • Gate paid actions from local entitlement/usage state, not directly from Stripe object reads.
  • Treat Stripe webhooks as eventually consistent, retryable, and possibly out of order.
  • Make webhook and entitlement handling idempotent with Stripe event IDs, invoice IDs, subscription item IDs, and period start/end.
  • Archive accidental live/test Stripe objects instead of reusing them blindly.

Current SKU Shape

  • Active background-check subscriptions: background_checks_monthly_3 ($79/mo, 3 checks), background_checks_monthly_10 ($199/mo, 10 checks), and background_checks_monthly_20 ($399/mo, 20 checks).
  • Active penetration-test subscriptions: pentest_monthly_1 ($299/mo, 1 scan), pentest_monthly_3 ($499/mo, 3 scans), and pentest_monthly_5_current ($899/mo, 5 scans).
  • Deprecated / legacy SKUs remain in the catalog for historical Stripe records: background_check_one_time, background_checks_monthly_25, pentest_monthly_4, pentest_monthly_5, and pentest_monthly_10.

Live catalog entries should only be added after deliberate live Stripe object creation.

Implementation Pattern

  1. Add or update SKU definitions and Stripe IDs in packages/billing/src/index.ts and packages/billing/src/sku-definitions.ts.
  2. Store Stripe IDs in the catalog by environment rather than adding new env vars.
  3. Create subscriptions through Stripe Checkout mode: subscription.
  4. Use the shared Stripe customer default payment method unless the product explicitly needs overrides.
  5. For allowance products, sync local subscription state from Stripe subscription items and period timestamps.
  6. Record usage in the billing usage ledger with a stable idempotency key.
  7. Record support-relevant mutations in billing audit events.

Webhooks

Handle these events before launching subscription access:

  • checkout.session.completed
  • invoice.paid
  • invoice.payment_failed
  • invoice.payment_action_required
  • customer.subscription.updated
  • customer.subscription.deleted

Provision or renew allowance only for the matching subscription item and SKU. Do not use generic invoice-level periods for multi-item subscriptions.

Validation

  • Run bun run db:generate after Prisma schema changes.
  • Run bun run check:prisma-schemas to catch stale copied schema fragments.
  • Run catalog tests after SKU changes.
  • Add webhook tests for duplicate events, out-of-order delivery, payment failure, action required, cancellation, and renewal.

Version History

  • 0ccfcc2 Current 2026-09-27 10:22

Same Skill Collection

.agents/skills/audit-design-system/SKILL.md
.agents/skills/audit-hooks/SKILL.md
.agents/skills/audit-rbac/SKILL.md
.agents/skills/audit-tests/SKILL.md
.agents/skills/better-auth-best-practices/SKILL.md
.agents/skills/code/SKILL.md
.agents/skills/cursor-usage/SKILL.md
.agents/skills/data/SKILL.md
.agents/skills/diagnose-generation-failure/SKILL.md
.agents/skills/forms/SKILL.md
.agents/skills/generate-mcp-server/SKILL.md
.agents/skills/infra/SKILL.md
.agents/skills/manage-openapi-overlays/SKILL.md
.agents/skills/new-feature-setup/SKILL.md
.agents/skills/production-readiness/SKILL.md
.agents/skills/prompt-engineering/SKILL.md
.agents/skills/speakeasy-context/SKILL.md
.agents/skills/stale-worktree-cleanup/SKILL.md
.agents/skills/trigger-advanced-tasks/SKILL.md
.agents/skills/trigger-basic/SKILL.md
.agents/skills/trigger-config/SKILL.md
.agents/skills/trigger-realtime/SKILL.md
.agents/skills/ui/SKILL.md
.claude/skills/api-endpoint-contract/SKILL.md
.claude/skills/audit-design-system/SKILL.md
.claude/skills/audit-hooks/SKILL.md
.claude/skills/audit-rbac/SKILL.md
.claude/skills/audit-tests/SKILL.md
.claude/skills/check-results-service/SKILL.md
.claude/skills/cleanup/SKILL.md
.claude/skills/code/SKILL.md
.claude/skills/cursor-usage/SKILL.md
.claude/skills/data/SKILL.md
.claude/skills/forms/SKILL.md
.claude/skills/infra/SKILL.md
.claude/skills/new-feature-setup/SKILL.md
.claude/skills/production-readiness/SKILL.md
.claude/skills/prompt-engineering/SKILL.md
.claude/skills/security-review/SKILL.md
.claude/skills/stale-worktree-cleanup/SKILL.md
.claude/skills/trigger-advanced-tasks/SKILL.md
.claude/skills/trigger-basic/SKILL.md
.claude/skills/trigger-config/SKILL.md
.claude/skills/trigger-realtime/SKILL.md
.claude/skills/ui/SKILL.md
.agents/skills/essentials/SKILL.md
.agents/skills/prisma/SKILL.md
.agents/skills/trigger-scheduled-tasks/SKILL.md
.claude/skills/essentials/SKILL.md

Metadata

Files
0
Version
0ccfcc2
Hash
6557c1cc
Indexed
2026-09-27 10:22

Home - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-27 11:26
浙ICP备14020137号-1