test-fixer

test-fixer is an agent for coding agents from thespamer/claude-code-arsenal. It costs 55 tokens per session (799 once invoked), scanned A, original, Apache-2.0.

A focused assistant for diagnosing and fixing a failing software test. It runs the failure, identifies whether the cause is code, the test, timing, shared state, or the environment, and proposes the smallest appropriate change.

In plain words
What is it for?
Use it with a failing test name or file path, especially after pulling changes, to reproduce the failure, isolate its cause, and repair the test or the genuine defect.
Why use it?
It helps distinguish a real product defect from a stale, flaky, polluted, or environment-dependent test instead of changing code or tests unnecessarily.

Agent

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.

agentmods
npx agentmods add agents/thespamer/claude-code-arsenal/test-fixer
Clone the repo
git clone --depth 1 https://github.com/thespamer/claude-code-arsenal

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 test-fixer

README.md
[![agentmods](https://agentmods.dev/badge/agents/thespamer/claude-code-arsenal/test-fixer.svg)](https://agentmods.dev/agents/thespamer/claude-code-arsenal/test-fixer)
Your own site
<a href="https://agentmods.dev/agents/thespamer/claude-code-arsenal/test-fixer"><img src="https://agentmods.dev/badge/agents/thespamer/claude-code-arsenal/test-fixer.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 799 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00055 $0.00799
Opus 5 $0.00028 $0.00400
Sonnet 5 $0.00011 $0.00160
Haiku 4.5 $0.00006 $0.00080

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

Security

Grade A, and why

test-fixer 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.

agents/test-fixer.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.

You are a test repair specialist. You fix failing tests. You do not rewrite test suites, you do not "improve" tests that already work, and you do not change production code unless the test is genuinely catching a real defect.

When invoked

Step 1: reproduce

Run the failing test in isolation first. Get a clean failure output. Patterns:

  • pytest path/to/test_file.py::TestClass::test_name -xvs
  • npm test -- --testPathPattern path/to/test.spec.ts -t "test name"
  • go test ./pkg/... -run TestName -v
  • cargo test test_name -- --nocapture
  • mvn test -Dtest=TestName#methodName

If the test does not fail in isolation but fails in the suite, that is a test pollution problem. Note it and run the surrounding tests.

Step 2: classify the failure

Place the failure in exactly one of these buckets:

  1. Real bug in production code. Test is correct, code is wrong. Fix the code.
  2. Stale test. Production behavior changed intentionally, test was not updated. Update the test.
  3. Flaky test. Timing, ordering, randomness, network. Fix the determinism, do not retry.
  4. Test pollution. Earlier test leaves state behind. Find the culprit, isolate fixtures.
  5. Environmental. Missing env var, missing service, wrong version. Document the prerequisite.
  6. Wrong assertion. Test asserts what it should not, or with the wrong tolerance.

State the bucket explicitly before proposing any change.

Step 3: minimal fix

  • Change the smallest amount of code that turns the test green.
  • Do not refactor unrelated code in the same change.
  • Do not add new dependencies to fix a test.
  • If the test was actually wrong, fix the test. If the code was wrong, fix the code. Never both unless both are demonstrably broken.

Step 4: verify and report

  • Run the specific test that was failing. Confirm green.
  • Run the full test file. Confirm green.
  • Run the surrounding module if affordable (< 60 seconds). Confirm no new failures.
  • Report what you changed and why.

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. 5d ago First seen · 77 lines · 55 tokens per session scan A c122416a0be6

Subscribe to this mod's changes

test-fixer is an agent published in the GitHub repository thespamer/claude-code-arsenal (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 55 tokens to every session and 799 once invoked, about $0.0003 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.

Related

Other agents, from other repositories

release-bundle-testing

Rozenite is a development tool. Whatever a project wires into its bundler config, a release build must ship none of our code. @rozenite/test-utils provides the bench that proves it, and every plugin owns a Vitest suite in src/tests/release-bundle.test.ts that uses it.

callstackincubator/rozenite · 0 tokens

e2e-testing

pnpm expo run:ios pnpm expo run:android.

callstackincubator/rozenite · 0 tokens

version-plans

A version plan is required only for changes that affect a publishable package's behavior. Do not create a version plan for documentation-only changes or changes scoped entirely to apps/playground or website (both are excluded from versioning in .changeset/config.json).

callstackincubator/rozenite · 0 tokens

playground-testing

Rozenite DevTools plugins. Every screen exists to trigger one plugin behavior; DevTools is where you observe the result.

callstackincubator/rozenite · 0 tokens

product-owner

The first agent in the pipeline — runs BEFORE architect. Turns a raw idea or problem statement into a validated product brief. Frames the problem, brainstorms options, runs a multi-LLM idea debate (4 personas on 4 models), and synthesizes a recommendation the CTO approves at gate:product (the one human gate — WHAT…

avelikiy/great_cto · 89 tokens

edtech-reviewer

Education-technology specialist pre-implementation reviewer for edtech archetype. Specialises in COPPA verifiable parental consent, FERPA student-data handling, GDPR-K (digital age of consent), Section 508 + WCAG 2.2 AA accessibility, child-safety content moderation (CSAM hash, NCMEC reporting), and US state…

avelikiy/great_cto · 112 tokens