legal-agent-skills-guide

Agent skills collection for legal research and automation

191 stars

Best use case

legal-agent-skills-guide is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Agent skills collection for legal research and automation

Teams using legal-agent-skills-guide should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/legal-agent-skills-guide/SKILL.md --create-dirs "https://raw.githubusercontent.com/wentorai/research-plugins/main/skills/domains/law/legal-agent-skills-guide/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/legal-agent-skills-guide/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How legal-agent-skills-guide Compares

Feature / Agentlegal-agent-skills-guideStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Agent skills collection for legal research and automation

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Legal Agent Skills Guide

## Overview

A curated collection of agent skills for legal research and automation — contract analysis, case law search, regulatory compliance checking, legal document drafting, and citation verification. Each skill provides structured capabilities that AI agents can use to assist with legal workflows. Designed for legal researchers, law firms, and compliance teams.

## Skill Categories

```
Legal Agent Skills
├── Research Skills
│   ├── Case law search (by jurisdiction, topic)
│   ├── Statute lookup (federal, state, international)
│   ├── Legal commentary search
│   └── Regulatory tracking
├── Analysis Skills
│   ├── Contract clause extraction
│   ├── Risk assessment
│   ├── Compliance checking
│   └── Legal argument analysis
├── Drafting Skills
│   ├── Contract drafting
│   ├── Legal memo writing
│   ├── Motion drafting
│   └── Compliance reports
├── Citation Skills
│   ├── Bluebook formatting
│   ├── Citation verification
│   ├── Shepard's-style validation
│   └── Cross-reference linking
└── Practice Management
    ├── Case timeline construction
    ├── Discovery document review
    ├── Deposition summary
    └── Billing narrative generation
```

## Key Skills

### Case Law Research

```python
# Search case law databases
from legal_skills import CaseLawSearch

search = CaseLawSearch(jurisdictions=["federal", "california"])

cases = search.find(
    query="AI liability product defect",
    date_range=("2020-01-01", "2025-12-31"),
    court_level="appellate",
    max_results=20,
)

for case in cases:
    print(f"{case.name} ({case.year})")
    print(f"  Court: {case.court}")
    print(f"  Key holding: {case.holding[:100]}...")
    print(f"  Citation: {case.citation}")
```

### Contract Analysis

```python
from legal_skills import ContractAnalyzer

analyzer = ContractAnalyzer()

# Analyze contract
analysis = analyzer.analyze("contract.pdf")

print("Risk Assessment:")
for risk in analysis.risks:
    print(f"  [{risk.severity}] {risk.clause}: {risk.description}")

print("\nKey Terms:")
for term in analysis.key_terms:
    print(f"  {term.name}: {term.value}")

print("\nMissing Clauses:")
for missing in analysis.missing_clauses:
    print(f"  - {missing}")
```

### Bluebook Citation

```python
from legal_skills import BluebookFormatter

formatter = BluebookFormatter()

# Format citation
citation = formatter.format(
    case_name="Brown v. Board of Education",
    volume=347,
    reporter="U.S.",
    page=483,
    year=1954,
)
print(citation)
# Brown v. Board of Education, 347 U.S. 483 (1954).

# Verify citation
valid = formatter.verify("347 U.S. 483")
print(f"Valid: {valid.is_valid}, Case: {valid.case_name}")
```

## Use Cases

1. **Legal research**: AI-assisted case law and statute search
2. **Contract review**: Automated clause analysis and risk flagging
3. **Compliance**: Regulatory compliance checking
4. **Drafting**: AI-assisted legal document drafting
5. **Citation management**: Bluebook formatting and verification

## References

- [awesome-legal-skills](https://github.com/lawvable/awesome-legal-skills)
- [CourtListener](https://www.courtlistener.com/) — Free case law
- [Caselaw Access Project](https://case.law/)