Topy billing
TOPY AI CEO skills for Codex, Claude Code, and npx skills
npx -y skills add TOPY-AI-LTD/TOPY-AI-CEO-Skills --skill topy-billingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Inspect TOPY billing state, credit balance, transactions, subscriptions, and portal/checkout flows using TOPY_AI_KEY. Use when the user wants to check limits or purchase access.
SKILL.md
1.6 KB, as published. Nobody here has run it
TOPY Billing
Intent
Read billing state and initiate subscription or credit-purchase flows.
Allowed operations
- View entitlements
- View credit balance
- View credit transactions
- Start a credit purchase intent
- List subscription plans
- Start subscription checkout
- Open the billing portal
Route map
GET https://topy.ai/api/v1/billing/entitlementsGET https://topy.ai/api/v1/billing/credits/balanceGET https://topy.ai/api/v1/billing/credits/transactions?limit=NPOST https://topy.ai/api/v1/billing/credits/purchase-intentGET https://topy.ai/api/v1/billing/subscriptions/plansPOST https://topy.ai/api/v1/billing/subscriptions/checkoutPOST https://topy.ai/api/v1/billing/subscriptions/portal
API and auth
See references/auth-and-api.md for the shared convention.
Rules
- Before any API call, verify that
TOPY_AI_KEYis available. - Use
https://topy.ai/apias the base URL for all calls. - Prefer reading billing state before any expensive operation.
- Use the billing response as the source of truth for credits and plan limits.
- Keep checkout and portal flows user-driven.
Failure behavior
- If
TOPY_AI_KEYis missing, stop and route the user totopy-init. - If the user lacks credit or entitlement, surface the exact backend response.
- If the portal or checkout flow fails, stop and do not retry automatically.