基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-call命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | repairshopr-call |
| description | Manage phone calls and caller ID information in RepairShopr |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"receptionists, technicians","api":"GET /callerid"} |
I retrieve caller ID information for incoming phone calls. When a call comes in with a phone number, I can look up associated ticket and customer information to help identify the caller.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYGet Caller ID (GET /callerid) Required parameters:
did (string) - The incoming phone number (Dialed Number)Optional parameters:
outbound (boolean) - Whether this is an outbound call lookupExample call:
const result = await skill({ name: "repairshopr-call" }, {
did: "1234567890",
outbound: false
})
Response includes:
{
"data": {
"name": "Customer Name",
"ticket_status": "Open" // or null if no ticket
}
}
did parameter must be the phone number receiving the callname (customer name) if found, and ticket_status if there's an associated ticketrepairshopr-customer-search - For more comprehensive customer lookup by email/phonerepairshopr-ticket-create - To create a new ticket from a call