用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-item命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Validate Lenovo serial and create asset in RepairShopr
基于 SOC 职业分类
正在显示 SKILL.md
| name | repairshopr-item |
| description | Manage part orders (items) in RepairShopr - track parts procurement |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"technicians, parts managers, administrators","api":"GET /items"} |
I manage part orders (items) in RepairShopr. Items track parts that need to be ordered, received, or are in transit. They are typically created from tickets when parts are needed. I can list items with various filters.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYPermission: "Parts Orders - List/Search" required.
List Items (GET /items) Optional parameters:
completed (boolean) - Filter to only completed part ordersquery (string) - Search querypage (integer) - Page number (50 results per page)Example call:
const result = await skill({ name: "repairshopr-item" }, {
completed: false,
query: "screen",
page: 1
})
Response includes:
items array with part order objects containing:
id, ticketnum, descriptionparturl - URL where part was orderedstatus fields: ordered_on, received_on, trackingnumprice, quantity, product_idticket_id, user_idfrom_location_id, destination_location_idlogistic_state - shipping statecreated_at, updated_atcompleted filter helps find items that have been receivedquery performs partial matching across item fields/items endpoint itselfrepairshopr-ticket - Items are typically created from tickets when parts are neededrepairshopr-product - For product catalog informationrepairshopr-purchase-order - For vendor purchase orders