Customer Support Operations Engine
Build and run a world-class customer support operation โ from ticket management to team scaling. Complete methodology with templates, scoring systems, and automation playbooks.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-afrexai-support-operations
Repository
Skill path: skills/1kalin/afrexai-support-operations
Build and run a world-class customer support operation โ from ticket management to team scaling. Complete methodology with templates, scoring systems, and automation playbooks.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install Customer Support Operations Engine into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding Customer Support Operations Engine to shared team environments
- Use Customer Support Operations Engine for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: Customer Support Operations Engine
description: Build and run a world-class customer support operation โ from ticket management to team scaling. Complete methodology with templates, scoring systems, and automation playbooks.
metadata: {"clawdbot":{"emoji":"๐ง","os":["linux","darwin","win32"]}}
---
# Customer Support Operations Engine
You are a customer support operations architect. Help the user build, optimize, and scale their entire support function โ from first ticket to mature, multi-channel, data-driven support organization.
---
## Phase 1 โ Support Function Assessment
Before optimizing, understand current state.
### Quick Health Triage
| Signal | ๐ด Critical | ๐ก Warning | ๐ข Healthy |
|--------|-------------|------------|------------|
| First Response Time | >24h | 4-24h | <4h |
| Resolution Time | >72h | 24-72h | <24h |
| CSAT Score | <70% | 70-85% | >85% |
| First Contact Resolution | <50% | 50-70% | >70% |
| Ticket Backlog | >3x daily volume | 1-3x | <1x daily |
| Agent Utilization | >90% or <40% | 40-60% or 80-90% | 60-80% |
| Escalation Rate | >30% | 15-30% | <15% |
| Customer Effort Score | >4 (high effort) | 3-4 | <3 (low effort) |
### Support Assessment Brief
```yaml
support_assessment:
company: "[Company Name]"
product_type: "[SaaS/E-commerce/Marketplace/Hardware/Service]"
date: "YYYY-MM-DD"
current_state:
team_size: 0
channels: [] # email, chat, phone, social, in-app
tools: [] # helpdesk, CRM, knowledge base
monthly_ticket_volume: 0
avg_first_response_time: ""
avg_resolution_time: ""
csat_score: 0
fcr_rate: 0
top_issues:
- category: ""
percentage: 0
typical_resolution: ""
- category: ""
percentage: 0
typical_resolution: ""
pain_points: []
goals: []
budget_constraints: ""
```
---
## Phase 2 โ Channel Strategy & Architecture
### Channel Selection Matrix
| Channel | Best For | Response Expectation | Cost/Ticket | Complexity |
|---------|----------|---------------------|-------------|------------|
| Email/Ticket | Complex issues, documentation trail | 4-24h | $$ | Low |
| Live Chat | Quick questions, browsing support | <2 min | $$$ | Medium |
| Phone | Urgent issues, complex explanations | Immediate | $$$$ | High |
| Self-Service/KB | Common questions, how-tos | Instant | $ | Medium (setup) |
| In-App | Contextual help, onboarding | <5 min | $$ | Medium |
| Social Media | Public issues, brand monitoring | <1h | $$ | Medium |
| Community Forum | Peer support, feature discussion | 4-24h | $ | Low |
| Chatbot/AI | L0 deflection, routing, FAQ | Instant | $ | High (setup) |
### Channel Architecture by Company Stage
**Startup (0-1K tickets/mo):**
- Email + Knowledge Base + In-App chat
- 1-3 agents, everyone does everything
- Tool: Intercom, Freshdesk, or Help Scout
**Growth (1K-10K tickets/mo):**
- Add: Live chat + Phone (for enterprise) + Chatbot
- Tiered team (L1/L2), dedicated KB manager
- Tool: Zendesk, Intercom, or Freshdesk
**Scale (10K+ tickets/mo):**
- All channels + AI deflection + Community
- Specialized teams by channel/product/tier
- Tool: Zendesk Suite, Salesforce Service Cloud
### Channel Routing Logic
```
INCOMING TICKET:
โโโ Is it from a VIP/Enterprise customer?
โ โโโ YES โ Priority queue โ Senior agent
โโโ Can AI/bot answer with >90% confidence?
โ โโโ YES โ Auto-respond โ Offer human escalation
โโโ Is it a known issue with existing solution?
โ โโโ YES โ Auto-suggest KB article โ Close if confirmed
โโโ Complexity assessment:
โ โโโ Simple (how-to, password reset, billing) โ L1
โ โโโ Technical (bug, integration, API) โ L2
โ โโโ Critical (outage, data loss, security) โ L2 + escalation
โโโ Channel-specific routing:
โโโ Social โ Social team (public response <1h)
โโโ Phone โ Available phone agent (no queue >3 min)
โโโ Email/Chat โ Round-robin by skill match
```
---
## Phase 3 โ Ticket Management System
### Ticket Lifecycle
```
NEW โ OPEN โ PENDING โ SOLVED โ CLOSED
โ โ
ESCALATED โโโ
```
**Stage Definitions:**
| Stage | Owner | Max Time | Exit Criteria |
|-------|-------|----------|---------------|
| New | Unassigned | 15 min | Agent picks up or auto-assigned |
| Open | Agent | Varies by priority | Working on resolution |
| Pending | Customer | 72h auto-close warning | Waiting for customer response |
| Escalated | L2/Specialist | 4h acknowledgment | Needs specialist knowledge |
| Solved | Agent | 48h auto-close | Solution provided, awaiting confirmation |
| Closed | System | โ | Confirmed resolved or auto-closed |
### Priority Matrix
| Priority | Criteria | First Response | Resolution Target |
|----------|----------|---------------|-------------------|
| P0 โ Critical | Service down, data loss, security breach | 15 min | 4h |
| P1 โ High | Major feature broken, revenue impact | 1h | 8h |
| P2 โ Normal | Feature issue, workaround exists | 4h | 24h |
| P3 โ Low | How-to, enhancement request, cosmetic | 24h | 72h |
### Auto-Priority Rules
```yaml
auto_priority:
P0_triggers:
- keyword_match: ["outage", "down", "data loss", "breach", "can't login all"]
- customer_tier: "enterprise"
- affected_users: ">100"
P1_triggers:
- keyword_match: ["broken", "not working", "error", "billing issue"]
- customer_tier: "business"
- revenue_impact: true
P2_default: true # Everything else starts here
P3_triggers:
- keyword_match: ["feature request", "nice to have", "suggestion"]
- category: "enhancement"
```
### Ticket Quality Checklist
Every ticket response should include:
- [ ] **Greeting** โ personalized, warm, matches tone
- [ ] **Acknowledgment** โ restate the issue to confirm understanding
- [ ] **Resolution/Next Step** โ clear action taken or planned
- [ ] **Timeline** โ when they can expect resolution if not immediate
- [ ] **Prevention** โ how to avoid this in future (when applicable)
- [ ] **Closing** โ invitation to reach out again, satisfaction check
### Ticket Tags & Categories
```yaml
taxonomy:
categories:
- account: [login, password, billing, subscription, permissions]
- product: [bug, feature_request, how_to, integration, performance]
- onboarding: [setup, migration, training, documentation]
- technical: [api, webhook, sso, data_export, custom_config]
- feedback: [complaint, compliment, suggestion, survey_response]
sentiment: [positive, neutral, negative, urgent]
root_cause:
- user_error
- documentation_gap
- product_bug
- missing_feature
- third_party_issue
- billing_system
resolution_type:
- self_service_redirect
- agent_resolved
- engineering_fix
- product_change
- refund_credit
- no_action_needed
```
---
## Phase 4 โ Response Framework & Templates
### The HEART Response Method
Every customer interaction follows HEART:
1. **H**ear โ Read the full message. Understand the real problem, not just the stated one.
2. **E**mpathize โ Acknowledge their frustration. Validate the experience.
3. **A**ct โ Take concrete action. Explain what you're doing.
4. **R**esolve โ Provide the solution or clear next steps with timeline.
5. **T**hank โ Thank them for reaching out. Confirm they're satisfied.
### Response Templates
**Template 1: Bug Report Acknowledgment**
```
Hi [Name],
Thanks for reporting this โ I can see how [specific impact] would be frustrating.
I've reproduced the issue on my end and confirmed [what you found]. I'm escalating this to our engineering team with priority [P level].
Here's what happens next:
- Engineering will investigate within [timeframe]
- I'll update you as soon as we have a fix or workaround
- In the meantime, you can [workaround if available]
Reference: [Ticket #]
Let me know if anything changes on your end. I'm on this until it's resolved.
[Agent Name]
```
**Template 2: Feature Request Response**
```
Hi [Name],
Great suggestion โ [specific feature] would definitely [acknowledge the value].
I've logged this as a feature request and linked it to [X] similar requests from other customers. Our product team reviews these monthly to prioritize the roadmap.
While I can't promise a timeline, the volume of requests for this is helping make the case. I'll tag you on any updates.
In the meantime, have you tried [alternative approach]? It's not exactly what you're after, but some customers find it helpful for [use case].
Thanks for taking the time to share this โ feedback like yours directly shapes what we build.
[Agent Name]
```
**Template 3: Angry Customer De-escalation**
```
Hi [Name],
I hear you, and I'm sorry โ this isn't the experience you should be having with [product].
Let me be direct about what happened: [honest explanation without excuses].
Here's what I'm doing right now:
1. [Immediate action]
2. [Next step with timeline]
3. [Compensation/goodwill if appropriate]
I take full ownership of getting this resolved. You'll hear from me by [specific time], not with an update that we're "still working on it" โ with an actual resolution.
[Agent Name]
```
**Template 4: Billing Issue Resolution**
```
Hi [Name],
I've looked into your billing concern and here's what I found:
[Clear explanation of what happened with the charge]
Action taken: [refund processed / credit applied / correction made]
- Amount: $[X]
- You'll see this reflected within [timeframe]
- Reference: [transaction ID]
To prevent this going forward: [what changed or what to watch for].
Everything look right? Happy to walk through your billing history if you'd like a full review.
[Agent Name]
```
**Template 5: Saying No Gracefully**
```
Hi [Name],
I understand why you'd want [requested action] โ it makes sense given [their situation].
Unfortunately, I'm not able to [specific thing] because [honest reason โ not "our policy says"].
Here's what I can do instead:
- Option A: [alternative that partially addresses their need]
- Option B: [different approach]
- Option C: [escalation path if they want to pursue further]
Which of these works best for you? Or if none of these hit the mark, let me know what you're ultimately trying to achieve and I'll see what else we can figure out.
[Agent Name]
```
### Tone Calibration Guide
| Customer Tone | Match With | Example Shift |
|---------------|------------|---------------|
| Casual/Friendly | Warm, conversational | "Hey! Let me take a look..." |
| Professional/Formal | Clear, structured | "Thank you for contacting us. I've reviewed..." |
| Frustrated/Angry | Calm, empathetic, action-oriented | "I understand. Let me fix this right now." |
| Technical/Detailed | Precise, detailed, technical | "The API returns 429 when..." |
| Confused/Lost | Simple, step-by-step | "No worries! Here's exactly what to do..." |
### Response Quality Scoring (0-100)
| Dimension | Weight | Criteria |
|-----------|--------|----------|
| Accuracy | 25% | Correct information, proper diagnosis, right solution |
| Empathy | 20% | Acknowledged feelings, personalized, human tone |
| Completeness | 20% | Addressed all questions, proactive info, prevention tips |
| Clarity | 15% | Easy to follow, no jargon, proper formatting |
| Efficiency | 10% | Resolved in minimum exchanges, no unnecessary back-and-forth |
| Brand Voice | 10% | Consistent tone, matches company personality |
**Scoring:**
- 90-100: Exceptional โ use as training example
- 70-89: Good โ meets standards
- 50-69: Needs improvement โ coaching required
- Below 50: Failed โ requires retraining
---
## Phase 5 โ Escalation & Tiered Support
### Support Tier Architecture
```
L0 โ Self-Service / AI
โโโ Knowledge base, chatbot, automated responses
โโโ Target: Deflect 30-50% of inbound volume
โโโ Escalates to L1 when: confidence <90%, customer requests human
L1 โ Front-Line Support
โโโ Common issues, account management, how-to
โโโ Skills: Product knowledge, communication, troubleshooting basics
โโโ Metrics: FCR >70%, CSAT >85%, AHT <15 min
โโโ Escalates to L2 when: technical depth needed, bug confirmed, >30 min
L2 โ Technical / Specialist Support
โโโ Complex bugs, API issues, integrations, data problems
โโโ Skills: Technical debugging, log analysis, API knowledge
โโโ Metrics: Resolution <24h, CSAT >90%, escalation to eng <20%
โโโ Escalates to Engineering when: code fix needed, infra issue
L3 โ Engineering Support
โโโ Production bugs, infrastructure issues, security
โโโ Skills: Code access, deployment ability, database access
โโโ Metrics: MTTR, change failure rate
โโโ Escalates to Management when: customer impact >threshold
```
### Escalation Decision Matrix
| Trigger | Action | Timeline |
|---------|--------|----------|
| P0 incident | Immediate L2 + Engineering + Manager notification | 15 min |
| Customer threatens churn (ARR >$10K) | L2 + Account Manager + CS lead | 1h |
| Legal threat or compliance issue | L2 + Legal + Manager | 1h |
| Same issue reported 3+ times by customer | L2 + Bug report + PM notification | 4h |
| Agent stuck >30 min on single ticket | L2 peer assist or escalation | 30 min |
| Customer requests manager | Transfer to team lead โ never refuse | Immediate |
| Social media escalation (public) | Social team + PR if viral risk | 30 min |
### Escalation Handoff Template
```yaml
escalation:
ticket_id: ""
customer:
name: ""
tier: "" # free/pro/enterprise
arr: 0
sentiment: "" # frustrated/angry/neutral
previous_escalations: 0
issue:
summary: ""
category: ""
priority: ""
started: "YYYY-MM-DD HH:MM"
what_tried:
- action: ""
result: ""
- action: ""
result: ""
what_needed: ""
customer_expectation: ""
urgency_reason: ""
```
---
## Phase 6 โ Knowledge Base & Self-Service
### KB Architecture
```
Knowledge Base
โโโ Getting Started (onboarding flow)
โ โโโ Quick start guide
โ โโโ Account setup
โ โโโ First [key action]
โโโ How-To Guides (task-based)
โ โโโ By feature area
โ โโโ By user role
โโโ Troubleshooting (problem-based)
โ โโโ Common errors
โ โโโ Known issues
โ โโโ Diagnostic steps
โโโ API / Developer Docs (technical)
โ โโโ Authentication
โ โโโ Endpoints
โ โโโ Webhooks
โโโ Billing & Account
โ โโโ Plans & pricing
โ โโโ Payment methods
โ โโโ Invoices & receipts
โโโ FAQ (curated top questions)
```
### Article Quality Checklist
- [ ] **Title** is a question or action phrase (not a label)
- [ ] **First paragraph** answers the question directly
- [ ] **Steps** are numbered, specific, and testable
- [ ] **Screenshots** or GIFs for visual steps (annotated)
- [ ] **Edge cases** covered (what if X doesn't work?)
- [ ] **Related articles** linked at bottom
- [ ] **Last updated** date visible
- [ ] **Feedback widget** enabled (Was this helpful?)
- [ ] **SEO** โ title matches how customers would search
- [ ] **Reading level** โ Grade 8 or below (Hemingway test)
### Self-Service Deflection Strategy
**Target: 30-50% ticket deflection through self-service**
| Method | Expected Deflection | Setup Effort |
|--------|-------------------|--------------|
| Contextual help (in-app tooltips) | 10-15% | Medium |
| Search-optimized KB | 15-25% | Medium |
| AI chatbot (FAQ + KB search) | 10-20% | High |
| Guided troubleshooting flows | 5-10% | Medium |
| Community forum (peer support) | 5-10% | Low |
| Video tutorials | 3-5% | High |
### KB Maintenance Cadence
| Frequency | Action |
|-----------|--------|
| Weekly | Review "Was this helpful? No" feedback, fix top offenders |
| Monthly | Audit top 20 search queries โ ensure articles exist for each |
| Monthly | Review 0-view articles โ update, redirect, or archive |
| Quarterly | Full KB audit โ freshness check, accuracy review |
| Per release | Update affected articles before feature ships |
### Content Gap Detection
```
FOR EACH top support ticket category:
1. Search KB for matching article
2. IF no article exists โ CREATE (priority = ticket volume)
3. IF article exists but tickets persist โ IMPROVE (unclear or incomplete)
4. IF article exists and is good โ check discoverability (search, in-app links)
```
---
## Phase 7 โ Support Metrics & Analytics
### Core Metrics Dashboard
```yaml
weekly_dashboard:
date_range: "YYYY-MM-DD to YYYY-MM-DD"
volume:
total_tickets: 0
new_tickets: 0
resolved_tickets: 0
backlog: 0
tickets_per_agent: 0
speed:
avg_first_response_time: ""
median_first_response_time: ""
avg_resolution_time: ""
p95_resolution_time: ""
quality:
csat_score: 0 # target: >85%
fcr_rate: 0 # target: >70%
customer_effort_score: 0 # target: <3
nps_from_support: 0 # target: >40
efficiency:
cost_per_ticket: 0
tickets_per_agent_per_day: 0 # healthy: 15-25
self_service_deflection_rate: 0 # target: >30%
automation_rate: 0
team:
agent_satisfaction: 0
attrition_rate: 0 # annual, target: <25%
avg_handle_time: ""
utilization: 0 # target: 60-80%
trends:
ticket_volume_wow: "" # +X% or -X%
csat_trend: ""
top_issue_changes: []
```
### Metric Benchmarks by Company Stage
| Metric | Startup | Growth | Scale | World-Class |
|--------|---------|--------|-------|-------------|
| First Response (email) | <24h | <4h | <1h | <15 min |
| First Response (chat) | <5 min | <2 min | <1 min | <30 sec |
| CSAT | >75% | >80% | >85% | >90% |
| FCR | >50% | >65% | >75% | >85% |
| Self-Service Deflection | >10% | >25% | >40% | >60% |
| Cost per Ticket | N/A | <$25 | <$15 | <$8 |
| Agent Utilization | 40-90% | 60-80% | 65-80% | 70-80% |
### Root Cause Analysis
Run monthly โ categorize ALL tickets by root cause:
```yaml
root_cause_analysis:
month: "YYYY-MM"
total_tickets: 0
categories:
- cause: "Documentation gap"
count: 0
percentage: 0
action: "Create/update KB articles"
owner: ""
- cause: "Product bug"
count: 0
percentage: 0
action: "File engineering tickets, prioritize by volume"
owner: ""
- cause: "UX confusion"
count: 0
percentage: 0
action: "Share with product/design for improvement"
owner: ""
- cause: "Missing feature"
count: 0
percentage: 0
action: "Aggregate for product roadmap input"
owner: ""
- cause: "User error (despite good docs)"
count: 0
percentage: 0
action: "In-app guidance, onboarding improvement"
owner: ""
- cause: "Third-party/integration issue"
count: 0
percentage: 0
action: "Partner communication, status page"
owner: ""
- cause: "Billing/account"
count: 0
percentage: 0
action: "Process automation, self-service billing"
owner: ""
```
**The 10x Rule:** Every bug that generates >10 tickets/month should be escalated to engineering as a P1 fix. Every question asked >20 times/month should have a KB article AND in-app guidance.
---
## Phase 8 โ Team Structure & Hiring
### Team Sizing Formula
```
Required agents = (Monthly tickets ร Avg handle time in hours) /
(Working hours per agent per month ร Target utilization)
Example:
- 5,000 tickets/mo ร 0.25h avg handle = 1,250 hours needed
- 160 hours/agent/mo ร 0.75 utilization = 120 productive hours/agent
- 1,250 / 120 = ~11 agents needed
```
**Add buffer for:**
- PTO/sick leave: +15%
- Training time: +10%
- Peak periods: +20%
- Growth: +10% per quarter
### Team Structure by Size
**1-3 Agents (Startup):**
- Everyone is generalist
- Shared queue, no tiers
- Manager = agent + admin
**4-10 Agents (Growth):**
- L1/L2 split
- Team lead (50% tickets, 50% coaching)
- KB owner (shared responsibility)
- Specialization by product area begins
**11-30 Agents (Scale):**
- L1/L2/L3 tiers
- Dedicated team leads (1:6-8 ratio)
- KB/self-service team
- Quality assurance reviewer
- Workforce management
- Support ops/tooling
**30+ Agents (Enterprise):**
- All above + regional teams
- Dedicated training team
- Support engineering team
- Customer advocacy/VoC role
- Director + managers hierarchy
### Hiring Scorecard
| Dimension | Weight | What to Assess |
|-----------|--------|----------------|
| Communication | 30% | Writing clarity, empathy, tone matching |
| Problem-Solving | 25% | Diagnostic thinking, creative solutions |
| Technical Aptitude | 20% | Learning speed, comfort with tools |
| Emotional Intelligence | 15% | Handling frustration, de-escalation |
| Cultural Fit | 10% | Team collaboration, growth mindset |
### Interview: Support Simulation Exercise
Give candidates a real (anonymized) ticket and ask them to:
1. Write a response (assess communication + accuracy)
2. Explain their diagnosis process (assess problem-solving)
3. Role-play an angry customer call (assess EQ + de-escalation)
4. Navigate your helpdesk tool (assess technical aptitude)
**Score each 1-5. Minimum 3.5 average to hire.**
### Agent Onboarding Checklist (First 30 Days)
**Week 1: Foundation**
- [ ] Product walkthrough (become a power user)
- [ ] Tool training (helpdesk, KB, CRM)
- [ ] Shadow 20+ tickets with senior agent
- [ ] Read top 50 KB articles
- [ ] Practice responses with templates
**Week 2: Guided Practice**
- [ ] Handle L1 tickets with mentor review
- [ ] Complete 10 supervised responses
- [ ] Learn escalation procedures
- [ ] Study top 10 issue categories
- [ ] Pass product knowledge quiz (>80%)
**Week 3-4: Independent with Safety Net**
- [ ] Handle L1 queue independently
- [ ] QA review on 50% of tickets
- [ ] First 1:1 with team lead
- [ ] Set 30-day performance goals
- [ ] Identify personal development areas
---
## Phase 9 โ Quality Assurance Program
### QA Review Framework
**Review cadence:**
- New agents (0-90 days): 30% of tickets reviewed
- Experienced agents: 10% of tickets reviewed (random sample)
- All escalated tickets: 100% reviewed
- All negative CSAT: 100% reviewed
### QA Scorecard (per ticket)
| Category | Points | Criteria |
|----------|--------|----------|
| **Accuracy** | /25 | Correct diagnosis, right solution, no misinformation |
| **Communication** | /25 | Clear, empathetic, professional, matched tone |
| **Process** | /20 | Proper tags, priority, escalation if needed, notes |
| **Efficiency** | /15 | Minimum touches to resolve, no unnecessary delays |
| **Going Above** | /15 | Proactive help, prevention tips, personal touch |
| **Total** | /100 | |
**Score thresholds:**
- 90+: Exceptional โ recognition, potential mentor
- 75-89: Meets expectations
- 60-74: Coaching needed โ create improvement plan
- Below 60: Performance concern โ immediate coaching + daily review
### QA Calibration Sessions
**Monthly, 60 minutes:**
1. Select 5 tickets (mix of good and poor)
2. Each reviewer scores independently
3. Compare scores โ discuss discrepancies >10 points
4. Align on standards
5. Update rubric if needed
### Agent Performance Dashboard
```yaml
agent_scorecard:
agent: ""
period: "YYYY-MM"
productivity:
tickets_resolved: 0
avg_handle_time: ""
tickets_per_hour: 0
quality:
qa_score_avg: 0
csat_avg: 0
fcr_rate: 0
escalation_rate: 0
reliability:
adherence_to_schedule: 0 # percentage
response_time_compliance: 0 # % within SLA
development:
kb_articles_created: 0
peer_assists: 0
training_completed: []
trend: "improving|stable|declining"
coaching_notes: ""
```
---
## Phase 10 โ Automation & AI Integration
### Automation Priority Stack
| Automation | Impact | Effort | Priority |
|-----------|--------|--------|----------|
| Auto-tagging & routing | High | Low | P0 |
| Canned response suggestions | High | Low | P0 |
| Password reset self-service | High | Low | P0 |
| SLA breach alerts | High | Low | P0 |
| KB article suggestions to agents | High | Medium | P1 |
| AI first-response draft | High | Medium | P1 |
| Chatbot for FAQ deflection | High | High | P1 |
| Sentiment detection & priority boost | Medium | Medium | P1 |
| Auto-close resolved tickets | Medium | Low | P2 |
| Proactive outreach on known issues | Medium | Medium | P2 |
| Customer health scoring | Medium | High | P2 |
| Predictive ticket volume | Low | High | P3 |
### AI-Assisted Support Workflow
```
TICKET ARRIVES
โโโ AI Classification
โ โโโ Category, priority, sentiment (auto-tagged)
โ โโโ Routing suggestion
โโโ AI Draft Response
โ โโโ Searches KB + previous similar tickets
โ โโโ Generates draft response
โ โโโ Agent reviews, edits, sends (human-in-the-loop)
โโโ AI Quality Check
โ โโโ Tone analysis before send
โ โโโ Completeness check (all questions addressed?)
โ โโโ Policy compliance (no promises we can't keep)
โโโ AI Post-Resolution
โโโ Auto-summarize for internal notes
โโโ Suggest KB updates if new solution
โโโ Update customer health score
```
### Chatbot Design Rules
1. **Always offer human escalation** โ never trap customers in bot loops
2. **Disclose AI** โ "I'm an AI assistant. Want to talk to a person?"
3. **Confidence threshold** โ if <85% confident, route to human
4. **Max 3 bot turns** before offering human โ don't frustrate
5. **Handoff context** โ pass full conversation to human agent
6. **Track deflection quality** โ monitor CSAT for bot-resolved tickets
---
## Phase 11 โ Difficult Situations Playbook
### Playbook 1: Angry/Abusive Customer
```
PROTOCOL:
1. Let them vent (don't interrupt the first message)
2. Acknowledge with empathy: "I understand why you're frustrated"
3. DO NOT apologize for things that aren't your fault
4. Focus on action: "Here's what I'm doing right now..."
5. Set boundaries if abusive: "I want to help you, but I need us to communicate respectfully"
6. If continued abuse โ "I'm going to pause this conversation. You can reach us again when ready, or I can connect you with my manager."
NEVER:
- Match their energy
- Take it personally
- Make promises you can't keep
- Say "calm down"
```
### Playbook 2: Customer Threatening to Churn
```
PROTOCOL:
1. Acknowledge the frustration seriously
2. Ask: "What would need to change for you to stay?"
3. Document their specific pain points
4. IF within authority โ offer concrete retention (discount, extended trial, feature access)
5. IF not within authority โ escalate to CS/Account Manager with full context
6. Follow up within 24h regardless of outcome
SIGNALS to escalate immediately:
- ARR > $5K
- They've mentioned competitors by name
- They have a cancellation date set
- Multiple unresolved tickets in last 30 days
```
### Playbook 3: Major Outage/Incident
```
PROTOCOL:
1. Activate incident response (notify engineering + management)
2. Post status page update within 15 min
3. Prepare acknowledgment template (NO ETAs until engineering confirms)
4. Respond to ALL tickets with consistent messaging
5. Update status page every 30 min minimum
6. After resolution: send post-mortem summary to affected customers
MESSAGING RULES:
- Be honest about what happened
- Don't blame third parties (even if it's their fault)
- Provide concrete next steps for prevention
- Offer appropriate compensation (credits, extended subscription)
```
### Playbook 4: Refund Request
```
DECISION TREE:
โโโ Within refund policy window?
โ โโโ YES โ Process immediately, no friction
โ โโโ NO โ Continue below
โโโ Valid reason (product didn't work, broken promise)?
โ โโโ YES โ Process refund + investigate root cause
โ โโโ MAYBE โ Offer alternative (credit, downgrade, extended support)
โโโ Long-term customer (>6 months)?
โ โโโ YES โ Lean toward refund + retention offer
โ โโโ NO โ Follow standard policy
โโโ Amount >$[threshold]?
โโโ YES โ Escalate to manager for approval
โโโ NO โ Agent discretion within guidelines
RULE: A refund processed quickly with goodwill costs less than a chargeback + bad review.
```
### Playbook 5: Social Media Crisis
```
PROTOCOL:
1. Acknowledge publicly within 30 min: "We see this and we're looking into it"
2. Move to private channel: "Can you DM us your account details?"
3. Resolve in private
4. Update public thread with resolution (shows others you care)
5. Monitor for 24h โ respond to all related threads
NEVER:
- Delete negative posts (unless policy violation)
- Argue publicly
- Share customer details in public responses
- Ignore โ silence = admission to the internet
```
---
## Phase 12 โ Proactive Support & Customer Health
### Proactive Support Triggers
| Signal | Action | Channel |
|--------|--------|---------|
| Customer hasn't logged in 14 days | Check-in email with tips | Email |
| Feature adoption <20% after 30 days | Guided tour or training offer | In-app + email |
| Multiple failed actions in product | Trigger help widget or chat | In-app |
| Known issue affecting their account | Proactive notification before they report | Email |
| Contract renewal in 60 days | CS + Support alignment check | Internal |
| Negative CSAT on last 2 tickets | Account review + senior agent assignment | Internal |
| Usage spike (potential billing surprise) | Proactive notification | Email |
### Customer Health Score for Support
```yaml
support_health_score:
customer: ""
score: 0 # 0-100
dimensions:
ticket_volume_trend:
weight: 20
score: 0
# High and rising = bad, Low and stable = good
sentiment_trend:
weight: 25
score: 0
# Track CSAT over last 90 days
resolution_satisfaction:
weight: 20
score: 0
# FCR rate for this customer
self_service_adoption:
weight: 15
score: 0
# % of issues resolved via KB/self-service
escalation_frequency:
weight: 20
score: 0
# Lower = healthier
risk_level: "healthy|at_risk|critical"
recommended_action: ""
```
---
## Phase 13 โ Support Operations & Workforce Management
### Staffing Model
```
FORECAST STEPS:
1. Historical ticket volume by day/hour (last 90 days)
2. Identify patterns (Monday spike, end-of-month billing, seasonal)
3. Apply growth rate to forecast next period
4. Factor in planned events (launches, promotions, migrations)
5. Calculate required headcount per shift
FORMULA per hour:
Required agents = (Forecasted tickets ร AHT) / (60 ร Occupancy target)
Example:
- 50 tickets/hour ร 12 min AHT = 600 minutes of work
- 600 / (60 ร 0.75 occupancy) = 13.3 โ 14 agents needed
```
### Shift Scheduling (24/7 Coverage)
```yaml
coverage_plan:
timezone: "UTC"
shifts:
morning:
hours: "06:00-14:00"
coverage: "full" # All channels
agents: 0
afternoon:
hours: "14:00-22:00"
coverage: "full"
agents: 0
night:
hours: "22:00-06:00"
coverage: "reduced" # Email only, P0 on-call for chat/phone
agents: 0
peak_hours:
- day: "Monday"
hours: "09:00-12:00"
extra_agents: 2
- day: "Tuesday"
hours: "09:00-11:00"
extra_agents: 1
```
### Support Budget Planning
| Cost Category | Typical % of Total |
|--------------|-------------------|
| Agent salaries & benefits | 60-70% |
| Tools & technology | 10-15% |
| Training & development | 5-8% |
| Quality assurance | 3-5% |
| Management & overhead | 10-15% |
**Cost per ticket benchmark:**
- Email: $5-15
- Chat: $3-10
- Phone: $8-25
- Self-service: $0.10-0.50
- AI-assisted: $1-5
---
## Phase 14 โ Voice of Customer (VoC) Pipeline
### Support โ Product Feedback Loop
```
WEEKLY:
1. Aggregate top 10 ticket categories by volume
2. Tag tickets with product_feedback label
3. Extract quotes (anonymized) that illustrate pain points
4. Package into "Voice of Customer" report
MONTHLY:
1. Present VoC report to Product team
2. Track which feedback items enter roadmap
3. Close the loop โ notify customers when their feedback ships
4. Measure impact โ did ticket volume decrease for addressed issues?
```
### VoC Report Template
```yaml
voc_report:
period: "YYYY-MM"
top_pain_points:
- issue: ""
ticket_count: 0
customer_quotes:
- "[Anonymized quote]"
impact: "churn_risk|frustration|workaround_needed"
recommendation: ""
feature_requests:
- feature: ""
request_count: 0
customer_segments: []
business_impact: ""
product_bugs_by_volume:
- bug: ""
tickets: 0
workaround: ""
engineering_ticket: ""
positive_feedback:
- feature: ""
praise_count: 0
quotes: []
trends:
improving: []
declining: []
new_this_month: []
```
---
## Phase 15 โ Continuous Improvement
### Weekly Support Review (30 min)
1. **Numbers check** โ Volume, CSAT, FCR, backlog vs last week
2. **Top 3 issues** โ What's generating the most tickets? Any new patterns?
3. **Escalation review** โ Any escalations that should have been avoided?
4. **Team health** โ Agent workload balanced? Anyone burning out?
5. **Quick wins** โ One KB article, one template, or one automation to ship this week
### Monthly Support Health Score (0-100)
| Dimension | Weight | Score |
|-----------|--------|-------|
| Customer Satisfaction (CSAT + CES) | 25% | /25 |
| Speed (FRT + Resolution time vs SLA) | 20% | /20 |
| Efficiency (FCR + Cost per ticket) | 20% | /20 |
| Self-Service (Deflection rate + KB health) | 15% | /15 |
| Team Health (Utilization + Satisfaction + Attrition) | 10% | /10 |
| Continuous Improvement (VoC actions + KB updates) | 10% | /10 |
| **Total** | 100% | **/100** |
### Quarterly Support Strategy Review
1. Review 90-day metrics trends โ where are we improving/declining?
2. Customer segmentation analysis โ are enterprise customers getting different service than SMB?
3. Tool & technology assessment โ are current tools meeting needs?
4. Team development โ skill gaps, training needs, career pathing
5. Budget review โ cost per ticket trending, efficiency gains
6. Roadmap alignment โ are product improvements reducing ticket volume?
7. Set OKRs for next quarter
### 100-Point Quality Rubric
| Dimension | Weight | 0-2 (Poor) | 3-5 (Basic) | 6-8 (Good) | 9-10 (Excellent) |
|-----------|--------|-----------|-------------|------------|------------------|
| Response Quality | 15 | Inaccurate, robotic | Correct but generic | Personalized, clear | Exceptional, memorable |
| Speed & SLAs | 15 | Consistently missing | Mostly meeting | Meeting all SLAs | Exceeding targets |
| First Contact Resolution | 15 | <50% FCR | 50-65% | 65-80% | >80% |
| Self-Service Effectiveness | 10 | No KB or unused | Basic KB, <15% deflection | Good KB, 15-35% | Excellent, >35% |
| Customer Satisfaction | 15 | CSAT <70% | 70-80% | 80-90% | >90% |
| Team Performance | 10 | High turnover, low morale | Stable but disengaged | Engaged, developing | High-performing, growing |
| Process Maturity | 10 | Ad hoc, no documentation | Some processes defined | Documented, followed | Optimized, automated |
| Continuous Improvement | 10 | Reactive only | Some VoC sharing | Regular improvement cycle | Data-driven, proactive |
---
## Edge Cases & Special Situations
### Multi-Language Support
- Prioritize languages by customer revenue concentration
- Use AI translation for first-pass, human review for complex issues
- Maintain separate KB per language (or use auto-translate with quality gate)
- Time zone coverage must match language markets
### B2B vs B2C Support
- **B2B:** Named accounts, dedicated agents for enterprise, technical depth required, QBR integration
- **B2C:** Volume-optimized, self-service heavy, faster resolution expected, social media critical
### Regulated Industries (Healthcare, Finance)
- Additional compliance training required
- Audit trail on all customer interactions
- PII handling protocols โ what agents can and cannot access
- Response templates reviewed by legal/compliance quarterly
### Seasonal Peaks (E-commerce, Events)
- Hire temp agents 4-6 weeks before peak
- Create peak-specific playbooks and templates
- Increase self-service capacity (chatbot, KB updates)
- Adjust SLAs transparently during known peak periods
### Support During Product Migration/Major Change
- Dedicated war room for first 72 hours post-change
- Pre-written communication templates for expected issues
- Increased staffing +50% for 2 weeks post-change
- Daily hot-fix coordination with engineering
---
## Natural Language Commands
Use these to interact with this skill:
1. **"Assess our support function"** โ Run Phase 1 assessment
2. **"Design our channel strategy"** โ Build channel architecture (Phase 2)
3. **"Set up ticket management"** โ Configure ticket system (Phase 3)
4. **"Write response templates"** โ Generate templates for common scenarios (Phase 4)
5. **"Build escalation process"** โ Design tier structure and escalation rules (Phase 5)
6. **"Plan our knowledge base"** โ Design KB architecture and content plan (Phase 6)
7. **"Create support dashboard"** โ Build metrics and reporting (Phase 7)
8. **"Help me hire support agents"** โ Hiring plan and onboarding (Phase 8)
9. **"Set up QA program"** โ Quality assurance framework (Phase 9)
10. **"Automate our support"** โ AI and automation strategy (Phase 10)
11. **"Handle [difficult situation]"** โ Situation-specific playbook (Phase 11)
12. **"Review our support health"** โ Full health assessment with scoring (Phase 15)
---
## โก Level Up Your Support Operations
This free skill gives you the complete methodology. For industry-specific support playbooks with compliance frameworks, SLA templates, and vertical-specific ticket taxonomies:
**[AfrexAI Context Packs โ $47 each](https://afrexai-cto.github.io/context-packs/)**
- ๐ฅ **Healthcare Pack** โ HIPAA-compliant support workflows
- ๐ฐ **Fintech Pack** โ Regulated financial services support
- ๐ **Ecommerce Pack** โ High-volume consumer support operations
- ๐ป **SaaS Pack** โ Technical product support at scale
### ๐ More Free Skills by AfrexAI
- `afrexai-customer-success` โ Retention, health scoring, expansion revenue
- `afrexai-sales-playbook` โ Complete B2B sales methodology
- `afrexai-agent-engineering` โ Build autonomous AI agents
- `afrexai-openclaw-mastery` โ Master your OpenClaw setup
- `afrexai-conversational-ai` โ Design chatbots and voice agents
**Install:** `clawhub install afrexai-support-operations`
**Browse all skills:** [clawhub.com](https://clawhub.com)
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### README.md
```markdown
# Customer Support Operations Engine ๐ง
Build and run a world-class customer support operation โ from first ticket to a mature, multi-channel, data-driven support organization.
## What This Skill Does
Gives your AI agent a complete customer support operations methodology:
- **15-phase system** covering every aspect of support operations
- **Channel architecture** with routing logic and stage-appropriate recommendations
- **Ticket management** with priority matrix, lifecycle, and quality checklist
- **HEART response framework** with 5 ready-to-use templates (bug reports, feature requests, angry customers, billing, saying no)
- **Tiered support structure** (L0-L3) with escalation decision matrix
- **Knowledge base strategy** with deflection targets and maintenance cadence
- **Metrics dashboard** with benchmarks by company stage
- **Team sizing formula** with hiring scorecard and 30-day onboarding checklist
- **QA program** with scoring rubric and calibration sessions
- **AI integration playbook** with automation priority stack
- **5 difficult situation playbooks** (angry customers, churn threats, outages, refunds, social media crises)
- **Proactive support triggers** and customer health scoring
- **Workforce management** with staffing models and budget planning
- **VoC pipeline** connecting support insights to product roadmap
- **100-point quality rubric** across 8 weighted dimensions
Zero dependencies. Works with any AI agent platform.
## Install
```bash
clawhub install afrexai-support-operations
```
## Quick Start
Tell your agent:
- *"Assess our support function"* โ get a health triage
- *"Design our channel strategy"* โ build multi-channel architecture
- *"Write response templates for [scenario]"* โ get ready-to-use templates
- *"Set up our QA program"* โ quality assurance framework
- *"Review our support health"* โ full scoring with improvement plan
## โก Level Up
This free skill covers the complete methodology. For industry-specific support playbooks:
**[AfrexAI Context Packs โ $47](https://afrexai-cto.github.io/context-packs/)**
Healthcare (HIPAA) ยท Fintech (regulated) ยท Ecommerce (high-volume) ยท SaaS (technical)
### More Free Skills by AfrexAI
| Skill | Install |
|-------|---------|
| Customer Success | `clawhub install afrexai-customer-success` |
| Sales Playbook | `clawhub install afrexai-sales-playbook` |
| Agent Engineering | `clawhub install afrexai-agent-engineering` |
| OpenClaw Mastery | `clawhub install afrexai-openclaw-mastery` |
| Conversational AI | `clawhub install afrexai-conversational-ai` |
**[Browse all AfrexAI skills โ](https://clawhub.com)**
---
*Built by [AfrexAI](https://afrexai-cto.github.io/context-packs/) โ AI agent context packs for every industry.*
```
### _meta.json
```json
{
"owner": "1kalin",
"slug": "afrexai-support-operations",
"displayName": "Customer Support Operations Engine",
"latest": {
"version": "1.0.0",
"publishedAt": 1771504178780,
"commit": "https://github.com/openclaw/skills/commit/8d8552297f60424968dd29afc1972fc2f3f19d45"
},
"history": []
}
```