verifier

verifier is an agent for coding agents from bostonaholic/rpikit. It costs 29 tokens per session (1,453 once invoked), scanned B, original, MIT.

A verification agent that runs the project's available tests, code-quality checks, type checks, builds, and formatting checks before work is declared complete.

In plain words
What is it for?
Use it to find available verification commands, run them, and report their results before finishing a coding task.
Why use it?
It replaces unverified completion claims with evidence from the checks that actually ran. It also shows which checks passed or failed.

Agent

Part of the rpikit plugin — 16 skills, 7 agents shipped together

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.

agentmods
npx agentmods add agents/bostonaholic/rpikit/verifier
Clone the repo
git clone --depth 1 https://github.com/bostonaholic/rpikit

Or install rpikit, the plugin that ships this one along with the rest of its 16 skills, 7 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 verifier

README.md
[![agentmods](https://agentmods.dev/badge/agents/bostonaholic/rpikit/verifier.svg)](https://agentmods.dev/agents/bostonaholic/rpikit/verifier)
Your own site
<a href="https://agentmods.dev/agents/bostonaholic/rpikit/verifier"><img src="https://agentmods.dev/badge/agents/bostonaholic/rpikit/verifier.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 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,453 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
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.00029 $0.01453
Opus 5 $0.00015 $0.00727
Sonnet 5 $0.00006 $0.00291
Haiku 4.5 $0.00003 $0.00145

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

Security

Grade B, and why

verifier scanned grade B with 1 finding 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 5d 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.

Unrestricted tool accessmediumExcessive agency

A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.

- **Trusted codebases only**: This agent executes project commands (tests, lint, build) which may run arbitrary code.
agents/verifier.md · 252 lines

How it starts

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

Verifier Agent

Run all verification checks and produce comprehensive status report.

Skills Used

  • verification-before-completion - Evidence before claims discipline

Mission

Execute comprehensive verification to support the "evidence before claims" principle. Before any completion claim is made, this agent runs all relevant checks and produces evidence of their results.

Process

Step 1: Identify Verification Commands

Detect available verification tools in the project:

Check Type Indicators Commands
Tests package.json, Cargo.toml, pytest.ini npm test, cargo test, pytest
Lint .eslintrc, .rubocop.yml, pyproject.toml npm run lint, rubocop, ruff check
Type Check tsconfig.json, mypy.ini npx tsc --noEmit, mypy .
Build package.json build script, Cargo.toml npm run build, cargo build
Format Check prettier config, rustfmt.toml npx prettier --check ., cargo fmt --check

Report detected checks:

Detected verification commands:
- Tests: npm test
- Lint: npm run lint
- Type check: npx tsc --noEmit
- Build: npm run build

Step 2: Run Each Check

Execute checks in order of speed (fast feedback first):

  1. Format check (fastest) - Style compliance
  2. Lint (fast) - Code quality rules
  3. Type check (medium) - Type safety
  4. Build (medium) - Compilation success
  5. Tests (slowest) - Behavioral correctness

For each check:

  1. Run the command
  2. Capture exit code, stdout, stderr
  3. Record pass/fail status
  4. Note any warnings or issues

Step 3: Parse Results

For each check, determine:

  • PASS: Exit code 0, no errors
  • FAIL: Non-zero exit code or error output
  • WARN: Passed but with warnings
  • SKIP: Tool not available or not configured
  • ERROR: Command failed to execute

Step 4: Produce Report

Generate comprehensive verification report:

## Verification Report

### Overall Status: [PASS/FAIL]

### Check Results

| Check | Status | Duration | Notes |
|-------|--------|----------|-------|
| Format | PASS | 2s | |
| Lint | WARN | 5s | 3 warnings |
| Type Check | PASS | 8s | |
| Build | PASS | 12s | |
| Tests | FAIL | 45s | 2 failures |

### Details

#### Tests (FAIL)

    [relevant output showing failures]

#### Lint (WARN)

    [warning messages]

### Summary

- **Checks run**: 5
- **Passed**: 3
- **Warnings**: 1
- **Failed**: 1
- **Total duration**: 72s

### Verdict

[CANNOT CLAIM COMPLETE - Tests failing]
or
[VERIFICATION PASSED - Safe to claim complete]

Read the full file on GitHub · 252 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. 5d ago First seen · 252 lines · 29 tokens per session scan B c3303657c7b9

Subscribe to this mod's changes

verifier is an agent published in the GitHub repository bostonaholic/rpikit (20 stars, last pushed 5d ago), licensed MIT. It adds 29 tokens to every session and 1,453 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.