Show HN: Data-review, diff the data/numbers a PR changes A developer released Data-review, an open-source agent skill that automatically diffs data and numbers changed by a pull request, re-running affected pipeline lanes to catch bugs like sign flips, NULLs, and double counting that unit tests miss. The tool caught a real cents-to-dollars conversion error in under a minute during a demo, and is designed for data engineering and financial controlling workflows. Change-time review for data-engineering and financial-controlling work. An agent skill that reviews the data impact of a code change: it re-runs the affected pipeline lanes and checks whether the numbers move the way the author said they would. Code review checks the code; tests check the assertions you remembered to write. Neither runs a query, so locale mis-parses, sign flips, silent NULLs, join fan-out, and double counting all pass green. Scripts compute, agents judge: no agent does arithmetic a query can do, no script decides whether a number should have moved. you → a PR touching parsers / transforms / models / deliverables blast radius → which lanes the diff hits deterministic T1 tieouts → is the world in a known-good state? deterministic T2 rerun+diff → scratch rebuild vs committed baseline deterministic T3 row diff → row-level EXCEPT ALL + top-k moved groups deterministic judgment layer → declared / explained / UNEXPLAINED agents report → findings ranked by € impact + coverage table A real before/after data bug caught in under a minute, no agent or account: git clone https://github.com/10fra/data-review.git cd data-review && ./demo.sh It builds a toy two-stage pipeline, blesses a baseline, then drops a cents-to-dollars conversion in staging. A unit test and the orders-vs-staging tie-out both stay green everything scaled in lockstep ; the baseline diff catches sum amount jumping $134.50 → $13,450 and escalates it. git clone https://github.com/10fra/data-review.git cd data-review && ./install.sh install.sh builds the venv, links the skill into ~/.claude/skills/ , and runs the tests; re-run after a git pull . A consumer project carries a data-review.yml and committed baselines under .data-review/baselines/ . In a project with a data-review.yml , ask Claude Code: review the data impact of this branch Auto-discovered from ~/.claude/skills/ , it runs the evidence scripts, then reviews the diff through ten failure-class lenses each seeded from a real production bug , checks every delta against the PR's Expected data impact , and verifies each finding adversarially before it reaches the report. Deterministic, so runnable by hand or in CI. The data-review launcher uses the repo's venv from any consumer directory: data-review blast --manifest data-review.yml --diff main...HEAD diff × manifest → tier plan data-review bless --manifest data-review.yml --lane