verify

verify is a skill for Claude Code, Codex from zexion7873/copilot-setting. It costs 136 tokens per session (1,202 once invoked), scanned A, original, MIT.

A verification workflow for checking whether software meets its acceptance criteria. Acceptance criteria are the conditions a feature must satisfy before it is considered done.

In plain words
What is it for?
Use it to derive test cases, run the correct Java 8, Spring 3.2, JUnit 4, and Mockito checks, and gate the result with pass or fail.
Why use it?
It turns requirements into runnable checks and prevents the verification step from simply approving whatever the code already does.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/zexion7873/copilot-setting/verify
Any agent
npx skills add zexion7873/copilot-setting --skill verify
Clone the repo
git clone --depth 1 https://github.com/zexion7873/copilot-setting

Made for: Claude Code, Codex.

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/zexion7873/copilot-setting/verify.svg)](https://agentmods.dev/skills/zexion7873/copilot-setting/verify)
Your own site
<a href="https://agentmods.dev/skills/zexion7873/copilot-setting/verify"><img src="https://agentmods.dev/badge/skills/zexion7873/copilot-setting/verify.svg" alt="Measured on agentmods" height="20"></a>
Per session 136 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,202 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00136 $0.01202
Opus 5 $0.00068 $0.00601
Sonnet 5 $0.00027 $0.00240
Haiku 4.5 $0.00014 $0.00120

Measured 4d ago against content hash aeb0e624cddd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 4d 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.

.github/skills/verify/SKILL.md · 82 lines

How it starts

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

Verify — Workflow

Close-the-loop verification: derive what must be true, bind each to a runnable check, execute, and gate. The gate is a separate pass from authoring — derive the expected behaviour from the requirement, never from the code under test, or the gate just rubber-stamps whatever the code does. Framework rules for any run command or test code referenced here: instructions/testing.instructions.md.

Phase 0 — Load canonical rules

MANDATORY pre-load gate — do NOT derive or run checks until you have opened the instruction files for the layers under verification. Your training data defaults to modern Java/Spring; these files are the version lock for Java 8 / Spring 3.2 / Hibernate 4.2. Open them first, every time:

  • instructions/testing.instructions.md — JUnit 4 / Mockito / Spring Test 3.2 — every run command and any test code must match this stack, not JUnit 5 / Spring Boot Test
  • The layer instruction(s) for the feature under verification (e.g. instructions/sql.instructions.md, instructions/security.instructions.md) — their Anti-Patterns are the negative cases Phase 1 must cover

Read-back receipt (self-check, not machine-enforced): before leaving this step, NAME each instruction file you opened above and QUOTE the single most load-bearing rule from each that applies to this verification — a generic restatement you could have written from memory means you skipped the file, so open it for real.

Phase 1 — Derive the checks

Work from the requirement / plan.md acceptance criteria (AC-NNN), NOT from the code under test — independent derivation is the whole point of a gate.

  • Boundaries — input (min, max, empty, null, overflow), state (initial, in-progress, done, error), integration (external call, DB, file I/O)
  • Categories — tag each check: Happy path, Boundary, Error / Exception, Security, Concurrency, Performance
  • Coverage — every AC maps to ≥1 check; every public method has ≥1 happy + ≥1 error; boundary values for all numeric/string inputs; SQL paths checked for injection and empty results

Read the full file on GitHub · 82 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. 4d ago First seen · 82 lines · 136 tokens per session scan A aeb0e624cddd

Subscribe to this mod's changes

verify is a skill published in the GitHub repository zexion7873/copilot-setting (1 stars, last pushed 1mo ago), licensed MIT. It adds 136 tokens to every session and 1,202 once invoked, about $0.0007 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

jira-cli

Interact with Jira from the command line to create, list, view, edit, and transition issues, manage sprints and epics, and perform common Jira workflows. Use when the user asks about Jira tasks, tickets, issues, sprints, or needs to manage project work items.

Code-and-Sorts/awesome-copilot-agents · 60 tokens

azure-prices

Look up and compare Azure service pricing using the Azure Retail Prices API. Use this skill whenever the user asks about Azure costs, pricing, rates, or wants to compare prices across regions or services — even if they don't say "pricing" explicitly. Trigger for questions like "how much does a D2 v2 VM cost?"…

Code-and-Sorts/awesome-copilot-agents · 90 tokens

calculator

Performs arbitrary-precision arithmetic calculations including addition, subtraction, multiplication, division, and exponents. Use when the user asks to calculate, compute, or evaluate math expressions, or when precise decimal arithmetic is needed to avoid floating-point errors.

Code-and-Sorts/awesome-copilot-agents · 50 tokens

az-cli

Use the Azure CLI (az) to manage Azure resources from the command line. Trigger this skill whenever the user asks to create, configure, manage, deploy, or interact with any Azure resource — even if they don't explicitly mention "az cli". Also trigger when the user asks about Azure CLI commands, syntax, or wants to…

Code-and-Sorts/awesome-copilot-agents · 79 tokens

plan-task

Create a detailed implementation plan before coding. Use when starting a new feature, multi-step refactor, or complex task. Invoked by saying "plan", "create a plan", or "plan this task".

savedpixel/ai-agent-rules-generator · 45 tokens

commit

Stage, commit, and push code changes with branch safety and explicit staging. Use when ready to commit work. Invoked by saying "commit", "push", or "commit and push".

savedpixel/ai-agent-rules-generator · 40 tokens