research-verify

research-verify is a command for Claude Code from drobins25/craft. It costs 28 tokens per session (2,942 once invoked), scanned A, original, MIT.

A command for checking completed research findings against independent primary sources. Primary sources are original evidence, such as official records, direct measurements, or the original research paper.

In plain words
What is it for?
Use it to select completed research, review its findings and confidence levels, and validate those findings against independent original sources.
Why use it?
It tests whether existing claims are actually supported, rather than treating agreement between sources as sufficient proof. The process can confirm or challenge the findings.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the craft plugin — 11 skills, 33 commands, 27 agents, 7 hooks, 1 MCP server shipped together

Good fit Use it to select completed research, review its findings and confidence levels, and validate those findings against independent original sources.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/drobins25/craft/craft-research-verify
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/drobins25/craft

Made for: Claude Code.

Or install craft, the plugin that ships this one along with the rest of its 11 skills, 33 commands, 27 agents, 7 hooks, 1 MCP server.

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 research-verify

README.md
[![agentmods](https://agentmods.dev/badge/commands/drobins25/craft/craft-research-verify.svg)](https://agentmods.dev/commands/drobins25/craft/craft-research-verify)
Your own site
<a href="https://agentmods.dev/commands/drobins25/craft/craft-research-verify"><img src="https://agentmods.dev/badge/commands/drobins25/craft/craft-research-verify.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,942 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.00028 $0.02942
Opus 5 $0.00014 $0.01471
Sonnet 5 $0.00006 $0.00588
Haiku 4.5 $0.00003 $0.00294

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

Security

Grade A, and why

research-verify 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 8d 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.

commands/craft-research-verify.md · 305 lines

How it starts

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

Research Verify

Verify existing research by challenging claims against independent primary sources. This is NOT "go deeper" - it's adversarial validation. The goal is to confirm or refute what the research already says.

Project Root

Use $CRAFT_PROJECT_ROOT (set at session start) as the base path for all .craft/ references. If not set, resolve by walking up from PWD to find the nearest .craft/.global-state.

Set PROJECT to ${CRAFT_PROJECT_ROOT:-.}.

Flow

Step 1: Select Topic

If args contain a topic slug that matches a folder in $PROJECT/.craft/research/: -> Use that topic. Jump to Step 2.

If no args or no match: Use Glob with pattern $PROJECT/.craft/research/*/_plan.md to find all topics.

For each, use Read with limit: 15 to get frontmatter. Only show topics with status: complete.

Use AskUserQuestion to pick a topic.

Step 2: Extract Findings

Read the topic's _plan.md in full.

Use Glob to find all branch files: $PROJECT/.craft/research/{topic-slug}/[0-9]*.md

For each branch file, use Read to extract:

  • All ### Finding N: {title} entries
  • Their **Confidence:** level (HIGH/MEDIUM/LOW)
  • Their **Sources:** references

Build a findings list:

| # | Branch | Finding | Confidence | Sources |
|---|--------|---------|------------|---------|
| 1 | 02-claude-code-ecosystem | PostToolUse payload uses tool_response not tool_output | HIGH | [1][2] |
| 2 | 02-claude-code-ecosystem | AskUserQuestion answers live in tool_input | HIGH | [1][2][3] |
| 3 | 01-multi-agent-frameworks | OpenHands dominates at 70.9K stars | MEDIUM | [1] |
...

Also check for existing verification-*.md files - mark already-verified findings so the user doesn't re-verify them.

Step 3: Choose Verification Mode

Present the findings table to the user, then ask how they want to verify.

Use AskUserQuestion:

question: "How should I verify these {N} findings?"
header: "Verification Mode"
options:
  - label: "Source verification"
    description: "Check claims against independent primary sources (verifier agents)"
  - label: "Practitioner review"
    description: "Challenge claims from practical experience - catches 'true in docs, wrong in practice'"
  - label: "Both passes"
    description: "Source verification first, then practitioner review on the results"
  - label: "Cancel"
    description: "Back out"

Read the full file on GitHub · 305 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. 8d ago First seen · 305 lines · 28 tokens per session scan A 2d0f465799dc

Subscribe to this mod's changes

research-verify is a command published in the GitHub repository drobins25/craft (53 stars, last pushed yesterday), licensed MIT. It adds 28 tokens to every session and 2,942 once invoked, about $0.0001 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.