customer-support-agent

customer-support-agent is a skill for Claude Code, Codex from khalilbenaz/claude-skills-collection. It costs 71 tokens per session (2,432 once invoked), scanned A, original, MIT.

A design framework for AI customer-support agents that answer common questions from a knowledge base, classify requests, personalize replies, and escalate selected cases to people.

In plain words
What is it for?
Planning support agents for chat, email, messaging, or similar channels, including knowledge retrieval, intent and urgency handling, escalation, and CRM or helpdesk integration.
Why use it?
It gives support automation explicit rules for understanding requests and deciding when human help is needed. It also describes connections to customer-management and ticketing systems.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Planning support agents for chat, email, messaging, or similar channels, including knowledge retrieval, intent and urgency handling, escalation, and CRM or helpdesk integration.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khalilbenaz/claude-skills-collection/customer-support-agent
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add khalilbenaz/claude-skills-collection --skill customer-support-agent
Clone the repo
git clone --depth 1 https://github.com/khalilbenaz/claude-skills-collection

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for customer-support-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/customer-support-agent/github.svg)](https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/customer-support-agent)
Your own site
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/customer-support-agent"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/customer-support-agent/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for customer-support-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/khalilbenaz/claude-skills-collection/customer-support-agent"><img src="https://agentmods.dev/badge/skills/khalilbenaz/claude-skills-collection/customer-support-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,432 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00071 $0.02432
Opus 5 $0.00036 $0.01216
Sonnet 5 $0.00014 $0.00486
Haiku 4.5 $0.00007 $0.00243

Measured 11d ago against content hash ccff7f88b7a3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

customer-support-agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agent-skills/customer-support-agent/SKILL.md · 225 lines

How it starts

The opening of the file, as written. The whole thing — 225 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Customer Support Agent

Quand utiliser ce skill

Conçois un agent de support client autonome qui répond aux questions fréquentes via RAG, classe les intentions, gère l'empathie conversationnelle, escalade vers un humain selon des règles explicites, et s'intègre au CRM/ticketing. Applicable à tout secteur à fort volume : SaaS, e-commerce, télécoms, fintech, services.

Stack de référence 2026

Couche Options recommandées
Orchestration LangGraph, Rasa Pro, CrewAI
RAG LlamaIndex + pgvector, Weaviate, Pinecone
Embeddings text-embedding-3-small (OpenAI), Cohere embed-v4
LLM réponse rapide Claude Haiku 3.5
LLM question complexe Claude Sonnet 4
CRM/Ticketing Zendesk, Intercom, Freshdesk, HubSpot
Canaux Chat web, Email (Sendgrid), WhatsApp Business, Slack B2B

Workflow en étapes

1. Définir l'architecture (Jour 1)

Cinq composantes obligatoires :

  • RAG : pipeline d'indexation + query sur la knowledge base
  • State machine : gestion de l'état de conversation (topic, turns, résolution)
  • Classifieur d'intention : sujet + sentiment + urgence
  • Moteur d'escalade : règles déterministes + score de confiance
  • Connecteur CRM : lecture contexte client + écriture ticket/activité

Choix d'architecture selon le cas d'usage :

Besoin Architecture
Chat temps réel (< 2 s) Synchrone, streaming LLM, Haiku en front
Email/ticket async Queue (Redis/SQS) + worker LLM
Mix canal Gateway unifié + state partagé (Redis)

2. Construire le pipeline RAG

Sources à ingérer : articles d'aide, FAQ, politiques de remboursement, notes de version, guides produit.

from llama_index.core import VectorStoreIndex, SimpleDirectoryReader
from llama_index.core.node_parser import SentenceSplitter

# Chunking sémantique : 800 tokens, overlap 100
parser = SentenceSplitter(chunk_size=800, chunk_overlap=100)
documents = SimpleDirectoryReader("./knowledge_base").load_data()
index = VectorStoreIndex.from_documents(documents, transformations=[parser])
query_engine = index.as_query_engine(
    similarity_top_k=5,
    response_mode="compact"
)

def retrieve_answer(question: str) -> tuple[str, float]:
    response = query_engine.query(question)
    score = response.source_nodes[0].score if response.source_nodes else 0.0
    return str(response), score

Read the full file on GitHub · 225 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 225 lines · 71 tokens per session scan A ccff7f88b7a3

Subscribe to this mod's changes

customer-support-agent is a skill published in the GitHub repository khalilbenaz/claude-skills-collection (22 stars, last pushed 17d ago), licensed MIT. It adds 71 tokens to every session and 2,432 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

explain

Explains code/architecture with Mermaid diagrams and sequence flows. Triggers: what does X do, how does Y work, explain code, sequence diagram.

softspark/ai-toolkit · 34 tokens

mem-search

Search past coding sessions using natural language. Finds relevant observations, decisions, and context from previous work.

softspark/ai-toolkit · 23 tokens

common-sense-index-investing-bogle

Apply John Bogle index investing rules for low-cost funds, asset allocation, fees, taxes, ETFs, advisers, and buy-hold discipline.

simbajigege/book2skills · 38 tokens

finance-econ-literacy

A Korean-language guide to understanding economic indicators such as interest rates, exchange rates, inflation, GDP, employment, and trade. It explains how these figures can affect loans, savings, investments, and spending.

modu-ai/moai-cowork · 128 tokens

stock-analysis-lead

Orchestrate a US-stock investment analysis — classify sector archetype, fetch SEC filings, dispatch a tiered fan-out of six vertical equity-research agents (business model, earnings quality, balance sheet, management, industry, peer comparison) over a validated JSON findings contract, then synthesize a buy/hold/sell…

johnqtcg/awesome-skills · 229 tokens

stock-business-review

Review a US-listed company's business model and revenue structure for an equity-research workup. Covers product/service mix, customer concentration, geographic exposure, industry position, revenue-growth decomposition (organic vs acquired vs price vs volume), and information-tier discipline (which numbers are facts vs…

johnqtcg/awesome-skills · 121 tokens