--- name: loom-ticketing description: Use loom ticket for ticket creation, status updates, deps, and notes. license: MIT compatibility: opencode metadata: created_at: "2026-01-27T17:03:09.731823+00:00" updated_at: "2026-01-27T17:03:09.731823+00:00" version: "1" tags: "tickets,workflow" --- ## Canonical commands Initialize (creates `.tickets/`): - `compound_ticket(argv=["init"])` Create: - `compound_ticket(argv=["create", "Add foo support", "-p", "2", "-t", "task", "--tags", "foo,bar"])` List / view: - `compound_ticket(argv=["list"])` - `compound_ticket(argv=["ready"])` - `compound_ticket(argv=["show", ""])` Update: - `compound_ticket(argv=["update", "", "--status", "in_progress"])` - `compound_ticket(argv=["update", "", "--status", "closed"])` Notes: - `compound_ticket(argv=["add-note", "", "Found X. Fixed by Y."])` Dependencies: - `compound_ticket(argv=["dep", ""])` - `compound_ticket(argv=["dep-add", "", ""])` - `compound_ticket(argv=["dep-rm", "", ""])` ## Best practices - One “epic” ticket per feature, with task tickets beneath. - Record decisions and gotchas as notes, not in your head. - Use deps to make sequencing explicit (and reviewable). ## Manual notes _This section is preserved when the skill is updated. Put human notes, caveats, and exceptions here._