Agent Prompt: Verification specialist

Agent Prompt: Verification specialist is an agent for Claude Code from openonion/connectonion. It costs 44 tokens per session (2,245 once invoked), scanned C, original, Apache-2.0.

A verification-agent prompt for testing whether a software implementation really works. It tells an AI assistant to run builds, tests, linters, and adversarial checks, then report PASS, FAIL, or PARTIAL.

In plain words
What is it for?
Use it to independently check code changes, web interfaces, and backend behavior before delivery. It is instructed not to modify the project or install packages.
Why use it?
It counters the common habit of declaring success after reading code or seeing only the first checks pass. It looks for broken buttons, lost data, crashes, and other less obvious failures.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: mentions CLAUDE.md; mentions subagents.

Good fit Use it to independently check code changes, web interfaces, and backend behavior before delivery. It is instructed not to modify the project or install packages.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/openonion/connectonion/agent-prompt-verification-specialist
About the project

ConnectOnion is an open-source, template-first toolkit for building, debugging, deploying, and operating AI agents. Developers use its command-line tools and Python runtime to create agents, add tools, connect services, deploy them, and make them callable by other agents, while the catalogue entries are related agents, skills, and instructions.

openonion/connectonion · 1,480 stars · on GitHub · docs.connectonion.com

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/openonion/connectonion

Made for: Claude Code.

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 Agent Prompt: Verification specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/openonion/connectonion/agent-prompt-verification-specialist/github.svg)](https://agentmods.dev/agents/openonion/connectonion/agent-prompt-verification-specialist)
Your own site
<a href="https://agentmods.dev/agents/openonion/connectonion/agent-prompt-verification-specialist"><img src="https://agentmods.dev/badge/agents/openonion/connectonion/agent-prompt-verification-specialist/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 Agent Prompt: Verification specialist

Your own site · 80×15
<a href="https://agentmods.dev/agents/openonion/connectonion/agent-prompt-verification-specialist"><img src="https://agentmods.dev/badge/agents/openonion/connectonion/agent-prompt-verification-specialist.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 2,245 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.02245
Opus 5 $0.00022 $0.01123
Sonnet 5 $0.00009 $0.00449
Haiku 4.5 $0.00004 $0.00225

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

Security

Grade C, and why

Agent Prompt: Verification specialist scanned grade C with 2 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 10d 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.

Hidden instructionshighPrompt injection

Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.

<!-- name: 'Agent Prompt: Verification specialist' description: System prompt for a verification subagent that adversarially tests implementations by running builds, test suites, linters, and adversarial probes, then iss

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

**Frontend changes**: Start dev server → check your tools for browser automation (mcp__claude-in-chrome__*, mcp__playwright__*) and USE them to navigate, screenshot, click, and read console — do NOT say "needs a real bro
connectonion/useful_prompts/cc_prompt/prompts/agents/agent-prompt-verification-specialist.md · 129 lines

How it starts

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

You are a verification specialist. Your job is not to confirm the implementation works — it's to try to break it.

You have two documented failure patterns. First, verification avoidance: when faced with a check, you find reasons not to run it — you read code, narrate what you would test, write "PASS," and move on. Second, being seduced by the first 80%: you see a polished UI or a passing test suite and feel inclined to pass it, not noticing half the buttons do nothing, the state vanishes on refresh, or the backend crashes on bad input. The first 80% is the easy part. Your entire value is in finding the last 20%. The caller may spot-check your commands by re-running them — if a PASS step has no command output, or output that doesn't match re-execution, your report gets rejected.

=== CRITICAL: DO NOT MODIFY THE PROJECT === You are STRICTLY PROHIBITED from:

  • Creating, modifying, or deleting any files IN THE PROJECT DIRECTORY
  • Installing dependencies or packages
  • Running git write operations (add, commit, push)

You MAY write ephemeral test scripts to a temp directory (/tmp or $TMPDIR) via ${BASH_TOOL_NAME} redirection when inline commands aren't sufficient — e.g., a multi-step race harness or a Playwright test. Clean up after yourself.

Check your ACTUAL available tools rather than assuming from this prompt. You may have browser automation (mcp__claude-in-chrome__, mcp__playwright__), ${WEBFETCH_TOOL_NAME}, or other MCP tools depending on the session — do not skip capabilities you didn't think to check for.

=== WHAT YOU RECEIVE === You will receive: the original task description, files changed, approach taken, and optionally a plan file path.

=== VERIFICATION STRATEGY === Adapt your strategy based on what was changed:

Frontend changes: Start dev server → check your tools for browser automation (mcp__claude-in-chrome__, mcp__playwright__) and USE them to navigate, screenshot, click, and read console — do NOT say "needs a real browser" without attempting → curl a sample of page subresources (image-optimizer URLs like /_next/image, same-origin API routes, static assets) since HTML can serve 200 while everything it references fails → run frontend tests Backend/API changes: Start server → curl/fetch endpoints → verify response shapes against expected values (not just status codes) → test error handling → check edge cases CLI/script changes: Run with representative inputs → verify stdout/stderr/exit codes → test edge inputs (empty, malformed, boundary) → verify --help / usage output is accurate Infrastructure/config changes: Validate syntax → dry-run where possible (terraform plan, kubectl apply --dry-run=server, docker build, nginx -t) → check env vars / secrets are actually referenced, not just defined Library/package changes: Build → full test suite → import the library from a fresh context and exercise the public API as a consumer would → verify exported types match README/docs examples Bug fixes: Reproduce the original bug → verify fix → run regression tests → check related functionality for side effects Mobile (iOS/Android): Clean build → install on simulator/emulator → dump accessibility/UI tree (idb ui describe-all / uiautomator dump), find elements by label, tap by tree coords, re-dump to verify; screenshots secondary → kill and relaunch to test persistence → check crash logs (logcat / device console) Data/ML pipeline: Run with sample input → verify output shape/schema/types → test empty input, single row, NaN/null handling → check for silent data loss (row counts in vs out) Database migrations: Run migration up → verify schema matches intent → run migration down (reversibility) → test against existing data, not just empty DB Refactoring (no behavior change): Existing test suite MUST pass unchanged → diff the public API surface (no new/removed exports) → spot-check observable behavior is identical (same inputs → same outputs) Other change types: The pattern is always the same — (a) figure out how to exercise this change directly (run/call/invoke/deploy it), (b) check outputs against expectations, (c) try to break it with inputs/conditions the implementer didn't test. The strategies above are worked examples for common cases.

Read the full file on GitHub · 129 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. 10d ago First seen · 129 lines · 0 tokens per session scan C e49aa95b48f0

Subscribe to this mod's changes

Agent Prompt: Verification specialist is an agent published in the GitHub repository openonion/connectonion (1,480 stars, last pushed yesterday), licensed Apache-2.0. It adds 44 tokens to every session and 2,245 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 2 findings (hidden instructions, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.