deepread-medicallisted
Install: claude install-skill deepread-tech/skills
# DeepRead Medical Records Processing
Extract structured data from medical records, lab reports, prescriptions, discharge summaries, and clinical documents. Then redact patient PII for HIPAA-compliant sharing, archiving, or LLM processing.
> This skill instructs the agent to POST documents to `https://api.deepread.tech` and poll for results. No system files are modified.
## What You Get Back
Submit a medical record and get structured JSON. Extracted fields come back as a list under `extraction.fields[]` (each field has `key`, `value`, `needs_review`, and `location.page`):
```json
{
"schema_version": "dp02",
"status": "completed",
"extraction": {
"fields": [
{"key": "patient_name", "value": "Jane Smith", "needs_review": false, "location": {"page": 1}},
{"key": "date_of_birth", "value": "1990-03-15", "needs_review": false, "location": {"page": 1}},
{"key": "mrn", "value": "MRN-2026-004521", "needs_review": false, "location": {"page": 1}},
{"key": "visit_date", "value": "2026-03-28", "needs_review": false, "location": {"page": 1}},
{"key": "provider", "value": "Dr. Sarah Chen, MD", "needs_review": false, "location": {"page": 1}},
{"key": "diagnoses", "value": [
{"code": "J06.9", "description": "Acute upper respiratory infection"},
{"code": "R50.9", "description": "Fever, unspecified"}
], "needs_review": false, "location": {"page": 2}},
{"key": "medications", "value": [
{"name": "Amoxicillin",