基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-customer-create命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | repairshopr-customer-create |
| description | Create a new customer in RepairShopr |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"technicians, kiosk applications","api":"POST /customers"} |
I create a new customer record in RepairShopr with the provided details.
Use this when:
Required API base URL (set in environment):
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYParameters (all optional except at least one contact field):
firstname (string) - Customer's first namelastname (string) - Customer's last nameemail (string) - Email address (validated)phone (string) - Phone numbermobile (string) - Mobile numberaddress, address_2, city, state, zip - Address fieldsget_sms (boolean) - Whether to send SMS notificationsnotes (string) - Additional notesExample call:
const result = await skill({ name: "repairshopr-customer-create" }, {
firstname: "John",
lastname: "Doe",
email: "john@example.com",
phone: "555-1234"
})
Response includes:
customer object with created customer data including id, fullname, etc.