qa-verification

qa-verification is a skill for Claude Code from Samuel0101010/wisp-orchestrator. It costs 30 tokens per session (369 once invoked), scanned A, original, Apache-2.0.

A verification method for quality-assurance agents that requires running checks and reporting command-based evidence.

In plain words
What is it for?
Use it to run builds, tests, lint checks, and smoke checks, then report exact pass or failure evidence without repairing the code.
Why use it?
It prevents claims of success based only on reading code or assuming that tests cover the requested behavior.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter.

Part of the wisp plugin — 12 skills, 1 command, 4 agents, 6 hooks shipped together

Good fit Use it to run builds, tests, lint checks, and smoke checks, then report exact pass or failure evidence without repairing the code.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/samuel0101010/wisp-orchestrator/qa-verification
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 Samuel0101010/wisp-orchestrator --skill qa-verification
Clone the repo
git clone --depth 1 https://github.com/Samuel0101010/wisp-orchestrator

Made for: Claude Code.

Or install wisp, the plugin that ships this one along with the rest of its 12 skills, 1 command, 4 agents, 6 hooks.

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 qa-verification

README.md
[![agentmods](https://agentmods.dev/badge/skills/samuel0101010/wisp-orchestrator/qa-verification.svg)](https://agentmods.dev/skills/samuel0101010/wisp-orchestrator/qa-verification)
Your own site
<a href="https://agentmods.dev/skills/samuel0101010/wisp-orchestrator/qa-verification"><img src="https://agentmods.dev/badge/skills/samuel0101010/wisp-orchestrator/qa-verification.svg" alt="Measured on agentmods" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 369 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.00030 $0.00369
Opus 5 $0.00015 $0.00185
Sonnet 5 $0.00006 $0.00074
Haiku 4.5 $0.00003 $0.00037

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

Security

Grade A, and why

qa-verification 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.

apps/dashboard-server/src/skills/seed/qa-verification/SKILL.md · 28 lines

What it actually says

Your verdict is only as good as the commands you actually ran. Method:

  1. Execute, never assume. Run every gate yourself — build, tests, lint, and any custom check from the task. Reading the code is not verification; command exit codes are.
  2. Check the goal, not just the gates. Green tests on the wrong feature are a FAIL. Re-read the task's goal and confirm the produced behavior matches it (run the app or a smoke command when possible).
  3. Evidence per claim. Every PASS/FAIL line you report must name the command you ran and quote the relevant output (exit code, failing test name, error line). A claim without a command behind it is worthless.
  4. Report failures precisely. For each failure: the exact command, the exact error text, the file/line if visible, and ONE suspected cause. No vague "something seems broken".
  5. Honesty beats optimism. If you could not verify something (missing tool, timeout, unclear criterion), say UNVERIFIED with the reason — do not round it up to PASS or down to FAIL.
  6. Do not fix. You verify. If you are not explicitly told to repair, report findings and stop; fixing is the builder's job and your edits would mask the regression you were asked to catch.
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 · 28 lines · 30 tokens per session scan A 89f4fbd06257

Subscribe to this mod's changes

qa-verification is a skill published in the GitHub repository Samuel0101010/wisp-orchestrator (4 stars, last pushed 4d ago), licensed Apache-2.0. It adds 30 tokens to every session and 369 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

qa

Browser-based QA verification. Launches a real browser, navigates the app, clicks buttons, fills forms, and tests user flows. Works as a standalone skill or as a phase end condition in campaigns. Requires Playwright (optional dependency, graceful skip if not installed).

SethGammon/Citadel · 56 tokens

live-preview

Mid-build visual verification loop. Takes screenshots of components during construction, not just after. Catches visual regressions and invisible features before they compound. Requires Playwright or similar screenshot tool.

SethGammon/Citadel · 40 tokens

test-gen

Generate and verify tests — happy path, edge cases, error paths — using the project's own framework and patterns.

SethGammon/Citadel · 24 tokens

verify

Self-test the Citadel hook pipeline from within a live session. Exercises real tool calls (Write, Edit, Bash, Read) and checks that hooks fired, telemetry accumulated, and no errors occurred. Reports HOOK HEALTH: PASS or HOOK HEALTH: FAIL with a per-hook breakdown.

SethGammon/Citadel · 60 tokens

browser-check

Drive a real browser and come back with a MEASUREMENT rather than an impression - console errors and >=400 responses as counts, computed styles as JSON when appearance is disputed. Use when work touches UI, when a review must verify one, or when fidelity-gate asks for its measurement.

jjanczur/tyran · 58 tokens

run-smoke-tests

Run Playwright smoke tests, debug failures, and verify fixes. Use for smoke, e2e, Playwright, or pre-ship browser verification.

Kripu77/software-factory · 36 tokens