用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-appointment-type命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | repairshopr-appointment-type |
| description | Manage appointment types in RepairShopr (requires Global Admin) |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"administrators, schedulers","api":"GET /appointment_types, POST /appointment_types, GET /appointment_types/{id}, PUT /appointment_types/{id}, DELETE /appointment_types/{id}"} |
I manage appointment type configurations in RepairShopr. Appointment types define categories for scheduling, such as "Office Hours", "Repair Consultation", etc. These control email instructions, location types, and reminder schedules.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYNote: All operations require "Global Admin" permission.
List Appointment Types (GET /appointment_types) No parameters required. Returns all appointment types.
Create Appointment Type (POST /appointment_types) Required parameters:
name (string) - Appointment type nameOptional parameters:
email_instructions (string) - Instructions included in appointment emailslocation_type (string) - Location type identifier (e.g., "manual_entry")location_hard_code (string) - Hard-coded location if neededbuffer (integer) - Buffer time in minutesappointment_reminders_schedule_id (integer) - Associated reminder schedule IDGet Single Type (GET /appointment_types/{id})
id (integer, required) - Appointment type IDUpdate Type (PUT /appointment_types/{id})
id (integer, required) - Appointment type ID
Optional body same as CreateDelete Type (DELETE /appointment_types/{id})
id (integer, required) - Appointment type IDExample call:
const result = await skill({ name: "repairshopr-appointment-type" }, {
name: "Phone Repair Consultation",
email_instructions: "Please arrive 10 minutes early. Bring device and any accessories.",
location_type: "manual_entry",
buffer: 15
})
Response includes:
id, name, email_instructions, location_type, buffer, etc.name is required for creationrepairshopr-appointment - Use with appointment types for scheduling