소스 정보
- 저장소
- 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-invoice명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | repairshopr-invoice |
| description | Create and manage invoices in RepairShopr |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"technicians, accountants, administrators","api":"GET /invoices, POST /invoices, GET /invoices/{id}, PUT /invoices/{id}, DELETE /invoices/{id}, POST /invoices/{id}/email, POST /invoices/{id}/print"} |
I manage invoices in RepairShopr, which are bills for services rendered or products sold. I can list, create, retrieve, update, and delete invoices. I also support sending invoices via email and print queueing.
Use this when:
Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYPermissions:
List Invoices (GET /invoices) Optional:
paid (boolean) - Filter by paid statusunpaid (boolean) - Filter by unpaid statusticket_id (integer) - Filter by associated ticketsince_updated_at (string) - Invoices updated since datepage (integer) - Page number (25 results per page)Create Invoice (POST /invoices) Required:
customer_id (integer) - Customer IDnumber (string) - Invoice numberdate (string) - Invoice date (ISO 8601)Optional:
due_date (string) - Payment due datesubtotal, total, tax (strings/numbers) - Amountsverified_paid, tech_marked_paid, is_paid (boolean) - Payment statusticket_id (integer) - Associated ticketlocation_id (integer) - Locationcontact_id (integer) - Contact personpo_number (string) - Customer PO numbernote (string) - Customer noteshardwarecost (number) - Hardware costline_items (array) - Array of line item objectsGet Invoice (GET /invoices/{id})
id (integer) - Invoice ID or numberUpdate Invoice (PUT /invoices/{id})
id (integer) - Invoice ID
Optional body with invoice fields (customer_id, number, date, due_date, etc.)Delete Invoice (DELETE /invoices/{id})
id (integer) - Invoice ID
Returns 200 even if delete fails (soft delete/manual removal needed)Email & Print:
POST /invoices/{id}/email - Send invoice to customer emailPOST /invoices/{id}/print - Queue print jobGet Associated Ticket (GET /invoices/{id}/ticket)
id (integer) - Invoice ID
Returns the ticket linked to this invoiceExample call:
// Create invoice with line items
const invoice = await skill({ name: "repairshopr-invoice" }, {
customer_id: 123,
number: "2024-001",
date: "2024-01-15",
due_date: "2024-02-15",
line_items: [
{ item: "Repair Service", name: "Diagnostic and Repair", price: 150, quantity: 1, taxable: true },
{ item: "Part", name: "Replacement Component", price: 75, quantity: 2, taxable: true }
],
note: "Thank you for your business!"
})
// Send invoice email
await skill({ name: "repairshopr-invoice" }, {}, { id: invoice.invoice.id, method: 'POST', pathParams: {}, endpoint: '/email' })
Response includes:
id, number, date, due_date, subtotal, total, tax, is_paid, line_items, customer, etc.customer_id, number, date are required for creationrepairshopr-invoiceline-item endpoints for line item-specific updates (PUT/DELETE)repairshopr-estimate - Convert to invoicerepairshopr-invoiceline-item - Manage line items on invoicesrepairshopr-payment - Record payments against invoicesrepairshopr-ticket - Link invoices to tickets