skills/claude-skills-open/skills/legal/legal-review/SKILL.md
Review legal documents (NDA, contracts, agreements) for sensitive clauses, risks, and red flags
npx skillsauth add aaaaqwq/claude-code-skills legal-reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyze legal documents for sensitive clauses, risks, unfavorable terms, and red flags. Provides structured review with risk assessment and recommendations.
If the document is a DOCX file, extract text:
from docx import Document
doc = Document('path/to/file.docx')
# Handle both paragraph-based and table-based layouts
text_parts = []
for p in doc.paragraphs:
if p.text.strip():
text_parts.append(p.text)
for table in doc.tables:
for row in table.rows:
for cell in row.cells:
if cell.text.strip():
text_parts.append(cell.text)
If PDF, use the Read tool directly (it supports PDFs).
Perform structured analysis covering ALL of the following areas:
Scan for and flag these categories with severity levels:
| Category | What to look for | Severity | |----------|-----------------|----------| | Non-compete / Non-solicitation | Restrictions on working with competitors, hiring employees | HIGH | | Unlimited liability | No cap on damages, indemnification without limits | HIGH | | Unilateral termination | One party can terminate freely, other cannot | HIGH | | IP assignment | Broad IP transfer clauses, work-for-hire beyond scope | HIGH | | Penalty clauses | Financial penalties for breach, liquidated damages | HIGH | | Governing law mismatch | Law of unfamiliar jurisdiction, unfavorable forum | MEDIUM | | Confidentiality duration | Unusually long (>5 years) or perpetual obligations | MEDIUM | | Auto-renewal / Lock-in | Automatic extension, difficult exit terms | MEDIUM | | Data processing | Personal data obligations, GDPR/privacy compliance | MEDIUM | | Audit rights | Right to audit your systems, records, premises | MEDIUM | | Force majeure | Missing or one-sided force majeure clause | LOW | | Notice requirements | Unreasonable notice periods, specific delivery methods | LOW | | Amendment process | Unilateral right to modify terms | MEDIUM | | Waiver of jury trial | Waiving right to jury trial or class action | LOW | | Survival clauses | Obligations that survive termination and their duration | LOW |
Check whether obligations are mutual or one-sided:
Flag important clauses that are ABSENT:
Flag vague or overly broad language:
Output a structured report:
## LEGAL DOCUMENT REVIEW
### Document Info
- Type: [NDA/Contract/etc.]
- Parties: [Party A] <-> [Party B]
- Date: [effective date]
- Duration: [term]
- Governing Law: [jurisdiction]
### Risk Summary
- Overall Risk Level: [LOW / MEDIUM / HIGH / CRITICAL]
- HIGH risks found: [count]
- MEDIUM risks found: [count]
### Sensitive Clauses Found
#### [HIGH] [Category Name]
- Clause: [quote or reference]
- Risk: [what this means for you]
- Recommendation: [what to negotiate or change]
#### [MEDIUM] [Category Name]
...
### Asymmetry Issues
- [list of imbalanced terms]
### Missing Protections
- [list of absent but recommended clauses]
### Recommendations
1. [Prioritized list of changes to request before signing]
| Parameter | Description | Default |
|-----------|-------------|---------|
| file_path | Path to the document (DOCX, PDF, or TXT) | required |
| party | Which party you represent (for perspective) | auto-detect from context |
| focus | Specific areas to focus on (e.g., "IP", "liability") | all areas |
User: "Review this NDA from Client G" -> Extract DOCX, run full analysis, output structured report
User: "Check this contract for IP risks" -> Run analysis with focus on IP assignment, work-for-hire, licensing clauses
invoice-generator-agent — for creating invoices referenced in contractsemail-send-bulk — for sending signed documents backtesting
通用自媒体文章自动发布工具。支持百家号、搜狐号、知乎、微信公众号、小红书、抖音号六个平台的自动化发布流程。使用Playwright自动化实现平台导航和发布,支持通过storageState管理Cookie实现账号切换。
development
# SKILL.md - Model Configuration Status (mcstatus) ## 触发条件 - `/mcstatus` 命令 - 用户询问模型配备、模型配置、model status、模型列表等 ## 功能 实时生成 Agent + Cron 的模型配置报告,展示当前所有 agent 的主模型/fallback链和所有 cron 任务的模型分配。 ## 执行步骤 ### Step 1: 收集 Agent 模型配置 读取各 agent 的 models.json 获取主模型和 fallback 链: ```bash for agent in main ops code quant data research content market finance pm law product sales batch; do config=$(cat ~/.openclaw/agents/$agent/agent/models.json 2>/dev/null) if [ -n "$config" ]; then echo "=== $agent
tools
MCP 服务器智能管理助手。自动检测 MCP 可用性、智能开关、功能问答,提供人性化的 MCP 管理体验。
tools
从GitHub搜索并自动安装配置MCP(Model Context Protocol)服务器工具到Claude配置文件。当用户需要安装MCP工具时触发此技能。工作流程:搜索GitHub上的MCP项目 -> 提取npx配置 -> 添加到~/.claude.json -> 处理API密钥(如有)。