Legal Analysis
Purpose
Analyze legal documents, extract key clauses, and perform structured legal research.
Key Datasets
- CUAD (atticus-project/cuad): Contract Understanding Atticus Dataset — 510 contracts, 41 clause types, 13,000+ annotations (CC-BY)
- CaseHOLD: Legal case holding identification
- LegalBench: Legal reasoning benchmark across 162 tasks
Clause Types (from CUAD)
Document Name, Parties, Agreement Date, Effective Date, Expiration Date, Renewal Term, Notice Period, Governing Law, Arbitration, Anti-Assignment, Non-Compete, Non-Solicitation, Termination for Convenience, IP Ownership, License Grant, Non-Disparagement, Revenue/Profit Sharing, Change of Control, Audit Rights, Uncapped Liability, Cap on Liability, Liquidated Damages, Most Favored Nation, Exclusivity, Minimum Commitment, Volume Restriction, Insurance, Covenant Not to Sue, Third Party Beneficiary
Protocol
- Document intake — Parse contract structure, identify parties and key dates
- Clause extraction — Identify and classify clauses by type
- Risk analysis — Flag unusual, missing, or potentially problematic provisions
- Comparison — Compare against standard terms for the contract type
- Summary — Structured output with key terms, obligations, and risks
Rules
- This is NOT legal advice — always recommend professional legal review
- Identify jurisdiction-specific considerations
- Flag ambiguous language that could be interpreted multiple ways
- Note missing standard clauses that are typically expected
1---2name: legal-analysis3description: Analyze legal contracts, extract clauses, and perform legal research with structured frameworks4license: MIT5---67# Legal Analysis89## Purpose10Analyze legal documents, extract key clauses, and perform structured legal research.1112## Key Datasets13- **CUAD** (atticus-project/cuad): Contract Understanding Atticus Dataset — 510 contracts, 41 clause types, 13,000+ annotations (CC-BY)14- **CaseHOLD**: Legal case holding identification15- **LegalBench**: Legal reasoning benchmark across 162 tasks1617## Clause Types (from CUAD)18Document Name, Parties, Agreement Date, Effective Date, Expiration Date, Renewal Term, Notice Period, Governing Law, Arbitration, Anti-Assignment, Non-Compete, Non-Solicitation, Termination for Convenience, IP Ownership, License Grant, Non-Disparagement, Revenue/Profit Sharing, Change of Control, Audit Rights, Uncapped Liability, Cap on Liability, Liquidated Damages, Most Favored Nation, Exclusivity, Minimum Commitment, Volume Restriction, Insurance, Covenant Not to Sue, Third Party Beneficiary1920## Protocol211. **Document intake** — Parse contract structure, identify parties and key dates222. **Clause extraction** — Identify and classify clauses by type233. **Risk analysis** — Flag unusual, missing, or potentially problematic provisions244. **Comparison** — Compare against standard terms for the contract type255. **Summary** — Structured output with key terms, obligations, and risks2627## Rules28- This is NOT legal advice — always recommend professional legal review29- Identify jurisdiction-specific considerations30- Flag ambiguous language that could be interpreted multiple ways31- Note missing standard clauses that are typically expected