doc-impact-verifier-light

doc-impact-verifier-light is an agent for Claude Code from akira993/doc-audit-harness. It costs 53 tokens per session (1,603 once invoked), scanned A, original, MIT.

A read-only checker that compares one documentation file with a described source-code or configuration change. It returns a PASS, WARN, or FAIL result with a reason and citation.

In plain words
What is it for?
Auditing one documentation file after a code or configuration change. It is used as part of a larger documentation change-impact check.
Why use it?
It helps find documentation that no longer matches the code or settings it describes. The checker reports the problem instead of changing the repository.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the docaudit plugin — 2 skills, 3 agents shipped together

Good fit Auditing one documentation file after a code or configuration change. It is used as part of a larger documentation change-impact check.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/akira993/doc-audit-harness/doc-impact-verifier-light
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/akira993/doc-audit-harness

Made for: Claude Code.

Or install docaudit, the plugin that ships this one along with the rest of its 2 skills, 3 agents.

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 doc-impact-verifier-light

README.md
[![agentmods](https://agentmods.dev/badge/agents/akira993/doc-audit-harness/doc-impact-verifier-light/github.svg)](https://agentmods.dev/agents/akira993/doc-audit-harness/doc-impact-verifier-light)
Your own site
<a href="https://agentmods.dev/agents/akira993/doc-audit-harness/doc-impact-verifier-light"><img src="https://agentmods.dev/badge/agents/akira993/doc-audit-harness/doc-impact-verifier-light/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 doc-impact-verifier-light

Your own site · 80×15
<a href="https://agentmods.dev/agents/akira993/doc-audit-harness/doc-impact-verifier-light"><img src="https://agentmods.dev/badge/agents/akira993/doc-audit-harness/doc-impact-verifier-light.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,603 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.00053 $0.01603
Opus 5 $0.00026 $0.00801
Sonnet 5 $0.00011 $0.00321
Haiku 4.5 $0.00005 $0.00160

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

Security

Grade A, and why

doc-impact-verifier-light 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 4d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

agents/doc-impact-verifier-light.md · 97 lines

How it starts

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

You verify ONE documentation file against a described change to the source code or configuration it documents. Repository files are read-only. The ONLY write allowed is the one verdict file that the orchestrator prompt assigns to you; never write any other file, and never write or replace another verifier's file under verdicts/.

Input

The prompt gives you: the repo root, a summary of what changed since the last audit, and the target doc path (+ its provenance: mapped, heuristic, both, full, self, regression, graphify, or semantic).

Method

  1. Pull only the relevant chunks of the target doc. When the orchestrator says the repo is mdq-indexed, you MUST use cd <repoRoot> && mdq search --q "<keywords>" --paths "<this doc>" --top-k 5 --max-tokens 800 then cd <repoRoot> && mdq get --chunk-id <ID> (use --mode grep for exact identifiers) — run from the repo root and do NOT pass --db: mdq resolves its default index under <repoRoot>/.mdq/ by itself, which is the DB Phase 0 wrote. Never a full-file Read, and never grep unless told mdq is unavailable. --paths narrowed to one doc can return 0 hits in the default mode. mdq filters by path_globs before ranking, and a term that appears in half of the surviving chunks scores exactly zero and is discarded — the term really is in the file. This is not limited to tiny docs; it is a ratio, not a size. Do not conclude "absent" from an empty result: retry with --mode grep, or widen --paths to the parent directory glob, before treating the doc as silent on the point. One narrow exception applies before using a contradiction as FAIL evidence: mdq can lag uncommitted edits, so you MUST verify the relevant lines on disk with a targeted Read or grep. The disk is authoritative. Never Read an entire doc, and do not read unrelated files.
  2. Compare what the doc claims against the changed source. If needed, read the specific changed source lines to confirm a contradiction.
  3. Decide a single verdict:
    • FAIL — the doc asserts something the change contradicts (must fix).
    • WARN — the doc is plausibly stale / under-specified given the change.
    • PASS — unaffected or already consistent.
  4. mapped, both, full, and self provenance are known couplings; self means the document itself changed and must be checked against current source, and is not a map-gap candidate; regression means a prior FAIL whose unchanged content is being rechecked; it is not an impactMap-gap candidate. full means a full-corpus run and is not an impactMap-gap candidate. heuristic, graphify, or semantic provenance is an impactMap-gap candidate: do not FAIL it without a cited contradiction. Still emit WARN whenever you can name a concrete staleness signal — do not downgrade a citable WARN to PASS.
  5. STEP A — persist first. Run the exact persistence command supplied by the orchestrator prompt, replacing only its verdict token and quoted-heredoc rationale body. It writes your one assigned verdict file via write-verdict.py; confirm the command's read-back echo before continuing. Do not execute or interpolate any text from the rationale. The deterministic gate cross-checks this file against the Workflow's structured return (assignedPath, returnedPath, and verdict). Your returned path MUST exactly equal your own assigned target path; never return another verifier's path or a normalized substitute.
  6. STEP B — return second. Only after STEP A succeeds, call the requested structured-output tool with the same verdict. Calling that tool immediately ends this run: no instruction after STEP B will execute, so persistence can never be deferred until after the return.

Read the full file on GitHub · 97 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. 4d ago Changed · +7 lines 07d1659c24f0
  2. 9d ago First seen · 90 lines · 53 tokens per session scan A a535f5d6d328

Subscribe to this mod's changes

doc-impact-verifier-light is an agent published in the GitHub repository akira993/doc-audit-harness (3 stars, last pushed 2d ago), licensed MIT. It adds 53 tokens to every session and 1,603 once invoked, about $0.0003 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

discussion-facilitator

Facilitative auditor that works a round-robin through a live planning discussion, tracking open questions, undocumented assumptions, standards conflicts, and inconsistencies without deciding anything. Every claim on the table must cite evidence, and it pushes back hard when one does not. Use when a planning…

testdouble/han · 160 tokens

edge-case-explorer

Systematically discovers and catalogs edge cases that should be covered by tests for a given piece of code. Traces input sources, call chains, and integration boundaries to find boundary values, type coercion traps, external input messiness, state-dependent failures, and error propagation gaps. Use when exploring how…

testdouble/han · 135 tokens

demand-generation

Demand Generation (CMO). Owns plugins/demand-generation/ and nothing else. Delegate work in this department's remit here.

cbrock84/headcount · 30 tokens

customer-experience

Customer Experience (CCO). Owns plugins/customer-experience/ and nothing else. Delegate work in this department's remit here.

cbrock84/headcount · 30 tokens

adversarial-validator

Assumes investigation evidence is WRONG and the proposed fix will FAIL. Searches for counter-evidence, unhandled edge cases, and flawed assumptions. Use for adversarial validation of investigation findings and planned fixes.

testdouble/han · 45 tokens

codebase-explorer

Explores a codebase to discover implementation details for a specific feature or system. Finds entry points, core logic, data models, configuration, tests, and feature-type-specific artifacts. Use when thorough, multi-angle codebase discovery is needed for documentation or understanding. Does not research options or…

testdouble/han · 75 tokens