agentsclimarketplace

Legal agent skills guide

Skill brycewang-stanford/Auto-Empirical-Research-Skills/skills/43-wentorai-research-plugins/skills/domains/law/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.

Install
npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill legal-agent-skills-guide

Assembled 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

  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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.