用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HashWarlock/clawdi-plugins --skill customer-support-ticket-triage命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | customer-support-ticket-triage |
| description | Triage and prioritize open support tickets by severity, customer tier, and topic |
| metadata | {"openclaw":{"tags":["customer-support","triage","tickets"]}} |
When the user asks to triage, prioritize, or review open support tickets:
Use capability_execute with the following parameters:
Collect all ticket threads returned. If the result status is "needs_setup", inform the
user that email access is required and suggest running /connect_apps.
Use capability_execute with the following parameters:
If priority definitions or SLA documents are found, use them to inform the classification in Step 4. If none are found, use default priority heuristics.
For each unique sender from Step 1, use capability_execute with:
Batch these lookups. If CRM is not connected, note the limitation and proceed with email-only context.
For each ticket, determine:
Severity based on content analysis:
Customer tier from CRM data:
Topic category:
Estimated effort:
Use capability_execute with the following parameters:
Note any ongoing conversations or known issues that relate to open tickets.
Format the output as follows:
## Ticket Triage Summary
**Date:** <current date>
**Total open tickets:** <count>
**Source:** <email/ticketing system>
### Priority Queue
#### P0 - Critical (<count>)
| # | Subject | Customer | Tier | Category | Est. Effort | Notes |
|---|---------|----------|------|----------|-------------|-------|
| 1 | <subject> | <company> | <tier> | <category> | <effort> | <notes> |
#### P1 - High (<count>)
| # | Subject | Customer | Tier | Category | Est. Effort | Notes |
|---|---------|----------|------|----------|-------------|-------|
| 1 | <subject> | <company> | <tier> | <category> | <effort> | <notes> |
#### P2 - Medium (<count>)
| # | Subject | Customer | Tier | Category | Est. Effort | Notes |
|---|---------|----------|------|----------|-------------|-------|
#### P3 - Low (<count>)
| # | Subject | Customer | Tier | Category | Est. Effort | Notes |
|---|---------|----------|------|----------|-------------|-------|
### Patterns & Insights
- <any recurring issues spotted across multiple tickets>
- <any known issues from internal chat that match open tickets>
- <any SLA deadlines approaching>
### Recommended Actions
1. <most urgent action with specific ticket reference>
2. <second priority action>
3. <batch actions for similar tickets>
Always sort tickets within each priority level by customer tier (Enterprise first), then by age (oldest first). Flag any tickets approaching SLA breach deadlines.