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---5
6# Customer Billing Ops
7
8Use this skill for real customer operations, not generic payment API design.
9
10The 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?
11
12## When to Use
13
14- Customer says billing is broken, they want a refund, or they cannot cancel
15- Investigating duplicate subscriptions, accidental charges, failed renewals, or churn risk
16- Reviewing plan mix, active subscriptions, yearly vs monthly conversion, or team-seat confusion
17- Creating or validating a billing portal flow
18- Auditing support complaints that touch subscriptions, invoices, refunds, or payment methods
19
20## Preferred Tool Surface
21
22- Use connected billing tools such as Stripe first
23- Use email, GitHub, or issue trackers only as supporting evidence
24- Prefer hosted billing/customer portals over custom account-management code when the platform already provides the needed controls
25
26## Guardrails
27
28- Never expose secret keys, full card details, or unnecessary customer PII in the response
29- Do not refund blindly; first classify the issue
30- Distinguish among:
31 - accidental duplicate purchase
32 - deliberate multi-seat or team purchase
33 - broken product / unmet value
34 - failed or incomplete checkout
35 - cancellation due to missing self-serve controls
36- For annual plans, team plans, and prorated states, verify the contract shape before taking action
37
38## Workflow
39
40### 1. Identify the customer cleanly
41
42Start from the strongest identifier available:
43
44- customer email
45- Stripe customer ID
46- subscription ID
47- invoice ID
48- GitHub username or support email if it is known to map back to billing
49
50Return a concise identity summary:
51
52- customer
53- active subscriptions
54- canceled subscriptions
55- invoices
56- obvious anomalies such as duplicate active subscriptions
57
58### 2. Classify the issue
59
60Put the case into one bucket before acting:
61
62| 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 |
69
70### 3. Take the safest reversible action first
71
72Preferred order:
73
741. restore self-serve management
752. fix duplicate or broken billing state
763. refund only the affected charge or duplicate
774. document the reason
785. send a short customer follow-up
79
80If the fix requires product work, separate:
81
82- customer remediation now
83- product bug / workflow gap for backlog
84
85### 4. Check operator-side product gaps
86
87If the customer pain comes from a missing operator surface, call it out explicitly. Common examples:
88
89- no billing portal
90- no usage/rate-limit visibility
91- no plan/seat explanation
92- no cancellation flow
93- no duplicate-subscription guard
94
95Treat those as ECC or website follow-up items, not just support incidents.
96
97### 5. Produce the operator handoff
98
99End with:
100
101- customer state summary
102- action taken
103- revenue impact
104- follow-up text to send
105- product or backlog issue to create
106
107## Output Format
108
109Use this structure:
110
111```text
112CUSTOMER
113- name / email
114- relevant account identifiers
115
116BILLING STATE
117- active subscriptions
118- invoice or renewal state
119- anomalies
120
121DECISION
122- issue classification
123- why this action is correct
124
125ACTION TAKEN
126- refund / cancel / portal / no-op
127
128FOLLOW-UP
129- short customer message
130
131PRODUCT GAP
132- what should be fixed in the product or website
133```
134
135## Examples of Good Recommendations
136
137- "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"