用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/omiinaya/repairshopr-skills --skill repairshopr-ticket-timer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | repairshopr-ticket-timer |
| description | View ticket timers (time tracking entries) in RepairShopr |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"technicians, administrators","api":"GET /ticket_timers"} |
I list ticket timers, which are time tracking entries associated with tickets. Timers record start/stop times, durations, and notes for work performed on tickets. They support billing time to customers and internal time tracking.
Use this when:
end_time)Required API base URL:
VITE_REPAIRSHOPR_SUBDOMAINVITE_REPAIRSHOPR_API_KEYPermission: "Ticket Timers - Overview" required.
List Ticket Timers (GET /ticket_timers) Optional:
created_at_lt (string) - Filter timers created before this date (e.g., "2019-01-22")created_at_gt (string) - Filter timers created after this datepage (integer) - Page number (25 results per page)Example call:
const timers = await skill({ name: "repairshopr-ticket-timer" }, {
created_at_gt: "2024-01-01",
page: 1
})
Response includes:
{
"ticket_timers": [
{
"id": 1,
"ticket_id": 123,
"user_id": 5,
"start_time": "2013-08-06T13:41:15.000Z",
"end_time": "2013-08-06T14:41:15.000Z", // null if still running
"recorded": false,
"billable": false,
"notes": "Diagnosed power supply issue",
"toggl_id": null,
"product_id": null,
"comment_id": null,
"ticket_line_item_id":
recorded indicates if the timer has been converted to a timelog/ticket commentbillable flag determines if time should be billed to customerend_time null means the timer is still activeticket_line_item_id may link to a specific line item if tracking time against a chargerepairshopr-timelog - For general employee time logs (different from ticket timers)repairshopr-ticket - To get ticket details associated with timersrepairshopr-ticket-comment - After a timer is recorded, it may create a comment