Customer Billing Ops
Use this skill for real customer operations, not generic payment API design.
The goal is to help the operator answer: who is this customer, what happened, what is the safest fix, and what follow-up should we send?
When to Use
- Customer says billing is broken, they want a refund, or they cannot cancel
- Investigating duplicate subscriptions, accidental charges, failed renewals, or churn risk
- Reviewing plan mix, active subscriptions, yearly vs monthly conversion, or team-seat confusion
- Creating or validating a billing portal flow
- Auditing support complaints that touch subscriptions, invoices, refunds, or payment methods
Preferred Tool Surface
- Use connected billing tools such as Stripe first
- Use email, GitHub, or issue trackers only as supporting evidence
- Prefer hosted billing/customer portals over custom account-management code when the platform already provides the needed controls
Guardrails
- Never expose secret keys, full card details, or unnecessary customer PII in the response
- Do not refund blindly; first classify the issue
- Distinguish among:
- accidental duplicate purchase
- deliberate multi-seat or team purchase
- broken product / unmet value
- failed or incomplete checkout
- cancellation due to missing self-serve controls
- For annual plans, team plans, and prorated states, verify the contract shape before taking action
Workflow
1. Identify the customer cleanly
Start from the strongest identifier available:
- customer email
- Stripe customer ID
- subscription ID
- invoice ID
- GitHub username or support email if it is known to map back to billing
Return a concise identity summary:
- customer
- active subscriptions
- canceled subscriptions
- invoices
- obvious anomalies such as duplicate active subscriptions
2. Classify the issue
Put the case into one bucket before acting:
| Case |
Typical action |
| Duplicate personal subscription |
cancel extras, consider refund |
| Real multi-seat/team intent |
preserve seats, clarify billing model |
| Failed payment / incomplete checkout |
recover via portal or update payment method |
| Missing self-serve controls |
provide portal, cancellation path, or invoice access |
| Product failure or trust break |
refund, apologize, log product issue |
3. Take the safest reversible action first
Preferred order:
- restore self-serve management
- fix duplicate or broken billing state
- refund only the affected charge or duplicate
- document the reason
- send a short customer follow-up
If the fix requires product work, separate:
- customer remediation now
- product bug / workflow gap for backlog
4. Check operator-side product gaps
If the customer pain comes from a missing operator surface, call it out explicitly. Common examples:
- no billing portal
- no usage/rate-limit visibility
- no plan/seat explanation
- no cancellation flow
- no duplicate-subscription guard
Treat those as ECC or website follow-up items, not just support incidents.
5. Produce the operator handoff
End with:
- customer state summary
- action taken
- revenue impact
- follow-up text to send
- product or backlog issue to create
Output Format
Use this structure:
CUSTOMER
- name / email
- relevant account identifiers
BILLING STATE
- active subscriptions
- invoice or renewal state
- anomalies
DECISION
- issue classification
- why this action is correct
ACTION TAKEN
- refund / cancel / portal / no-op
FOLLOW-UP
- short customer message
PRODUCT GAP
- what should be fixed in the product or website
Examples of Good Recommendations
- "The right fix is a billing portal, not a custom dashboard yet"
- "This looks like duplicate personal checkout, not a real team-seat purchase"
- "Refund one duplicate charge, keep the remaining active subscription, then convert the customer to org billing later if needed"
1---2name: customer-billing-ops3description: Operate customer billing workflows such as subscriptions, refunds, churn triage, billing-portal recovery, and plan analysis using connected billing tools like Stripe. Use when the user needs to help a customer, inspect subscription state, or manage revenue-impacting billing operations.4---56# Customer Billing Ops78Use this skill for real customer operations, not generic payment API design.910The goal is to help the operator answer: who is this customer, what happened, what is the safest fix, and what follow-up should we send?1112## When to Use1314- Customer says billing is broken, they want a refund, or they cannot cancel15- Investigating duplicate subscriptions, accidental charges, failed renewals, or churn risk16- Reviewing plan mix, active subscriptions, yearly vs monthly conversion, or team-seat confusion17- Creating or validating a billing portal flow18- Auditing support complaints that touch subscriptions, invoices, refunds, or payment methods1920## Preferred Tool Surface2122- Use connected billing tools such as Stripe first23- Use email, GitHub, or issue trackers only as supporting evidence24- Prefer hosted billing/customer portals over custom account-management code when the platform already provides the needed controls2526## Guardrails2728- Never expose secret keys, full card details, or unnecessary customer PII in the response29- Do not refund blindly; first classify the issue30- Distinguish among:31 - accidental duplicate purchase32 - deliberate multi-seat or team purchase33 - broken product / unmet value34 - failed or incomplete checkout35 - cancellation due to missing self-serve controls36- For annual plans, team plans, and prorated states, verify the contract shape before taking action3738## Workflow3940### 1. Identify the customer cleanly4142Start from the strongest identifier available:4344- customer email45- Stripe customer ID46- subscription ID47- invoice ID48- GitHub username or support email if it is known to map back to billing4950Return a concise identity summary:5152- customer53- active subscriptions54- canceled subscriptions55- invoices56- obvious anomalies such as duplicate active subscriptions5758### 2. Classify the issue5960Put the case into one bucket before acting:6162| Case | Typical action |63|------|----------------|64| Duplicate personal subscription | cancel extras, consider refund |65| Real multi-seat/team intent | preserve seats, clarify billing model |66| Failed payment / incomplete checkout | recover via portal or update payment method |67| Missing self-serve controls | provide portal, cancellation path, or invoice access |68| Product failure or trust break | refund, apologize, log product issue |6970### 3. Take the safest reversible action first7172Preferred order:73741. restore self-serve management752. fix duplicate or broken billing state763. refund only the affected charge or duplicate774. document the reason785. send a short customer follow-up7980If the fix requires product work, separate:8182- customer remediation now83- product bug / workflow gap for backlog8485### 4. Check operator-side product gaps8687If the customer pain comes from a missing operator surface, call it out explicitly. Common examples:8889- no billing portal90- no usage/rate-limit visibility91- no plan/seat explanation92- no cancellation flow93- no duplicate-subscription guard9495Treat those as ECC or website follow-up items, not just support incidents.9697### 5. Produce the operator handoff9899End with:100101- customer state summary102- action taken103- revenue impact104- follow-up text to send105- product or backlog issue to create106107## Output Format108109Use this structure:110111```text112CUSTOMER113- name / email114- relevant account identifiers115116BILLING STATE117- active subscriptions118- invoice or renewal state119- anomalies120121DECISION122- issue classification123- why this action is correct124125ACTION TAKEN126- refund / cancel / portal / no-op127128FOLLOW-UP129- short customer message130131PRODUCT GAP132- what should be fixed in the product or website133```134135## Examples of Good Recommendations136137- "The right fix is a billing portal, not a custom dashboard yet"138- "This looks like duplicate personal checkout, not a real team-seat purchase"139- "Refund one duplicate charge, keep the remaining active subscription, then convert the customer to org billing later if needed"