← 返回 Skills 市场
dorjenorbulim

Document Congruence Checker

作者 dorjenorbulim · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
37
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install document-congruence-checker
功能描述
Compare multiple documents for congruency and consistency. Use when: User needs to verify that multiple documents (contracts, reports, forms, specs) contain...
使用说明 (SKILL.md)

Document Congruence Checker

Purpose

Compare 2+ documents to identify:

  • Conflicting information (dates, names, amounts, terms)
  • Missing fields in some documents
  • Inconsistent terminology or values
  • Version mismatches

Input

User provides:

  • 2 or more documents (PDF, DOCX, TXT, MD, JSON, XML)
  • Optional: specific fields to focus on
  • Optional: tolerance rules (e.g., date format differences OK)

Process

1. Document Parsing

  • Extract text and structured data from each document
  • Identify document type and key fields
  • Normalize data formats (dates, currencies, names)

2. Field Mapping

  • Create unified field schema across all documents
  • Map equivalent fields (e.g., "Client Name" = "Customer Name" = "Party A")
  • Note fields present in some docs but not others

3. Congruence Analysis

For each mapped field:

  • Congruent: Values match exactly (or within tolerance)
  • Incongruent: Values conflict
  • Missing: Field absent in one or more documents
  • Ambiguous: Values unclear or unparseable

4. Report Generation

Output a discrepancy table with:

Field Doc A Doc B Doc C Status Notes

Output Format

## 📊 Document Congruence Report

**Documents Compared:** {list}
**Analysis Date:** {date}
**Overall Congruence:** {High/Medium/Low} - {X}% fields aligned

### ✅ Congruent Fields ({count})
| Field | Value | Present In |
|-------|-------|------------|
| {field} | {value} | All docs |

### ⚠️ Incongruent Fields ({count})
| Field | Doc A | Doc B | Doc C | Discrepancy Type |
|-------|-------|-------|-------|------------------|
| Date | 2026-04-01 | 2026-04-10 | 2026-04-01 | Value mismatch |
| Amount | $10,000 | $10,000 | - | Missing in Doc C |

### 📋 Missing Fields ({count})
| Field | Missing In | Impact |
|-------|------------|--------|
| Signature | Doc B | High - legal validity |

### 🔍 Recommendations
1. {action item}
2. {action item}

Congruence Levels

Level Criteria
High 90%+ fields congruent, no critical conflicts
Medium 70-89% congruent, minor conflicts only
Low \x3C70% congruent, or critical conflicts present

Critical vs Non-Critical Fields

Critical (incongruence = high risk):

  • Dates (effective, expiry, delivery)
  • Amounts (prices, fees, penalties)
  • Names (parties, signatories)
  • Legal terms (liability, termination)
  • Identifiers (contract #, account #)

Non-Critical (incongruence = low risk):

  • Formatting differences
  • Typos in non-legal text
  • Optional fields
  • Descriptive language variations

Usage Examples

Example 1: Contract Comparison

User: Compare these 3 contract versions for inconsistencies
Agent: [parses docs, outputs congruence table]

Example 2: Financial Report Alignment

User: Check if Q1 report matches Q2 report for opening balances
Agent: [compares specific fields, flags mismatches]

Example 3: Form Data Validation

User: Verify all application forms have consistent applicant info
Agent: [cross-checks names, IDs, dates across forms]

Tools Used

  • read - Parse document contents
  • exec - Run document parsing tools (pdftotext, docx2txt, etc.)
  • write - Generate congruence report

Limitations

  • Scanned PDFs require OCR (may have accuracy issues)
  • Handwritten content not reliably parseable
  • Semantic equivalence (same meaning, different words) requires human judgment
  • Images/charts not analyzed for data congruence

Security Notes

  • Never send sensitive documents to external APIs
  • Process locally when possible
  • Redact confidential data from reports if sharing
  • Delete temp files after analysis

Skill ready for document congruence analysis

安全使用建议
This looks safe for its stated purpose. Before installing, note that document contents may be read and parsed locally, and the generated report may contain sensitive contract, financial, or personal details; review reports before sharing and avoid using untrusted document parsing tools.
功能分析
Type: OpenClaw Skill Name: document-congruence-checker Version: 1.0.0 The skill bundle describes a legitimate document comparison tool designed to identify inconsistencies across multiple files. The use of high-risk tools like `exec` is explicitly limited to document parsing utilities (e.g., pdftotext), and the instructions include proactive security recommendations such as local processing and data redaction. No evidence of malicious intent, data exfiltration, or prompt injection was found in SKILL.md or agent-config.md.
能力评估
Purpose & Capability
The artifacts consistently describe comparing 2+ user-provided documents and producing a discrepancy report; no unrelated data collection, network use, credentials, or account mutation are shown.
Instruction Scope
The instructions are bounded to parsing, mapping, comparing, and reporting document fields, with clarifying questions and human review for ambiguities.
Install Mechanism
No install spec, code files, packages, credentials, or required environment variables are present.
Credentials
SKILL.md discloses use of read/exec/write, including `exec` for local parsers such as pdftotext/docx2txt; this is aligned with document conversion but users should be aware local commands may run on supplied files.
Persistence & Privilege
No persistence, background workers, credential use, external API calls, or privileged account access are evidenced; the skill advises deleting temporary files after analysis.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install document-congruence-checker
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /document-congruence-checker 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Version bump
元数据
Slug document-congruence-checker
版本 1.0.0
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Document Congruence Checker 是什么?

Compare multiple documents for congruency and consistency. Use when: User needs to verify that multiple documents (contracts, reports, forms, specs) contain... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 37 次。

如何安装 Document Congruence Checker?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install document-congruence-checker」即可一键安装,无需额外配置。

Document Congruence Checker 是免费的吗?

是的,Document Congruence Checker 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Document Congruence Checker 支持哪些平台?

Document Congruence Checker 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Document Congruence Checker?

由 dorjenorbulim(@dorjenorbulim)开发并维护,当前版本 v1.0.0。

💬 留言讨论