verify-completeness

verify-completeness is a skill for Claude Code from avmnu-sng/sutra. It costs 48 tokens per session (896 once invoked), scanned A, original, MIT.

A method for completing a codebase-wide cleanup by listing every matching occurrence, handling each one, and searching again until none remain.

In plain words
What is it for?
Use it for exhaustive removals, mechanical fixes, compliance checks, renames, and other sweeps where one missed instance matters.
Why use it?
It reduces the chance that a missed secret, deprecated API, debug hook, or other defect survives a broad change.

Skill for Claude Code

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

Part of the sutra plugin — 19 skills, 4 agents, 2 hooks shipped together

Good fit Use it for exhaustive removals, mechanical fixes, compliance checks, renames, and other sweeps where one missed instance matters.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/avmnu-sng/sutra/verify-completeness
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 avmnu-sng/sutra --skill verify-completeness
Clone the repo
git clone --depth 1 https://github.com/avmnu-sng/sutra

Made for: Claude Code.

Or install sutra, the plugin that ships this one along with the rest of its 19 skills, 4 agents, 2 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 verify-completeness

README.md
[![agentmods](https://agentmods.dev/badge/skills/avmnu-sng/sutra/verify-completeness/github.svg)](https://agentmods.dev/skills/avmnu-sng/sutra/verify-completeness)
Your own site
<a href="https://agentmods.dev/skills/avmnu-sng/sutra/verify-completeness"><img src="https://agentmods.dev/badge/skills/avmnu-sng/sutra/verify-completeness/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 verify-completeness

Your own site · 80×15
<a href="https://agentmods.dev/skills/avmnu-sng/sutra/verify-completeness"><img src="https://agentmods.dev/badge/skills/avmnu-sng/sutra/verify-completeness.svg" alt="Reviewed on agentmods" width="80" 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 896 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.00896
Opus 5 $0.00024 $0.00448
Sonnet 5 $0.00010 $0.00179
Haiku 4.5 $0.00005 $0.00090

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

Security

Grade A, and why

verify-completeness 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 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.

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.

plugins/sutra/skills/verify-completeness/SKILL.md · 77 lines

How it starts

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

Verify completeness

A cleanup or verification pass fails the moment it starts to feel procedural. The instinct "I fixed all instances of X" is exactly where singletons survive: the one match that did not fit the mental pattern, the capitalized variant, the synonym you never searched for. The reliable method is slower per pass and faster to actually-done. Do not summarize-then-apply. Enumerate, tick off each spot individually, and iterate the search until it comes back empty.

When to use

  • Removing every occurrence of a token, secret, deprecated API, or debug hook.
  • Applying a mechanical fix reported as a list of file:line findings.
  • Any sweep where one survivor is a real defect: security, compliance, a public share, a rename that must be total.

When not to

  • A single, known edit at a known location. There is nothing to enumerate.
  • Exploratory work where "good enough for now" is an acceptable stopping point.

Procedure

  1. Enumerate into atomic checklist items. Turn the search result into one line item per exact spot -- each file:line, each match, its own box. Do not collapse "12 hits in service A" into a single item. You tick a box only after that specific location is fixed and re-read. Twelve hits means twelve boxes.

  2. Fix, then re-run the SAME search. After a batch of edits, run the identical comprehensive search again. If it returns anything at all, you are not done -- fix the new items and search again. Repeat until the search returns empty. The empty result, not your sense of having handled it, is the completion signal.

  3. Search case-insensitively. A case-sensitive sweep silently skips Token, TOKEN, and token when you searched for one form. Pass the ignore-case flag (grep -i, rg -i) by default on cleanup work.

  4. Expand the pattern as variants surface. Every pass teaches you a new spelling: a hyphen vs underscore, an alias, a wrapper name, a comment form. Add it to the pattern and re-run from the top. The search you finish with is almost never the search you started with.

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

Subscribe to this mod's changes

verify-completeness is a skill published in the GitHub repository avmnu-sng/sutra (2 stars, last pushed 1mo ago), licensed MIT. It adds 48 tokens to every session and 896 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.