verify

verify is a skill for Claude Code from vasuag09/harness-claude. It costs 48 tokens per session (776 once invoked), scanned A, original, MIT.

A verification workflow that runs the changed feature in the application and checks its real behaviour against the stated acceptance criteria.

In plain words
What is it for?
Use it near the end of development to verify screens, endpoints, command-line features, and other user-facing behaviour before release.
Why use it?
Passing automated tests does not always prove that a feature works when used. It checks the running system and also examines named error and edge cases.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the harness-claude plugin — 32 skills, 8 agents, 6 hooks, 3 MCP servers shipped together

Good fit Use it near the end of development to verify screens, endpoints, command-line features, and other user-facing behaviour before release.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vasuag09/harness-claude/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.

Any agent
npx skills add vasuag09/harness-claude --skill verify
Clone the repo
git clone --depth 1 https://github.com/vasuag09/harness-claude

Made for: Claude Code.

Or install harness-claude, the plugin that ships this one along with the rest of its 32 skills, 8 agents, 6 hooks, 3 MCP servers.

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 verify

README.md
[![agentmods](https://agentmods.dev/badge/skills/vasuag09/harness-claude/verify.svg)](https://agentmods.dev/skills/vasuag09/harness-claude/verify)
Your own site
<a href="https://agentmods.dev/skills/vasuag09/harness-claude/verify"><img src="https://agentmods.dev/badge/skills/vasuag09/harness-claude/verify.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 776 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.00048 $0.00776
Opus 5 $0.00024 $0.00388
Sonnet 5 $0.00010 $0.00155
Haiku 4.5 $0.00005 $0.00078

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

Security

Grade A, and why

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.

skills/verify/SKILL.md · 63 lines

How it starts

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

/verify — observe it actually working

Goal: prove the feature does what the spec said, in the running app — green tests are necessary, not sufficient.

Default to NEEDS WORK. Assume the change is not done until the running system proves each criterion with evidence. A clean first pass is suspicious, not reassuring — look harder before you pass it; first attempts usually have a rough edge you haven't found yet.

Do this

  1. Load the criteria from .claude/planning/<slug>/SPEC.md (and PLAN.md for what each task claimed to cover), if present — verify against the recorded AC-n, not memory.
  2. Launch the app/feature the way a user would (dev server in tmux, CLI invocation, the affected screen/endpoint).
  3. Exercise each acceptance criterion against the running system. For web, drive the browser (Playwright/Chrome) and capture a screenshot of the working state.
  4. Check the unhappy paths the spec named: invalid input, empty/error states, edge cases. Confirm errors are handled and messages are sane.
  5. Note anything observed that tests missed → add a regression test (back to /harness-claude:test).

Output — coverage matrix

Build a matrix mapping every AC-n to the evidence and a verdict, and write it to .claude/planning/<slug>/VERIFICATION.md (present it in the reply too; for trivial work, the reply is enough):

## Verification: <title>
| Criterion | Evidence (what you ran / observed) | Verdict |
|-----------|------------------------------------|---------|
| AC-1      | <command / screenshot / log>       | pass    |
| AC-2      | (could not exercise)               | FAIL    |

A criterion you could not actually exercise is FAIL, not blank — never pass on assumption.

Common rationalizations (don't accept these from yourself)

Excuse Reality
"Tests pass, so it works" Tests prove the code does what the tests say — not what the spec says. This gate exists for the gap.
"I can see from the code that AC-3 holds" Reading code is assumption, not evidence. Run it. A criterion you didn't exercise is FAIL, not blank.
"The happy path works; edge cases are covered by tests" The spec's unhappy paths are acceptance criteria too. Drive them in the running system.
"Launching the app is expensive; the diff is low-risk" The matrix needs evidence per AC-n. "Low-risk" is a prediction; verification is an observation.

Read the full file on GitHub · 63 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 · 63 lines · 48 tokens per session scan A 474794550a8e

Subscribe to this mod's changes

verify is a skill published in the GitHub repository vasuag09/harness-claude (2 stars, last pushed 2mo ago), licensed MIT. It adds 48 tokens to every session and 776 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-08-31.

Related

Other skills, from other repositories

ci-tests

Run the test suite for the current repo, auto-detecting Python (pytest/uv), Node (vitest/pnpm), or Rust (cargo test).

FlorianBruniaux/claude-code-plugins · 35 tokens

git-worktree

Create isolated git worktrees for feature development without switching branches.

FlorianBruniaux/claude-code-plugins · 15 tokens

git-worktree-status

Check status of background verification tasks running in a git worktree.

FlorianBruniaux/claude-code-plugins · 17 tokens

python-sdk

Implement or modify Python SDK behavior under python/composio, including tools, toolkits, sessions, auth configs, connected accounts, client integration, and shared Python models. Use for Python core runtime/API work; pair with python-testing and cross-sdk-parity when TypeScript must match.

ComposioHQ/composio · 60 tokens

typescript-providers

Implement, modify, test, or document TypeScript provider packages under ts/packages/providers, including framework adapters for OpenAI, Anthropic, Google, LangChain, Mastra, Vercel, LlamaIndex, Cloudflare, and Claude Agent SDK. Use for provider-specific TS work; do not use for core-only changes.

ComposioHQ/composio · 70 tokens

typescript-sdk

Implement or modify TypeScript SDK behavior in @composio/core or shared TypeScript packages, including tools, toolkits, sessions, auth configs, connected accounts, modifiers, and generated SDK surfaces. Use for TS runtime/API work; pair with typescript-testing for verification and cross-sdk-parity when Python must…

ComposioHQ/composio · 67 tokens