verifier-setup

verifier-setup is a skill for Claude Code from gabrielmoreira/agent-skills-mirror. It costs 152 tokens per session (2,116 once invoked), scanned B, original, MIT.

A setup guide for adding a one-command verification process to a code repository. It connects the local development stack, tests, a browser or other driver, and proof such as screenshots or video into a repeatable check before shipping.

In plain words
What is it for?
Use it to scaffold a repository's /verify process, including a local launcher, end-to-end testing support, and the appropriate exercise tool. For web apps, it prepares the process around Playwright, a browser testing tool.
Why use it?
It gives engineering tasks a clear way to prove they work before a pull request is opened. This reduces reliance on manual checking and makes verification evidence part of the workflow.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: reads .claude/ paths; mentions subagents.

Good fit Use it to scaffold a repository's /verify process, including a local launcher, end-to-end testing support, and the appropriate exercise tool. For web apps, it prepares the process around Playwright, a browser testing tool.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gabrielmoreira/agent-skills-mirror/verifier-setup
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 gabrielmoreira/agent-skills-mirror --skill verifier-setup
Clone the repo
git clone --depth 1 https://github.com/gabrielmoreira/agent-skills-mirror

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 verifier-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/gabrielmoreira/agent-skills-mirror/verifier-setup/github.svg)](https://agentmods.dev/skills/gabrielmoreira/agent-skills-mirror/verifier-setup)
Your own site
<a href="https://agentmods.dev/skills/gabrielmoreira/agent-skills-mirror/verifier-setup"><img src="https://agentmods.dev/badge/skills/gabrielmoreira/agent-skills-mirror/verifier-setup/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-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/gabrielmoreira/agent-skills-mirror/verifier-setup"><img src="https://agentmods.dev/badge/skills/gabrielmoreira/agent-skills-mirror/verifier-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 152 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,116 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 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.00152 $0.02116
Opus 5 $0.00076 $0.01058
Sonnet 5 $0.00030 $0.00423
Haiku 4.5 $0.00015 $0.00212

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

Security

Grade B, and why

verifier-setup scanned grade B 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 9d 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.

Enumerates other installed skillsmediumAgent snooping

Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.

don't clobber. Otherwise copy `assets/verify.template.md` → the repo's skills dir (`.claude/skills/verify/` or the repo's convention) and fill every `{{...}}`

Makes network callslowCapability

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

for web apps). For non-web, name the concrete tool (e.g. `curl`/an HTTP script,
mirrors/repos/AI-Builder-Club@skills/skills/verifier-setup/SKILL.md · 140 lines

How it starts

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

verifier-setup — scaffold this repo's /verify skill

Goal: leave the repo able to prove an engineering task works before it ships — run once, and it wires up everything the per-task /verify loop needs.

You are setting up — not verifying anything yourself right now. The /verify template lives at assets/verify.template.md (next to this skill). Parallels dev-local-setup (which generates a script + its skill doc): a setup skill that leaves behind reusable, repo-specific artifacts.

What this produces (the outputs)

Running verifier-setup end-to-end leaves the repo with:

  1. A /verify skill.claude/skills/verify/SKILL.md, the repo-tailored per-task verification SOP (spawn a verifier sub-agent → drive the app → screenshot/video proof → open a PR with the proof embedded). Generated in Step 5.
  2. A /dev-local skill + its scriptscripts/dev-local.sh and .claude/skills/dev-local/SKILL.md, via dev-local-setup (Step 2) if not already present. The one-command stack /verify depends on.
  3. The driver skill installed — the playwright-cli skill for web apps (Step 2); for non-web, the concrete exercise tool confirmed present.

Step 0 — Inventory what already exists (check before you add ANYTHING)

Before creating anything, take stock — the repo may already have some of this, under whatever name or layout its team chose. Look for the capability, not a specific filename; the paths below are only examples. For each, decide reuse as-is / adapt-extend / create fresh — never blindly overwrite working setup:

  • A way to start the app — a one-command dev launcher, a Makefile/Procfile target, docker-compose, package scripts (e.g. scripts/dev-local.sh, but any form counts).
  • A prior verification SOP/skill — from an earlier run of this skill or the team's own convention.
  • A driver for the app's interface — a browser automation tool already available (e.g. the playwright-cli skill), or the relevant API/CLI client.
  • An existing test/e2e suite or checks — however organized.
  • Sandbox/cloud-box config — anything giving isolated per-agent stacks.
  • An evidence/artifact convention — where proof lands and how a reviewable link gets published (a release, bucket, CI artifacts, etc.).

Read the full file on GitHub · 140 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 140 lines · 152 tokens per session scan B ee8aad2153f7

Subscribe to this mod's changes

verifier-setup is a skill published in the GitHub repository gabrielmoreira/agent-skills-mirror (17 stars, last pushed yesterday), licensed MIT. It adds 152 tokens to every session and 2,116 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it B with 2 findings (enumerates other installed skills, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.