用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-vendor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Validate Lenovo serial and create asset in RepairShopr
基于 SOC 职业分类
正在显示 SKILL.md
| name | repairshopr-vendor |
| description | Manage vendors (suppliers) in RepairShopr |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"purchasers, parts managers, administrators","api":"GET /vendors, POST /vendors, GET /vendors/{id}, PUT /vendors/{id}"} |
I manage vendors (suppliers) in RepairShopr. Vendors represent companies or individuals from whom you purchase parts and supplies. I can list vendors, create new vendor records, view vendor details, and update vendor information.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYPermissions:
List Vendors (GET /vendors) Optional:
page (integer) - Page number (100 results per page)Create Vendor (POST /vendors)
Body fields (all optional but you'd typically provide at least name and contact info):
name (string) - Vendor company/name (required? not explicitly stated but typical)rep_first_name, rep_last_name (string) - Sales representative nameemail (string) - Contact emailphone (string) - Phone numberaddress, city, state, zip - Physical addresswebsite (string) - Vendor websitenotes (string) - Additional notesaccount_number (string) - Your account number with vendorGet Vendor (GET /vendors/{id})
id (integer) - Vendor IDUpdate Vendor (PUT /vendors/{id})
id (integer) - Vendor ID
Body: fields to update (name, contact info, etc.)Example call:
// List all vendors
const vendors = await skill({ name: "repairshopr-vendor" })
// Create a new vendor
const vendor = await skill({ name: "repairshopr-vendor" }, {
name: "TechParts Wholesale",
rep_first_name: "Bill",
rep_last_name: "Sales",
email: "sales@techparts.com",
phone: "603-344-5555",
address: "123 Supply Way",
city: "Keene",
state: "NH",
zip: "03455",
website: "www.techparts.com",
notes: "Preferred vendor for LCD displays"
})
// Update vendor phone number
await skill({ name: "repairshopr-vendor" }, {
phone: "603-555-1234"
}, { id: vendor.vendor.id, method: 'PUT' })
Response includes:
id, name, rep_first_name, rep_last_name, email, phone, address, city, state, zip, website, notes, created_at, updated_atname at minimum (though not explicitly marked required in example)repairshopr-purchase-order - To create POs with vendorsrepairshopr-product - Products can be linked to vendors via vendor_idsrepairshopr-asset - Assets may have vendor info