legal-agent-skills-guide
Agent skills collection for legal research and automation
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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/legal-agent-skills-guide/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How legal-agent-skills-guide Compares
| Feature / Agent | legal-agent-skills-guide | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/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/)Related Skills
thuthesis-guide
Write Tsinghua University theses using the ThuThesis LaTeX template
thesis-writing-guide
Templates, formatting rules, and strategies for thesis and dissertation writing
thesis-template-guide
Set up LaTeX templates for PhD and Master's thesis documents
sjtuthesis-guide
Write SJTU theses using the SJTUThesis LaTeX template with full compliance
novathesis-guide
LaTeX thesis template supporting multiple universities and formats
graphical-abstract-guide
Create SVG graphical abstracts for journal paper submissions
beamer-presentation-guide
Guide to creating academic presentations with LaTeX Beamer
plagiarism-detection-guide
Use plagiarism detection tools and ensure manuscript originality
paper-polish-guide
Review and polish LaTeX research papers for clarity and style
grammar-checker-guide
Use grammar and style checking tools to polish academic manuscripts
conciseness-editing-guide
Eliminate wordiness and redundancy in academic prose for clarity
academic-translation-guide
Academic translation, post-editing, and Chinglish correction guide