소스 정보
- 저장소
- omiinaya/repairshopr-skills
- 최근 소스 활동
- 2026년 3월 6일 20:57
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-estimate명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | repairshopr-estimate |
| description | Create and manage estimates in RepairShopr |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"technicians, sales, administrators","api":"GET /estimates, POST /estimates, GET /estimates/{id}, PUT /estimates/{id}, DELETE /estimates/{id}, POST /estimates/{id}/convert_to_invoice, POST /estimates/{id}/line_items, PUT /estimates/{id}/line_items/{line_item_id}, DELETE /estimates/{id}/line_items/{line_item_id}"} |
I manage repair estimates, which are cost proposals for work. I can list, create, retrieve, update, delete estimates, convert them to invoices, and manage line items (parts/labor) within estimates.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYPermissions:
List Estimates (GET /estimates) Optional:
mine (boolean) - Only my estimatesstatus (string) - Filter by status: "approved", "declined"page (integer) - Page number (50 per page)Create Estimate (POST /estimates) Required:
date (string) - Estimate date (ISO 8601)customer_id (integer) - CustomerOptional:
name (string) - Estimate name/titlenumber (string) - Custom estimate numberstatus (string) - "Fresh", "Draft", "Approved", "Declined" (default Fresh)note (string) - Customer-facing notesticket_id (integer) - Associated ticketlocation_id (integer) - Locationline_items (array) - Array of line item objects with item, name, cost, price, quantity, taxableGet Estimate (GET /estimates/{id})
id (integer) - Estimate ID or numberUpdate Estimate (PUT /estimates/{id})
id (integer) - Estimate ID
Optional body similar to create (but typically doesn't include line_items fully; use line item endpoints)Delete Estimate (DELETE /estimates/{id})
id (integer) - Estimate IDAdd Line Item (POST /estimates/{id}/line_items)
id (integer) - Estimate ID
Body includes line item fields (item, name, cost, price, quantity, taxable)Update Line Item (PUT /estimates/{id}/line_items/{line_item_id})
id, line_item_id - IDs
Body includes updatable line item fieldsDelete Line Item (DELETE /estimates/{id}/line_items/{line_item_id})
id, line_item_id - IDsConvert to Invoice (POST /estimates/{id}/convert_to_invoice)
id (integer) - Estimate ID
Requires "Estimates - View Details" and "Invoices - Create"Print/Email:
POST /estimates/{id}/print - Queue print jobPOST /estimates/{id}/email - Email to customerExample call:
// Create estimate with line items
const estimate = await skill({ name: "repairshopr-estimate" }, {
customer_id: 123,
date: "2024-01-15",
name: "Screen Replacement Estimate",
status: "Draft",
line_items: [
{ item: "LCD Display", name: "13\" Retina Display", cost: 150, price: 299, quantity: 1, taxable: true },
{ item: "Labor", name: "Screen Replacement Service", cost: 0, price: 89, quantity: 1, taxable: false }
]
})
// Add additional line item later
await skill({ name: "repairshopr-estimate" }, {
line_items: [
{ item: "Battery", name: "Replacement Battery", price: 79, quantity: 1 }
]
}, { id: estimate.., : , : { : } })
Response includes:
subtotal, total, tax, line_items array, status, etc.invoice objectdate and customer_id are required for creationitem and price at minimum; cost is optionalvalid item error occurs when item is blankrepairshopr-invoice - After estimate conversionrepairshopr-line-item - For line item managementrepairshopr-ticket-create - To link estimate to ticket