simplify-verify

simplify-verify is a command for Claude Code from axiomantic/spellbook. It costs 14 tokens per session (944 once invoked), scanned A, original, MIT.

A verification step for proposed code simplifications. It checks syntax, types, tests, and whether the code's cognitive complexity—the difficulty of understanding its control flow—actually decreases.

In plain words
What is it for?
It helps assess whether functions are safe and worthwhile to simplify before another command applies the changes.
Why use it?
It prevents automated cleanup from changing untested or invalid code. Failed candidates are skipped instead of being transformed.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Good fit It helps assess whether functions are safe and worthwhile to simplify before another command applies the changes.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/axiomantic/spellbook/simplify-verify
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.

Clone the repo
git clone --depth 1 https://github.com/axiomantic/spellbook

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 simplify-verify

README.md
[![agentmods](https://agentmods.dev/badge/commands/axiomantic/spellbook/simplify-verify/github.svg)](https://agentmods.dev/commands/axiomantic/spellbook/simplify-verify)
Your own site
<a href="https://agentmods.dev/commands/axiomantic/spellbook/simplify-verify"><img src="https://agentmods.dev/badge/commands/axiomantic/spellbook/simplify-verify/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 simplify-verify

Your own site · 80×15
<a href="https://agentmods.dev/commands/axiomantic/spellbook/simplify-verify"><img src="https://agentmods.dev/badge/commands/axiomantic/spellbook/simplify-verify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 944 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.00014 $0.00944
Opus 5 $0.00007 $0.00472
Sonnet 5 $0.00003 $0.00189
Haiku 4.5 $0.00001 $0.00094

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

Security

Grade A, and why

simplify-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 5d 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.

commands/simplify-verify.md · 131 lines

How it starts

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

/simplify-verify

Run multi-gate verification on proposed simplifications before transformation. Part of the simplify-* command family; runs after /simplify-analyze, produces output for /simplify-transform.

Invariant Principles

  1. All gates must pass - Parse, type check, test run, and complexity delta; failure at any gate aborts the transformation
  2. Abort on failure, continue pipeline - Failed candidates are recorded and skipped; pipeline continues to next candidate
  3. Complexity must decrease - Transformations that do not reduce cognitive complexity are rejected
  4. Test coverage required - Untested functions are skipped unless explicitly allowed with --allow-uncovered and higher risk acknowledgment

Step 4: Verification Gate

4.1 Verification Pipeline

parse_check -> type_check -> test_run -> complexity_delta
     |             |            |             |
     v             v            v             v
  FAIL?         FAIL?        FAIL?        report
  abort         abort        abort

4.2 Gate 1: Parse Check

Verify syntax validity:

# Python
python -m py_compile <file>

# TypeScript
tsc --noEmit <file>

# Nim
nim check <file>

# C/C++
gcc -fsyntax-only <file>
# or
clang -fsyntax-only <file>

If parse fails: Abort transformation. Mark as "verification failed - syntax error". Continue to next candidate.

4.3 Gate 2: Type Check

If language has a type system AND type annotations are present:

# Python (if type hints present)
mypy <file>

# TypeScript
tsc --noEmit <file>

# C/C++
# Covered by Gate 1 compile check

Read the full file on GitHub · 131 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. 5d ago First seen · 131 lines · 14 tokens per session scan A 0f45126b306b

Subscribe to this mod's changes

simplify-verify is a command published in the GitHub repository axiomantic/spellbook (10 stars, last pushed yesterday), licensed MIT. It adds 14 tokens to every session and 944 once invoked, about $0.0001 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-09-03.

Related

Other commands, from other repositories

verify-loop

A command that repeatedly checks recent code changes and tries to fix failures, with a configurable retry limit. It can run code review, builds, tests, linting, and type checks according to the project language.

sangrokjung/claude-forge · 21 tokens

subagent-diagnose

Multi-agent failure-investigation orchestrator. Parallel to /subagent-implementation — same scratchpad + investigator + builder/surgeon + reviewer + FOLLOWUPS pattern — but starts from a failure, not a spec. Two modes share one loop: ci (failed CI run is the brief seed) and bug (freeform symptom paragraph is the brief…

damusix/atomic-claude · 0 tokens

quick-fix

Run the implement→review subagent loop without the planning phase — for straightforward fixes with a known cause and one obvious approach, regardless of how many files the change spreads across. Skips the spec gate, worktree gate, and finalize ceremony (implementation log, docs, signals) that /subagent-implementation…

damusix/atomic-claude · 112 tokens

dream

Overnight autoresearch + maintainer sweep that surfaces a MORNING REPORT — suggested changes, issues raised with fixes, and kept improvements. Shadow-first; never auto-pushes. Runs on-demand or scheduled for off-hours.

randomittin/heimdall · 0 tokens

debloat

Retroactive whole-repo bloat removal (spec H-2ii). Scores an existing repo on the deterministic bloat axes, writes BLOAT-REPORT.md, and — only behind a passing test-suite safety oracle — proposes gated refactor waves as a PR. The zero-risk adoption hook.

randomittin/heimdall · 62 tokens

maintain

Run automated maintenance — seeker finds bugs from pod logs and raises GitHub issues, fixer picks them up and creates PRs. Can run as a one-shot or scheduled via /schedule.

randomittin/heimdall · 40 tokens