change-verifier

change-verifier is an agent for Claude Code from jhlee0409/omni-harness-kit. It costs 104 tokens per session (958 once invoked), scanned A, original, MIT.

A completion checker for code changes that independently verifies renamed interfaces, new fields, components, endpoints, and their uses. An endpoint is a callable part of an application, while a callsite is a place where code uses something.

In plain words
What is it for?
Use it before declaring a migration, interface change, or connected feature complete. It checks the change, searches its users, traces new pieces through the system, and tests them.
Why use it?
It finds stale references, missing connections, and changes that exist in code but are never used. It also runs affected tests before a change is reported as finished.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the harness-kit plugin — 18 skills, 28 agents, 2 hooks shipped together

Good fit Use it before declaring a migration, interface change, or connected feature complete. It checks the change, searches its users, traces new pieces through the system, and tests them.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/jhlee0409/omni-harness-kit/change-verifier
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/jhlee0409/omni-harness-kit

Made for: Claude Code.

Or install harness-kit, the plugin that ships this one along with the rest of its 18 skills, 28 agents, 2 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for change-verifier

README.md
[![agentmods](https://agentmods.dev/badge/agents/jhlee0409/omni-harness-kit/change-verifier/github.svg)](https://agentmods.dev/agents/jhlee0409/omni-harness-kit/change-verifier)
Your own site
<a href="https://agentmods.dev/agents/jhlee0409/omni-harness-kit/change-verifier"><img src="https://agentmods.dev/badge/agents/jhlee0409/omni-harness-kit/change-verifier/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for change-verifier

Your own site · 80×15
<a href="https://agentmods.dev/agents/jhlee0409/omni-harness-kit/change-verifier"><img src="https://agentmods.dev/badge/agents/jhlee0409/omni-harness-kit/change-verifier.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 958 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00104 $0.00958
Opus 5 $0.00052 $0.00479
Sonnet 5 $0.00021 $0.00192
Haiku 4.5 $0.00010 $0.00096

Measured 9d ago against content hash 5142b62cd3c6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

change-verifier scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/change-verifier.md · 73 lines

How it starts

The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the change verifier. You are a fresh-context critic: you did NOT make this change and you do not assume it is correct. Your job is to independently prove a change is complete — or list exactly what is missing.

Procedure

  1. Scope the change. git diff --stat and git diff to see changed files and symbols. Identify renamed / added / removed functions, API endpoints, DB collection/table names, fields, and components.

  2. Stale-reference sweep. Enumerate every callsite via the blast-radius protocol (LSP references + AST + a ripgrep sweep of BOTH the old and new names, excluding node_modules, .venv, dist, build, .next, vendored dirs). Confirm: no callsite still uses the old name, every callsite of a changed signature was updated, and the protocol's UNKNOWN regions (dynamic / reflection / generated) were checked by hand — an unresolved edge is a gap, not a pass.

  3. Wiring check. Trace each new field / prop / component / endpoint end to end — is it actually consumed? A new field no code reads, a component imported but never rendered, an endpoint with no caller = incomplete.

  4. Tests. Detect the test runner from the repo and run the affected tests:

    • Node: vitest/jest/mocha (check package.json scripts — npm test).
    • Python: pytest. Go: go test ./.... Rust: cargo test. Match the repo. Report pass/fail counts. A passing test against a fake or wrong shape (e.g. a test that exercises a dynamic route the production server never serves) is NOT proof — flag it as verification theater, do not count it.
  5. Real-run evidence. For any "feature is done" claim, require a real end-to-end artifact — a real authenticated request, real input, real output (a real file, real HTTP response body, real DB/store record with the expected fields). Build/unit-test green is necessary but not sufficient. Without that artifact the verdict for the feature is CANNOT VERIFY.

Output (BLUF header first)

Read the full file on GitHub · 73 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 73 lines · 104 tokens per session scan A 5142b62cd3c6

Subscribe to this mod's changes

change-verifier is an agent published in the GitHub repository jhlee0409/omni-harness-kit (2 stars, last pushed 1mo ago), licensed MIT. It adds 104 tokens to every session and 958 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

wisp-self-test

A canary subagent bundled with wisp-agentdiff that verifies the WorktreeCreate / WorktreeRemove hooks are wired correctly end-to-end. Use this when the user asks to "test wisp-agentdiff", "verify wisp-agentdiff", "check if wisp-agentdiff is working", or after a fresh /plugin install wisp-agentdiff to confirm the…

Samuel0101010/wisp-agentdiff · 108 tokens

qa

QA and testing expert for test strategy review, coverage analysis, assertion quality, mocking patterns, and TDD practices. Use when reviewing test code, evaluating test coverage, or assessing testing strategy.

restarter/lets-workflow · 40 tokens

engineer

Software engineer specialist (IRC handle @dev) dispatched to write and test application code, database schema migrations, and infrastructure configuration files.

NexaDuo/mARC · 30 tokens

doc-sync-scan

Cold doc-sync judge — the commit door's scope-overload valve. Given a diff and a mechanically enumerated scan scope (reverse-citer read-set + grep-hit files + link-target files), judges each scope doc against the diff's claims and runs a diff-scoped new-assertion residual, returning stale-doc candidates for the…

RockyHong/super-bootstrap · 0 tokens

verifier

Use proactively after builder or architect completes any task that edited files. Reviews the diff against the task's intent before the result is accepted. Read-only reviewer; never fixes anything itself.

Adityaraj0421/gearbox · 39 tokens

implementer

Full-stack implementation specialist for isolated worktree work. Follows existing codebase patterns, implements a single task independently with tests. Use for /lets:team parallel implementation.

restarter/lets-workflow · 37 tokens