用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill legal-nlp-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | legal-nlp-guide |
| description | NLP techniques for legal text analysis, case law mining, and contracts |
| metadata | {"openclaw":{"emoji":"⚖️","category":"domains","subcategory":"law","keywords":["legal-nlp","text-mining","case-law","contract-analysis","named-entity","classification"],"source":"wentor"}} |
A skill for applying natural language processing techniques to legal texts. Covers legal document classification, named entity recognition for legal entities, contract clause extraction, case law similarity search, and court opinion summarization using modern NLP tools.
Legal language presents unique NLP challenges:
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch
# Legal-BERT: domain-adapted BERT for legal text
model_name = "nlpaueb/legal-bert-base-uncased"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForSequenceClassification.from_pretrained(
model_name, num_labels=5
)
# Legal document categories
labels = ["contract", "court_opinion", "statute", "regulation", "brief"]
def classify_legal_document(text: str, max_length: int = 512) -> dict:
"""
Classify a legal document into predefined categories.
For long documents, use the first 512 tokens (typically the
preamble/introduction which contains strong classification signals).
"""
inputs = tokenizer(
text, return_tensors="pt",
max_length=max_length, truncation=True, padding=True
)
with torch.no_grad():
logits = model(**inputs).logits
probs = torch.softmax(logits, dim=-1).squeeze()
predicted = labels[probs.argmax().item()]
return {
"predicted_class": predicted,
"confidence": probs.max().item(),
"all_scores": {l: p.item() for l, p in zip(labels, probs)},
}
Common topic taxonomies for legal research:
| Category | Examples |
|---|---|
| Constitutional Law | Due process, equal protection, First Amendment |
| Criminal Law | Sentencing, evidence, plea bargaining |
| Contract Law | Breach, formation, damages |
| Tort Law | Negligence, product liability, defamation |
| Property Law | Real property, intellectual property, zoning |
| Administrative Law | Agency rulemaking, judicial review |
Legal NER extends standard NER with domain-specific entity types:
import spacy
# Load a legal NER model (e.g., trained on the LegalNERo dataset)
# or fine-tune spaCy on legal annotations
nlp = spacy.load("en_legal_ner")
legal_entity_types = {
"COURT": "Court or tribunal name",
"JUDGE": "Judge or justice name",
"PARTY": "Plaintiff, defendant, petitioner, respondent",
"STATUTE": "Statute or regulation citation",
"CASE_CITATION": "Case name and reporter citation",
"DATE": "Dates of decisions, filings, events",
"JURISDICTION": "Geographic or subject matter jurisdiction",
"PROVISION": "Specific section or clause reference",
}
def extract_legal_entities(text: str) -> list[dict]:
"""Extract legal named entities from text."""
doc = nlp(text)
entities = []
for ent in doc.ents:
entities.append({
"text": ent.text,
"label": ent.label_,
"start": ent.start_char,
"end": ent.end_char,
"description": legal_entity_types.get(ent.label_, ""),
})
return entities
import re
# US case citation patterns (simplified)
CASE_CITE_PATTERN = re.compile(
r"(?P<volume>\d+)\s+"
r"(?P<reporter>U\.S\.|S\.\s?Ct\.|F\.\s?\d[dthsr]+|"
r"F\.\s?Supp\.\s?\d*[dthsr]*)\s+"
r"(?P<page>\d+)"
r"(?:\s*,\s*(?P<pinpoint>\d+))?"
r"(?:\s*\((?P<year>\d{4})\))?"
)
def parse_citations(text: str) -> list[dict]:
"""Extract and parse legal citations from text."""
citations = []
for match in CASE_CITE_PATTERN.finditer(text):
citations.append({
"full_match": match.group(),
"volume": match.group("volume"),
"reporter": match.group("reporter"),
"page": match.group("page"),
"pinpoint": match.group("pinpoint"),
"year": match.group("year"),
})
return citations
def segment_contract_clauses(text: str) -> list[dict]:
"""
Segment a contract into numbered clauses and classify them.
Uses section numbering patterns as primary segmentation cues.
"""
# Split on section/article numbering patterns
section_pattern = re.compile(
r"\n\s*(?:Section|Article|Clause|\d+\.)\s+\d+[\.\d]*\s*[:\.\-]?\s*",
re.IGNORECASE,
)
sections = section_pattern.split(text)
headers = section_pattern.findall(text)
clause_types = {
"indemnification": ["indemnif", "hold harmless", "defend and indemnify"],
"termination": ["terminat", "cancel", "expir"],
"confidentiality": ["confidential", "non-disclosure", "proprietary"],
"limitation_of_liability": ["limit of liabilit", "limitation of liabilit",
"aggregate liability", "consequential damages"],
"governing_law": ["governing law", "governed by", "jurisdiction"],
"force_majeure": ["force majeure", "act of god", "beyond reasonable control"],
"assignment": ["assign", "transfer", "delegate"],
}
clauses = []
for i, section in enumerate(sections[:], ):
detected_type =
section_lower = section.lower()
ctype, keywords clause_types.items():
(kw section_lower kw keywords):
detected_type = ctype
clauses.append({
: i,
: headers[i - ].strip() i <= (headers) ,
: detected_type,
: section.strip()[:],
})
clauses
from sentence_transformers import SentenceTransformer
import numpy as np
# Legal domain sentence embeddings
encoder = SentenceTransformer("sentence-transformers/all-MiniLM-L6-v2")
def build_case_index(case_summaries: list[str]) -> np.ndarray:
"""Encode case summaries into dense vector representations."""
embeddings = encoder.encode(case_summaries, show_progress_bar=True)
# L2 normalize for cosine similarity via dot product
norms = np.linalg.norm(embeddings, axis=1, keepdims=True)
return embeddings / norms
def search_similar_cases(query: str, index: np.ndarray,
case_ids: list[str], top_k: int = 10) -> list:
"""Find the most similar cases to a query."""
query_vec = encoder.encode([query])
query_vec = query_vec / np.linalg.norm(query_vec)
scores = (index @ query_vec.T).squeeze()
top_indices = np.argsort(scores)[::-1][:top_k]
return [(case_ids[i], scores[i]) for i in top_indices]