用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-worksheet-result命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Validate Lenovo serial and create asset in RepairShopr
正在显示 SKILL.md
基于 SOC 职业分类
| name | repairshopr-worksheet-result |
| description | Manage worksheet template results for tickets in RepairShopr |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"technicians, field technicians, administrators","api":"GET /tickets/{ticket_id}/worksheet_results, POST /tickets/{ticket_id}/worksheet_results, GET /tickets/{ticket_id}/worksheet_results/{id}, PUT /tickets/{ticket_id}/worksheet_results/{id}, DELETE /tickets/{ticket_id}/worksheet_results/{id}"} |
I manage worksheet results for tickets. Worksheets are structured forms (like checklists, diagnostic forms, or evaluation sheets) that technicians fill out during or after service. They define fields that can be answered (text, checkboxes, etc.). I can list existing worksheet results for a ticket, create new ones from templates, update answers, and delete them.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYPermissions: "Tickets - View Details" or "Tickets - View 'Their Ticket' Details (assigned to them)" for read operations. Same for create/update/delete. Single-Customer Users restricted to own tickets.
List Worksheet Results (GET /tickets/{ticket_id}/worksheet_results)
ticket_id (integer, required)
Optional:page (integer) - Page number (25 results per page)Create Worksheet Result (POST /tickets/{ticket_id}/worksheet_results)
ticket_id (integer, required)
Body:worksheet_template_id (integer, optional) - Which template to base this ontitle (string, optional) - Title/name of the worksheet resultGet Single Result (GET /tickets/{ticket_id}/worksheet_results/{id})
ticket_id (integer)id (integer) - Worksheet result IDUpdate Worksheet Result (PUT /tickets/{ticket_id}/worksheet_results/{id})
ticket_id (integer)id (integer)
Body:worksheet_template_id (integer, optional)user_id (integer, optional)title (string, optional)complete (boolean, optional) - Mark as completepublic (boolean, optional) - Visibilityrequired (boolean, optional)answers (object, optional) - Object mapping field slugs to answer valuesDelete Worksheet Result (DELETE /tickets/{ticket_id}/worksheet_results/{id})
ticket_id (integer)id (integer)Example call:
// Get all worksheet results for a ticket
const results = await skill({ name: "repairshopr-worksheet-result" }, {}, { ticket_id: 456, method: 'GET' })
// Create a new worksheet result based on a template
const worksheet = await skill({ name: "repairshopr-worksheet-result" }, {
worksheet_template_id: 1,
title: "Diagnostic Checklist"
}, { ticket_id: 456, method: 'POST' })
// Update the worksheet with answers
await skill({ name: "repairshopr-worksheet-result" }, {
answers: {
power_adapter_working: true,
battery_health: "75%",
notes: "Customer reports occasional shut downs under load"
},
complete: true
}, { ticket_id: 456, id: worksheet.worksheet_result.id, method: 'PUT' })
Response includes:
id, worksheet_template_id, name, public, complete, required, field_list (array of field definitions with name, slug, id, position), and when available answers or history in each field.field_list describes each field: name, slug (key for answers), id, positionanswers object keyed by field slug contains the user's responsescomplete flag indicates the worksheet is finishedpublic controls visibility (customer may see if true)repairshopr-ticket - To manage the parent ticketrepairshopr-new-ticket-form - For intake forms which may include worksheets