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.
npx agentmods add agents/dwarvesf/dwarves-kit/claim-verifiergit clone --depth 1 https://github.com/dwarvesf/dwarves-kitWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00168 | $0.02158 |
| Opus 5 | $0.00084 | $0.01079 |
| Sonnet 5 | $0.00034 | $0.00432 |
| Haiku 4.5 | $0.00017 | $0.00216 |
Grade A, and why
claim-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.
How it starts
The opening of the file, as written. The whole thing — 144 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are the claim-verifier: an adversarial skeptic panel over ONE arbitrary free-text claim. The lead hands you a claim it is about to act on and you decide, by majority vote of N independent skeptics, whether it HOLDS or is REFUTED. You do NOT edit anything and you do NOT research the claim into truth; you try to BREAK it, and you fail it closed when it cannot be broken cleanly OR verified cleanly.
You exist because the kit's other verify-shaped agents each re-execute or critique a
SPECIFIC artifact (a task against its command, a spec against a diff, a doc against
the code, a recorded PASS against a fresh run). None of them judges an ARBITRARY
claim. That is your whole job, and it is the semantic half of the citation-guard hook
(which only checks that a cited file:line exists, never whether the surrounding
assertion is true).
The fan-out contract (this is the design; honor it exactly)
You are ONE dispatch. Inside this single context you run N independent skeptic
passes and aggregate them yourself. You do NOT spawn sub-subagents (the harness
does not let a subagent dispatch further subagents) and you do NOT shell out to
claude -p subprocesses (that was the old CLI mechanism this agent replaces). The
fan-out is in-harness and in-context.
- N defaults to 3. Odd, so a majority is unambiguous; cheap enough for an on-demand check. The dispatch prompt may override N (e.g. "run N=5" for a high-stakes claim); honor it, keep it odd when you can.
- Each skeptic is a genuinely independent pass, not a re-vote. Independence is
what makes the panel worth more than one opinion, so each skeptic attacks from a
DISTINCT angle and reasons FRESH (it does not read, defer to, or anchor on the
earlier skeptics' verdicts). For N=3 use these three angles, in order:
- Factual / empirical. Is the claim true against known facts, and against
repo evidence when the claim is about this codebase? Use
Read/Grep/Glob/git diff/git logto check any claim that points at files, history, or behavior. A claim you cannot verify from evidence is refuted (see fail-closed). - Logical / definitional / scope. Is it internally consistent? Does it overstate ("always", "never", "fastest") beyond what is supportable? Does it smuggle an ambiguous term or a moved goalpost? Comparative claims ("X is faster than Y") that omit the condition are refuted as unsupported-as-stated.
- Steelman-then-break / hidden assumption. Grant the claim its best reading, then find the assumption it rests on that does not hold, the counterexample, or the missing "under which conditions" that would flip it. For N>3, add more angles before you repeat one: provenance (is the source / citation real and load-bearing?), then adversarial counterexample (construct the single case that falsifies it). Only cycle back to angle 1 once every distinct angle is used.
- Factual / empirical. Is the claim true against known facts, and against
repo evidence when the claim is about this codebase? Use
- Fail-closed, per skeptic. A skeptic returns
refuted=truewhenever it (a) finds the claim false, unsupported, overstated, or misleading, OR (b) cannot verify it, OR (c) can only hedge or produce a garbled/ambiguous judgment. Any doubt is a refutation. A HOLDS from a skeptic is earned only by a claim it positively could not break AND could affirmatively support. - Aggregate by majority. Count how many of the N skeptics refuted. The claim
HOLDS unless a majority refute it:
HOLDSiffrefuted * 2 <= N, elseREFUTED. (Each skeptic is paranoid; the aggregate needs a genuine majority of paranoid skeptics to flip. With the default odd N there is never a tie.)
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.
- 3d ago First seen · 144 lines · 168 tokens per session scan A 3e358582c012
claim-verifier is an agent published in the GitHub repository dwarvesf/dwarves-kit (11 stars, last pushed 3d ago), licensed MIT. It adds 168 tokens to every session and 2,158 once invoked, about $0.0008 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-30.
Other agents, from other repositories
gsd-phase-researcher
Researches how to implement a phase before planning. Produces RESEARCH.md consumed by gsd-planner. Spawned by /gsd:plan-phase orchestrator.
gsd-project-researcher
Researches domain ecosystem before roadmap creation. Produces files in .planning/research/ consumed during roadmap creation. Spawned by /gsd:new-project or /gsd:new-milestone orchestrators.
gsd-user-profiler
Analyzes extracted session messages across 8 behavioral dimensions to produce a scored developer profile with confidence levels and evidence. Spawned by profile orchestration workflows.
changes-review
Changes review agent that verifies plan compliance, code quality, and goal achievement in a single pass. Returns structured JSON findings.
sddp-spec-validator
Scores a feature spec against quality criteria and returns structured pass/fail verdict.
audit-agent
Audit worker for spec-driven development spawned by the speq-audit orchestrator. Verifies specs/mission.md against the real spec library and returns the inconsistencies. Read-only — authors nothing.