From CasePro for Claude
Find and read CasePro documents — crash/police reports, medical records, demand letters, agreements, affidavits, exhibits. Use whenever the user wants to find a document, read or summarize a PDF, pull a specific record, or ask about the contents of their case files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/casepro:casepro-documentsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The connector finds the user's documents and gives you a link to read each one. Reading respects the user's own document permissions.
The connector finds the user's documents and gives you a link to read each one. Reading respects the user's own document permissions.
First, make sure the connector is available. If the search_documents / get_document tools aren't present, the CasePro connector isn't enabled for this chat — ask the user to enable the CasePro connector and sign in. Use only these tools to reach documents; do not try to open the CasePro website in a browser.
query: keywords. filter: all (default), files, folders, content, tags. Use content to search text inside documents.folderId, mimeTypes (e.g. application/pdf), page, pageSize.file_id.file_id. Returns the document's metadata and a secure, time-limited download link.file_id OR a query (picks the best match) and it returns the document to discuss.get_document returns the document. Small documents come back ready to read. Larger ones come with a secure download link — to read those you download the file and open it, which works best in Claude Cowork or Claude Code (anywhere you can run code and save files).
get_document (or discuss_document) to get the document (or its download link).curl/requests) and then read it with a PDF/text library.In Claude Cowork a single file can't be loaded straight into the conversation if it's over ~30 MB, but the code environment can still handle it — download it to a local file and process it there, without pulling the whole thing into the conversation:
In Claude Code there's no size limit — download and read the whole file directly.
If you genuinely can't open a document in the current environment (for example, a plain chat without file access), say so simply and suggest the user open it in Claude Cowork, where you can download and read it — then keep going with whatever you can do from the structured case data.
get_document again to get a fresh one.npx claudepluginhub omnisaiorg/casepro-claude-plugin --plugin caseproGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.