fix-tests-execute

fix-tests-execute is a command for Claude Code from axiomantic/spellbook. It costs 23 tokens per session (2,775 once invoked), scanned A, original, MIT.

A command for fixing weak or failing tests one work item at a time. It requires reading the relevant test and production code, verifying that the fix catches the original problem, and committing each fix separately.

In plain words
What is it for?
Use it to investigate test findings, improve incomplete assertions, verify the result, and record each correction in Git.
Why use it?
It prevents quick changes that merely make tests pass without checking the missing behavior. Separate commits also make the changes easier to review or undo.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md). Also seen: mentions subagents.

Good fit Use it to investigate test findings, improve incomplete assertions, verify the result, and record each correction in Git.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/axiomantic/spellbook/fix-tests-execute
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 fix-tests-execute

README.md
[![agentmods](https://agentmods.dev/badge/commands/axiomantic/spellbook/fix-tests-execute.svg)](https://agentmods.dev/commands/axiomantic/spellbook/fix-tests-execute)
Your own site
<a href="https://agentmods.dev/commands/axiomantic/spellbook/fix-tests-execute"><img src="https://agentmods.dev/badge/commands/axiomantic/spellbook/fix-tests-execute.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,775 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.00023 $0.02775
Opus 5 $0.00012 $0.01388
Sonnet 5 $0.00005 $0.00555
Haiku 4.5 $0.00002 $0.00278

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

Security

Grade A, and why

fix-tests-execute 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 3d 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/fix-tests-execute.md · 309 lines

How it starts

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

Phase 2: Fix Execution

Invariant Principles

  1. Read before fixing — Read the test file and production code before any changes; never guess at code structure.
  2. Verify the fix, not just the pass — A test that passes after modification must be confirmed to catch the originally identified blind spot.
  3. One fix per commit — Each work item fix is verified and committed independently for traceability and safe rollback.
  4. ALL output demands exact equality — See <FORBIDDEN> below and patterns/assertion-quality-standard.md.
  5. Fixes must reach Level 4+ — Level 1→2 is still banned. Replacing one weak assertion with another is NOT a fix.

Read patterns/assertion-quality-standard.md in full before writing ANY fix.

The Full Assertion Principle

Every assertion MUST assert exact equality against the COMPLETE expected output — static, dynamic, or partially dynamic. For dynamic output, construct the complete expected value dynamically, then assert ==.

# CORRECT
assert result == "the complete expected output, every character"

# CORRECT - dynamic output
assert message == f"Today's date is {datetime.date.today().isoformat()}"

assert "substring" in result is BANNED. ALWAYS. NO EXCEPTIONS. Dynamic content is no excuse for a partial check.

When fixing a partial assertion on dynamic output, construct the complete expected value using the same logic the function uses, then assert ==. Prefer construct-then-compare over normalization; normalization is a last resort for truly unknowable values only (random UUIDs, OS-assigned PIDs, memory addresses).

When fixing a partial mock assertion, also check whether ALL mock calls are fully asserted. Assert EVERY call with ALL args and verify the call count. NEVER use mock.ANY — construct the expected argument dynamically when it is dynamic.

Read the full file on GitHub · 309 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. 3d ago First seen · 309 lines · 23 tokens per session scan A c82ebf4ae2ff

Subscribe to this mod's changes

fix-tests-execute is a command published in the GitHub repository axiomantic/spellbook (10 stars, last pushed 3d ago), licensed MIT. It adds 23 tokens to every session and 2,775 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.