verification-before-completion

verification-before-completion is a skill for Claude Code from mnzralee/claude-multi-agent-architecture. It costs 25 tokens per session (1,289 once invoked), scanned A, original, MIT.

A five-level checklist for checking code before calling a task complete, including compilation, static analysis, tests, and other validation steps.

In plain words
What is it for?
It helps validate builds, generated schemas, lint results, tests, security, documentation, and other completion requirements.
Why use it?
It prevents agents from reporting success when the code has not been adequately checked.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Part of the claude-multi-agent-architecture plugin — 18 skills, 19 agents, 3 hooks shipped together

Good fit It helps validate builds, generated schemas, lint results, tests, security, documentation, and other completion requirements.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mnzralee/claude-multi-agent-architecture/verification-before-completion
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 mnzralee/claude-multi-agent-architecture --skill verification-before-completion
Clone the repo
git clone --depth 1 https://github.com/mnzralee/claude-multi-agent-architecture

Made for: Claude Code.

Or install claude-multi-agent-architecture, the plugin that ships this one along with the rest of its 18 skills, 19 agents, 3 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 verification-before-completion

README.md
[![agentmods](https://agentmods.dev/badge/skills/mnzralee/claude-multi-agent-architecture/verification-before-completion/github.svg)](https://agentmods.dev/skills/mnzralee/claude-multi-agent-architecture/verification-before-completion)
Your own site
<a href="https://agentmods.dev/skills/mnzralee/claude-multi-agent-architecture/verification-before-completion"><img src="https://agentmods.dev/badge/skills/mnzralee/claude-multi-agent-architecture/verification-before-completion/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 verification-before-completion

Your own site · 80×15
<a href="https://agentmods.dev/skills/mnzralee/claude-multi-agent-architecture/verification-before-completion"><img src="https://agentmods.dev/badge/skills/mnzralee/claude-multi-agent-architecture/verification-before-completion.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,289 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00025 $0.01289
Opus 5 $0.00013 $0.00645
Sonnet 5 $0.00005 $0.00258
Haiku 4.5 $0.00003 $0.00129

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

Security

Grade A, and why

verification-before-completion scanned grade A with 1 finding 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.

Makes network callslowCapability

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

curl http://localhost:<PORT>/health
.claude/skills/verification-before-completion/SKILL.md · 232 lines

How it starts

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

Verification Before Completion Skill

Never mark a task as complete without thorough verification. This skill ensures quality gates are passed before any agent reports success upward. The commands below assume a TypeScript/Node monorepo with Vitest or Jest; the discipline is stack-agnostic and every level maps cleanly onto any compiled language or test runner.

When to Use This Skill

Use this skill:

  • Before marking any work package as COMPLETE
  • Before committing code changes
  • Before reporting success to a supervisor or orchestrator agent
  • Before moving to the next task

The Verification Protocol

Level 1: Compilation Verification

# TypeScript compilation
npx tsc --noEmit

# Schema tool generation (if the data model changed)
# [CUSTOMIZE: replace with your ORM or codegen command, e.g. prisma generate, drizzle-kit generate, graphql-codegen]
<your-schema-tool> generate

# Service-specific build
npm run build --workspace=apps/<service-name>

Pass Criteria:

  • Zero TypeScript errors (or zero compiler errors in your language)
  • Zero schema-generation errors
  • Build completes successfully

Level 2: Static Analysis

# Linting
npm run lint

# Type coverage (if configured)
npm run type-coverage

Pass Criteria:

  • No new linting errors introduced
  • Type coverage maintained or improved

Level 3: Unit Tests

# Run unit tests for affected files
npm test -- --testPathPattern="<affected_file>"

# Run full service tests
npm test -- --projects=<service-name>

Pass Criteria:

  • All existing tests pass
  • New tests added for new functionality
  • No test regressions

Level 4: Integration Verification

# Start service locally
npm run start:dev --workspace=apps/<service-name>

# Health check
curl http://localhost:<PORT>/health

Pass Criteria:

  • Service starts without errors
  • Health check returns 200 OK
  • No runtime errors in logs

Level 5: Functional Verification

Read the full file on GitHub · 232 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. 9d ago First seen · 232 lines · 25 tokens per session scan A 12f12b1450ce

Subscribe to this mod's changes

verification-before-completion is a skill published in the GitHub repository mnzralee/claude-multi-agent-architecture (6 stars, last pushed 1mo ago), licensed MIT. It adds 25 tokens to every session and 1,289 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.