Legal agent skills guide
๐ฌ A curated collection of 23,000+ agent skills for empirical research across 8 social science disciplines. | ็ฒพ้ 23,000+ AI Agent ๆ่ฝๅบ๏ผ่ฆ็8ๅคง็คพไผ็งๅญฆๅญฆ็ง็ๅฎ่ฏ็ ็ฉถใCoPaper.AI 20ๅ้ๅฎๆไธ็ฏๅฏๅค็ฐ็่ง่ๅฎ่ฏ่ฎบๆ๏ผๅนถๆฏๆ็จๆทไธไผ Skillsใ-- Maintained by CoPaper.AI from Stanford REAP.
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill legal-agent-skills-guideAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Agent skills collection for legal research and automation
SKILL.md
3.7 KB, as published. Nobody here has run it
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
# 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
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
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
- Legal research: AI-assisted case law and statute search
- Contract review: Automated clause analysis and risk flagging
- Compliance: Regulatory compliance checking
- Drafting: AI-assisted legal document drafting
- Citation management: Bluebook formatting and verification
References
- awesome-legal-skills
- CourtListener โ Free case law
- Caselaw Access Project