From clio
Use this skill when creating, updating, searching, or reasoning about Clio matters — the case/client-file object that almost everything else in Clio hangs off of. Covers the matter status lifecycle, linking a matter to a client contact, practice areas, custom fields, and matter numbering.
How this skill is triggered — by the user, by Claude, or both
Slash command
/clio:mattersWhen to use
When creating, updating, searching, or summarizing a Clio matter, or when deciding what a matter's status means. Use when: clio matter, clio case, clio matter status, clio matter number, clio practice area, clio responsible attorney, or clio client matter.
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
A **matter** is Clio's core object — the case or client file. It is the
A matter is Clio's core object — the case or client file. It is the
hub that almost everything else in Clio (activities, tasks, communications,
documents, calendar entries, bills) references via matter_id. See the
api-patterns skill for the full matters-as-hub
picture and the deliberate v1 scope limits that apply across every domain.
Tools: clio_matters_list, clio_matters_get, clio_matters_create,
clio_matters_update. Navigate into the matters domain first
(clio_navigate) — these tools aren't visible until you do.
No delete tool exists for matters. A matter that shouldn't exist anymore gets closed (status change), not removed — see below.
A matter typically carries:
Matters move through a small set of statuses. Typical values:
| Status | Meaning |
|---|---|
| Open | Active matter, currently being worked |
| Pending | Not yet fully active — e.g. awaiting engagement signature, conflict check, or intake completion |
| Closed | Matter has concluded — no more billable work expected |
Treat status as the primary signal for "is this matter live." When a user asks for "my open matters" or "what's still active," filter on status rather than trying to infer activity from recency of activities/tasks alone — a matter can be quiet-but-open (waiting on a court date) or closed-but-recently-touched (final billing cleanup).
Closing a matter is a status update (clio_matters_update with
status: "Closed"), not a delete. There is no way to remove a matter
through this integration — that's consistent with the no-delete-anywhere
rule and with legal records retention practice.
Minimum viable create: a client contact and (usually) a responsible
attorney. Before calling clio_matters_create:
clio_contacts_list with a name/company filter) before creating a new
one — duplicate client contacts are a real mess in a matter-centric
system. See the contacts skill.clio_matters_update — same shape as create, but scoped to an existing
matter_id. Common updates: status changes (open → pending → closed),
reassigning the responsible attorney, correcting the practice area, or
editing the description. There's no partial-vs-full-update ambiguity to
worry about here beyond the standard rule: only send the fields that are
actually changing plus the ID.
The client relationship is set at creation (or via update) using the
contact's ID from clio_contacts_list/clio_contacts_get. A matter has
one client contact, but that contact may be party to many other matters —
always resolve by searching contacts rather than assuming a name is
unique; law firms frequently have multiple contacts with similar or
identical names across different matters.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin clioUse this skill when working with the Clio Manage MCP tools — OAuth 2.0 Authorization Code connection via Conduit, the matters-as-hub data model, decision-tree tool navigation, pagination, and the deliberate v1 scope limits (no delete anywhere, documents metadata-only, communications/ calendar/bills read-only). Essential background before touching any other Clio skill.
Manage matter workspaces for multi-client legal practices — create, list, switch, close, or detach active matter.
Creates, lists, switches, archives, or detaches matter workspaces for multi-client legal practitioners. Use when managing separate client contexts or when another skill needs the active matter.