Contract Reviewer Wudi

v2.9.5

中文合同审核 Skill - 支持修订痕迹、批注气泡、清洁版生成与多轮迭代管理。覆盖41种合同类型、350+关键条款、229+常见风险、82个法律依据。核心输出为 Word Track Changes(修订痕迹)。

0· 71·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for wux818738-alt/contract-reviewer-wudi.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Contract Reviewer Wudi" (wux818738-alt/contract-reviewer-wudi) from ClawHub.
Skill page: https://clawhub.ai/wux818738-alt/contract-reviewer-wudi
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install contract-reviewer-wudi

ClawHub CLI

Package manager switcher

npx clawhub@latest install contract-reviewer-wudi
Security Scan
Capability signals
CryptoCan make purchases
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description (Chinese contract reviewer producing Word Track Changes) matches the repository contents: parsing, OCR, clause libraries, apply_changes and generate_clean scripts, and contract-type JSONs. Declared dependencies (python-docx, pdf libs, Tesseract, LibreOffice) are sensible for the stated functionality.
Instruction Scope
SKILL.md describes workflows that operate on uploaded Word/PDF files, produce tracked changes/comments, OCR scanned PDFs, and manage iterations — all within the domain of contract review. The instructions do not request unrelated files, credentials, or network exfiltration in the visible text.
Install Mechanism
There is no platform install spec (the skill is instruction-only) but SKILL.md instructs users to git clone the repo from an external GitHub URL. Cloning and running third‑party code is standard for this type of skill but carries the usual risk of running arbitrary code from an untrusted source; review the scripts before executing and prefer a sandboxed environment.
Credentials
The skill declares no required environment variables or credentials. That is appropriate for a local document-processing tool. No evidence in SKILL.md or manifest that unrelated secrets are requested.
Persistence & Privilege
Flags show always:false and no special OS restrictions or config paths. The repo is intended to be installed into the user's Skills directory (per SKILL.md) which is normal and scoped to the skill itself.
Assessment
This skill appears coherent for contract reviewing, but you are downloading and running code from an unknown GitHub fork. Before installing: (1) inspect the Python scripts for any network calls, subprocess.exec usage, or references to external endpoints or hidden credentials; (2) run tests in an isolated/sandbox environment (container or VM); (3) verify third‑party dependencies (python-docx, OCR tools) and install them from trusted sources; (4) confirm GPL-3.0 license obligations if you distribute or modify the tool; (5) if you plan to process sensitive contracts, ensure no code transmits documents externally and consider keeping processing on an air‑gapped or enterprise‑approved environment. If you want, provide the contents of key scripts (e.g., full_pipeline.py, apply_changes.py, pdf_ocr.py) and I can point out any networking or exfiltration code patterns that would raise stronger concerns.

Like a lobster shell, security has layers — review code before you run it.

latestvk97aeg1v60nvt5xxg452r1dh2d85c77c
71downloads
0stars
5versions
Updated 4d ago
v2.9.5
MIT-0

合同审核 WUDI | Contract Reviewer WUDI

中文合同审核 Skill,专为 OpenClaw / Claude AI 设计的智能合同审查工具。 以 修订痕迹(Track Changes) 为核心输出,直接写入 Word 文档,所见即所得。

修订痕迹效果

✨ 核心特性

能力说明
📝 修订痕迹审核意见直接写入 Word Track Changes,红绿对比一目了然
💬 批注气泡法律背景说明、结构性提示以 Word Comment 形式呈现
📋 清洁版生成一键生成接受全部修改后的清洁版文档
🔄 多轮迭代支持版本跟踪、差异对比、回滚管理
🔍 交叉引用检查自动检测孤立引用、缺失条款、自引用问题
🏷️ 合同类型检测自动识别 41 种合同类型(关键词匹配 + 置信度排序)
📚 条款智能推荐内置 22 个专业条款模板,审核时自动匹配替代条款
📄 PDF/扫描件 OCR自动识别 PDF 类型,支持 Vision/Tesseract 转换

📊 覆盖范围

  • 41 种合同类型:买卖、租赁、建设工程、技术服务、劳动合同、股权转让、PPP、金融衍生品等
  • 350+ 关键条款审核规则
  • 229+ 常见风险识别点
  • 82 个法律依据(《民法典》合同编为主)

🖼️ 效果展示

1. 合同输入

上传 Word 或 PDF 格式的合同文件即可开始审核。

合同输入

2. 合同类型识别

自动检测合同类型,匹配对应审核规则库。

合同类型识别

3. 风险扫描

逐条扫描合同条款,识别法律风险并分级标注。

风险扫描

4. 修订痕迹(核心输出)★

审核修改直接写入 Word 修订痕迹,红色删除、绿色新增,对比清晰。

修订痕迹

5. 批注气泡

无法用修订表达的内容(法律背景、结构性提示)以批注形式呈现。

批注气泡

6. 清洁版输出

一键生成接受全部修改后的干净文档。

清洁版输出

📁 目录结构

contract-reviewer-wudi/
├── SKILL.md                          # Skill 主文件(AI 审核规则引擎)
├── LICENSE.md                        # GPL-3.0 许可证
├── scripts/
│   ├── contract_parser.py            # 合同结构解析引擎
│   ├── apply_changes.py              # 修订痕迹与批注写入引擎
│   ├── generate_clean.py             # 清洁版生成引擎
│   ├── iteration_manager.py          # 多轮迭代管理引擎
│   ├── clause_recommender.py         # 条款智能推荐引擎
│   ├── check_cross_refs.py           # 交叉引用检查
│   ├── full_pipeline.py              # 完整审核流水线
│   ├── pdf_ocr.py / vision_ocr.py    # PDF OCR 模块
│   ├── preflight_check.py            # 预检工具
│   ├── round_analyzer.py             # 轮次分析
│   ├── generate_comparison.py        # 对比视图生成
│   └── config.py                     # 共享配置
├── references/
│   ├── clause-library/               # 22 个专业条款模板 (JSON)
│   ├── contract-types/               # 41 种合同类型定义 (JSON)
│   ├── review-playbook.md            # 审核操作手册
│   ├── engine-guide.md               # 引擎使用指南
│   └── output-spec.md                # 输出规范
├── agents/
│   └── openai.yaml                   # Agent 配置示例
├── tests/
│   └── test_contract_reviewer.py     # 单元测试
└── images/                           # 效果截图

🚀 安装

OpenClaw 用户

git clone https://github.com/wux818738-alt/contract-reviewer-wudi.git ~/.qclaw/skills/contract-reviewer-wudi

重启 OpenClaw Gateway,Skill 会自动加载。

ClawHub 用户

clawhub install contract-reviewer-wudi

依赖

  • Python 3.8+
  • python-docx(修订痕迹 / 批注写入)
  • PyMuPDFpdfplumber(PDF 解析,可选)
  • Tesseract(扫描件 OCR,可选)
  • LibreOffice(清洁版生成,可选)

📜 许可证

GPL-3.0 © 2026 WUDI

🙏 致谢

本 Skill 的审核方法论基于法律审核通用实践,属于行业公共知识。感谢所有法律从业者对本领域的贡献。

Comments

Loading comments...