deepread-legallisted
Install: claude install-skill deepread-tech/skills
# DeepRead Legal Document Processing
Extract structured data from contracts, legal agreements, NDAs, court filings, leases, and compliance documents. Then redact privileged or sensitive information before sharing with opposing counsel, auditors, or external parties.
> 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 contract 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": "document_type", "value": "Master Services Agreement", "needs_review": false, "location": {"page": 1}},
{"key": "parties", "value": [
{"name": "Acme Corp", "role": "Service Provider", "address": "123 Tech Blvd, San Francisco, CA"},
{"name": "GlobalCo Inc", "role": "Client", "address": "456 Market St, New York, NY"}
], "needs_review": false, "location": {"page": 1}},
{"key": "effective_date", "value": "2026-01-15", "needs_review": false, "location": {"page": 1}},
{"key": "termination_date", "value": "2027-01-14", "needs_review": false, "location": {"page": 1}},
{"key": "governing_law", "value": "State of California", "needs_review": false, "location": {"page": 8}},
{"key": "contract_value", "value": 250000.00, "needs_review