fix-tests-parse

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

A command for reading an audit report and turning its findings into ordered work items. It uses priorities and dependencies to determine what must be handled first.

In plain words
What is it for?
Use it to parse test audit findings, extract their locations and suggested corrections, and build an execution order.
Why use it?
It prevents fixes from starting before all findings have been parsed and avoids resolving dependent issues in the wrong order. This creates a clear input for the test-fixing phase.

Command for Claude Code

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

Good fit Use it to parse test audit findings, extract their locations and suggested corrections, and build an execution order.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/axiomantic/spellbook/fix-tests-parse"><img src="https://agentmods.dev/badge/commands/axiomantic/spellbook/fix-tests-parse.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 479 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.00017 $0.00479
Opus 5 $0.00009 $0.00239
Sonnet 5 $0.00003 $0.00096
Haiku 4.5 $0.00002 $0.00048

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

Security

Grade A, and why

fix-tests-parse 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/fix-tests-parse.md · 65 lines

What it actually says

Phase 0: Input Processing

Invariant Principles

  1. Honor dependency order — Work items with depends_on must be resolved in the order specified by the remediation plan.
  2. Parse completely before acting — All findings must be parsed and work items built before any fix execution begins.
  3. Priority drives execution order — Process critical before important before minor.

For audit_report mode

Parse the findings YAML block (root key findings: — not the document frontmatter):

findings:
  - id: "finding-1"
    priority: critical          # critical | important | minor
    test_file: "tests/test_auth.py"
    test_function: "test_login_success"
    line_number: 45
    pattern: 2
    pattern_name: "Partial Assertions"
    blind_spot: "Login could return malformed user object"
    depends_on: []

remediation_plan:
  phases:
    - phase: 1
      findings: ["finding-1"]

Use remediation_plan.phases for execution order.

Fallback parsing (if no YAML block):

  1. Split by **Finding #N:** headers
  2. Extract priority from section header
  3. Parse file/line from **File:**
  4. Extract pattern from **Pattern:**
  5. Extract current_code and suggested_fix from code blocks
  6. Extract blind_spot from **Blind Spot:**

Commit strategy

Ask before beginning fix execution (optional):

  • A) Per-fix — each fix in a separate commit (default)
  • B) Batch by file
  • C) Single commit

<FINAL_EMPHASIS> Parse all findings first. Build all work items. Then act — never before. </FINAL_EMPHASIS>

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 · 65 lines · 17 tokens per session scan A 9bca2eb75562

Subscribe to this mod's changes

fix-tests-parse is a command published in the GitHub repository axiomantic/spellbook (10 stars, last pushed yesterday), licensed MIT. It adds 17 tokens to every session and 479 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.