Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-vendor명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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