data-reconciliation-exceptions
/install abe-data-reconciliation-exceptions
Data quality & reconciliation with exception reporting and no silent failure
PURPOSE
Reconciles data sources using stable identifiers (Pay Number, driving licence, driver card, and driver qualification card numbers), producing exception reports and “no silent failure” checks.
WHEN TO USE
- TRIGGERS:
- Reconcile these two data sources and produce an exceptions report with reasons.
- Match names and payroll numbers across files and flag anything that does not join.
- Build a ‘no silent failure’ check that stops the pipeline if counts do not match.
- Create a weekly variance report for missing records, duplicates, and date gaps.
- Design a data quality scorecard with thresholds and red flags.
- DO NOT USE WHEN…
- You need open-ended fuzzy matching without acceptance criteria.
- There are no stable identifiers in any source.
INPUTS
- REQUIRED:
- At least two datasets (CSV/XLSX) with Pay Number and/or driver document numbers.
- Which fields must match (e.g., Name, expiry date).
- OPTIONAL:
- Normalization rules (case, spaces, punctuation).
- Thresholds for gates/scorecard (max % missing, etc.).
- EXAMPLES:
- Payroll export + compliance register
- Two weekly exports from different systems
OUTPUTS
- Reconciliation plan (matching rules, normalization, join strategy).
- Exceptions report spec (CSV columns + reason codes) and variance checks.
- Optional artifacts:
assets/exceptions-report-template.csv+references/matching-rules.md. Success = every record is categorized (matched/missing/duplicate/mismatch/invalid) with an explicit reason; pipelines stop on anomalies.
WORKFLOW
- Confirm sources and key priority (Pay Number → Driver Card → Driving Licence → DQC).
- Normalize columns:
- trim spaces; standardize case; strip common punctuation for document numbers.
- Validate keys:
- flag blanks/invalid formats; identify duplicates per source.
- Join:
- exact join on Pay Number; then attempt secondary joins only for remaining unmatched items.
- Produce exception categories with reasons:
- Missing in A/B, Duplicate key, Field mismatch, Invalid key.
- “No silent failure” gates:
- counts within tolerance; unmatched rate below threshold; duplicate spikes flagged.
- STOP AND ASK THE USER if:
- columns are not mapped,
- multiple competing IDs exist with no priority,
- expected tolerances are unspecified.
OUTPUT FORMAT
exception_type,reason,source_a_id,source_b_id,pay_number,name,field,source_a_value,source_b_value
Reason codes: MISSING_IN_A, MISSING_IN_B, MISMATCH, DUPLICATE_KEY, INVALID_KEY.
SAFETY & EDGE CASES
- Read-only by default; don’t auto-edit source data. Route exceptions to review.
- Deterministic matching rules first; avoid fuzzy matching unless explicitly requested.
- Always produce an exceptions report; never drop unmatched rows.
EXAMPLES
-
Input: “Payroll vs compliance; match by Pay Number; flag name mismatch.”
Output: join plan + mismatch reasons + exceptions report schema. -
Input: “Some rows have blank Pay Number.”
Output: secondary key matching + invalid-key exceptions for truly unmatchable rows.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install abe-data-reconciliation-exceptions - 安装完成后,直接呼叫该 Skill 的名称或使用
/abe-data-reconciliation-exceptions触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
data-reconciliation-exceptions 是什么?
Reconciles data sources using stable identifiers (Pay Number, driving licence, driver card, and driver qualification card numbers), producing exception repor... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 64 次。
如何安装 data-reconciliation-exceptions?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install abe-data-reconciliation-exceptions」即可一键安装,无需额外配置。
data-reconciliation-exceptions 是免费的吗?
是的,data-reconciliation-exceptions 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
data-reconciliation-exceptions 支持哪些平台?
data-reconciliation-exceptions 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 data-reconciliation-exceptions?
由 AlvisDunlop(@alvisdunlop)开发并维护,当前版本 v1.0.0。