verifier

verifier is an agent for Claude Code from artemnovichkov/skills. It costs 44 tokens per session (482 once invoked), scanned A, original, MIT.

A verification agent that runs the application, tests changed behaviour and nearby flows, and reports what worked. It only reports findings and does not edit or fix files.

In plain words
What is it for?
Use it after implementing a change to build and test the project, exercise relevant command-line, user-interface, or HTTP flows, and compare results with the planned behaviour.
Why use it?
It checks changes in the environment where they will run, helping reveal broken builds, failed tests, and regressions before a human reviews the work.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md.

Part of the sdlc plugin — 1 skill, 8 commands, 1 agent, 1 hook shipped together

Good fit Use it after implementing a change to build and test the project, exercise relevant command-line, user-interface, or HTTP flows, and compare results with the planned behaviour.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/artemnovichkov/skills/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/artemnovichkov/skills

Made for: Claude Code.

Or install sdlc, the plugin that ships this one along with the rest of its 1 skill, 8 commands, 1 agent, 1 hook.

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/artemnovichkov/skills/verifier/github.svg)](https://agentmods.dev/agents/artemnovichkov/skills/verifier)
Your own site
<a href="https://agentmods.dev/agents/artemnovichkov/skills/verifier"><img src="https://agentmods.dev/badge/agents/artemnovichkov/skills/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 verifier

Your own site · 80×15
<a href="https://agentmods.dev/agents/artemnovichkov/skills/verifier"><img src="https://agentmods.dev/badge/agents/artemnovichkov/skills/verifier.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 482 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.00044 $0.00482
Opus 5 $0.00022 $0.00241
Sonnet 5 $0.00009 $0.00096
Haiku 4.5 $0.00004 $0.00048

Measured yesterday against content hash 679e2687acca, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

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 yesterday.

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.

skills/sdlc/agents/verifier.md · 26 lines

What it actually says

You verify changes by exercising them. You do not fix anything, ever — not a typo, not an obvious one-line bug. Fixing is someone else's job, and a verifier that edits code cannot be trusted to report honestly on it.

What you do

  1. Find the change. git diff and git status for uncommitted work, git diff <base>...HEAD on a branch. Read the changed files.
  2. Find how to run things. CLAUDE.md first — it should list build, test, and run commands with examples of healthy output. Then Makefile, package.json, Package.swift, project schemes.
  3. Build and test. Run them. Capture literal output.
  4. Exercise the changed behaviour. Run the app or the relevant entry point and drive the path the change affects. Use whatever the environment offers: CLI invocation, a test harness, a simulator, a driven UI session, an HTTP request.
  5. Exercise the neighbours. The flows next to the change are where regressions land — the caller, the sibling case, the error path, the empty state. Pick two or three and try them.
  6. Check against intent. If sdlc/plan/<slug>.md or sdlc/spec/<slug>.md exists for this change, check the observed behaviour against what they promised.

What you report

  • Worked: what you exercised and what you observed. Observations, not assurances.
  • Failed: what broke, with the literal output or error.
  • Not verified: what you could not exercise and why. This section is mandatory — if it is empty, say so explicitly rather than omitting it.
  • Divergence from plan/spec: where the behaviour does not match what was promised.

Never say "should work", "looks correct", or "appears fine". Either you ran it and saw the result, or it goes under "not verified".

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. yesterday First seen · 26 lines · 44 tokens per session scan A 679e2687acca

Subscribe to this mod's changes

verifier is an agent published in the GitHub repository artemnovichkov/skills (36 stars, last pushed yesterday), licensed MIT. It adds 44 tokens to every session and 482 once invoked, about $0.0002 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-09-07.

Related

Other agents, from other repositories

test-generator

Test generator for Shopware 6 tests. Execution environment for test generation skills — do not invoke directly. Skills fork into this agent via context: fork. Does not review tests — use the appropriate reviewer agent for that.

shopwareLabs/ai-coding-tools · 47 tokens

ecosystem-specialist

Multi-language build, test, and lint specialist. Detects which ecosystems a change set touches and runs the correct verification commands for each. Use proactively after code changes, or when the user says 'build', 'test', 'lint', or 'check'.

melodic-software/claude-code-plugins · 56 tokens

test-adversary

Adversarial test reviewer for consensus stress-testing. Execution environment for adversarial reviewing skills. Spawned per wave during team review. Forms independent assessment before seeing consensus, then challenges weak findings and resurrects premature withdrawals with evidence.

shopwareLabs/ai-coding-tools · 53 tokens

test-reviewer

Read-only test reviewer for Shopware 6 compliance analysis. Execution environment for reviewing and reconciling skills. Spawned per wave during team review, or by a standalone orchestrator.

shopwareLabs/ai-coding-tools · 43 tokens

dev-tooling-runner

Runs Shopware dev-tooling checks — PHPStan, ECS, PHPUnit, Rector, ESLint, Stylelint, Prettier, TypeScript, Jest, Vitest, ludtwig, and Vite/Webpack builds — plus the rule-driven fixers (ecsfix, rectorfix, eslint/stylelint/prettier/ludtwig fix) on the files it is given and returns a condensed pass/fail report. Use when…

shopwareLabs/ai-coding-tools · 141 tokens

new-hire

Validates documentation by simulating a developer with zero project knowledge. Use when testing README setup instructions, onboarding flows, or auditing documentation quality. PROACTIVELY USE this agent when docs may be outdated.

jimmc414/claude-code-plugin-marketplace · 45 tokens