doc-impact-verifier

doc-impact-verifier is an agent for Claude Code from akira993/doc-audit-harness. It costs 45 tokens per session (1,595 once invoked), scanned A, a copy of doc-impact-verifier-light, 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?
Checking one documentation file during a documentation impact audit, including changes that need broader or regression-focused verification.
Why use it?
It helps identify documentation that may have become inaccurate after a code or settings change. It reports findings and does not update 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 Checking one documentation file during a documentation impact audit, including changes that need broader or regression-focused verification.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/akira993/doc-audit-harness/doc-impact-verifier"><img src="https://agentmods.dev/badge/agents/akira993/doc-audit-harness/doc-impact-verifier.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 45 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,595 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 92% copy Near-identical to another mod 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.00045 $0.01595
Opus 5 $0.00023 $0.00797
Sonnet 5 $0.00009 $0.00319
Haiku 4.5 $0.00005 $0.00160

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

Security

Grade A, and why

doc-impact-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 3d 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

This is a copy

92% identical to doc-impact-verifier-light — 6 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

agents/doc-impact-verifier.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. 3d ago Changed · +7 lines dfa5ca013490
  2. 8d ago First seen · 90 lines · 45 tokens per session scan A 6df185316a82

Subscribe to this mod's changes

doc-impact-verifier is an agent published in the GitHub repository akira993/doc-audit-harness (3 stars, last pushed yesterday), licensed MIT. It adds 45 tokens to every session and 1,595 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to doc-impact-verifier-light, differing in 6 lines, and is treated as a copy.

Related

Other agents, from other repositories

customer-experience

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

cbrock84/headcount · 30 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

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

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