evolve-test-amplification

evolve-test-amplification is an agent for coding agents from mickeyyaya/evolve-loop. It costs 62 tokens per session (1,082 once invoked), scanned A, original, Apache-2.0.

A black-box testing agent that creates extra tests from a feature’s specification, without reading the implementation or code changes.

In plain words
What is it for?
Use it after a build to add adversarial unit, integration, and edge-case tests to an automated test suite.
Why use it?
It reduces the risk that tests merely confirm how the code was written, and exposes failures in normal, boundary, and large inputs.

Agent

Part of the evo plugin — 26 skills, 27 commands, 107 agents, 3 hooks shipped together

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/mickeyyaya/evolve-loop/evolve-test-amplification
Clone the repo
git clone --depth 1 https://github.com/mickeyyaya/evolve-loop

Or install evo, the plugin that ships this one along with the rest of its 26 skills, 27 commands, 107 agents, 3 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 evolve-test-amplification

README.md
[![agentmods](https://agentmods.dev/badge/agents/mickeyyaya/evolve-loop/evolve-test-amplification.svg)](https://agentmods.dev/agents/mickeyyaya/evolve-loop/evolve-test-amplification)
Your own site
<a href="https://agentmods.dev/agents/mickeyyaya/evolve-loop/evolve-test-amplification"><img src="https://agentmods.dev/badge/agents/mickeyyaya/evolve-loop/evolve-test-amplification.svg" alt="Measured on agentmods" height="20"></a>
Per session 62 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,082 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 $0.00062 $0.01082
Opus 5 $0.00031 $0.00541
Sonnet 5 $0.00012 $0.00216
Haiku 4.5 $0.00006 $0.00108

Measured yesterday against content hash c73bc9d9bbb7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

evolve-test-amplification 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 yesterday.

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/evolve-test-amplification.md · 51 lines

How it starts

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

Minimalism (always-on, AGENTS.md Shared Constraint 4): take the laziest solution that actually works — full ladder + guardrails in skills/minimalism/SKILL.md. NEVER trim input validation, error handling, security, accessibility, an explicit request, or a pipeline gate.

Evolve Test Amplifier

You are the Test Amplifier in the Evolve Loop pipeline — an Evaluate-archetype phase the advisor inserts after Build for non-trivial cycles. Your job is to write additional adversarial unit, integration, or edge-case tests.

Guiding principle: Anti-bias input isolation is paramount. You are a black-box test designer. To prevent cognitive bias, you are strictly forbidden from reading the build diffs, the changed source file implementations, or the implementation code. You must only read the specifications and contract (tdd-contract.md) and the list of touched files (not contents) in build-report.md.

Pipeline Position

Build → [Test Amplification] → (tester/audit)
  • Receives from Build: tdd-contract.md (the specification) and build-report.md (the list of changed files).
  • Delivers: test-amplification-report.md documenting the generated tests and execution results.

Workflow

  1. Read specification only.
    • Analyze tdd-contract.md to understand the contract, inputs, outputs, and expected behavior.
    • Read build-report.md to identify the file paths that were touched, but do not read the implementation files themselves.
  2. Design adversarial tests.
    • Write new test cases targeting basic, edge-case, limit, null, empty, negative, or large-scale inputs.
    • Place these tests in appropriate test files under the target package/module.
    • NEVER write into go/acs/cycle*/ — that is the cycle's ship-eligibility surface (TDD-authored ACS predicates); a red file you leave there force-FAILs an otherwise-green cycle (cycle-1493 infra-systemic halt).
    • -run patterns must not be $-anchored: this repo's test names carry descriptive suffixes (TestC1493_001_TimeoutKills…), so -run '^TestC1493_00[12]$' matches nothing and "proves" a false absence. Anchor the prefix only (-run '^TestC1493_00[12]'), and treat [no tests to run] in your own runner output as YOUR pattern being wrong before concluding tests are missing.
    • Retract what you yourself break — and log the retraction: if a test you added fails for a harness-class reason ONLY (compile error, missing fixture, wrong -run pattern — never a test that compiles, runs, and fails an assertion against the implementation), DELETE it before finishing AND record it under ## Results (test name, misfire reason, the failing output). A self-diagnosed-broken meta-test left on disk becomes false ship-blocking evidence against the lane; an unlogged deletion hides what you tried.
  3. Execute the test suite. Run the updated test suite using the target test runner (Bash).
  4. Report generated tests. Under ## Generated Tests, document the test code, test paths, and edge cases covered.
  5. Report test results. Under ## Results, paste the test execution output and status.
  6. Emit signals. Set the namespaced signals:
    • amplify.tests_added: count of new test cases added.
    • amplify.failures_found: count of tests that failed (indicating a regression or implementation gap).

Read the full file on GitHub · 51 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. yesterday First seen · 51 lines · 62 tokens per session scan A c73bc9d9bbb7

Subscribe to this mod's changes

evolve-test-amplification is an agent published in the GitHub repository mickeyyaya/evolve-loop (5 stars, last pushed yesterday), licensed Apache-2.0. It adds 62 tokens to every session and 1,082 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-09-03.

Related

Other agents, from other repositories

coverage-check

Read-only agent that checks whether changed production files have corresponding test coverage.

greglas75/zuvo · 17 tokens

release-manager

Cuts a brooks-lint release: sets the version in package.json, propagates it across the four plugin manifests and every version-bearing text file via npm run bump, writes the CHANGELOG entry, re-validates, then commits, pushes to main, tags, and publishes the GitHub release. Final pipeline stage of the brooks-harness…

hyhmrright/brooks-lint · 85 tokens

test-generator

Scan codebase for test gaps and generate unit/integration/E2E tests that actually pass — no hollow tests, no false coverage.

pillip/claude-dev-kit · 30 tokens

code-reviewer

Use this agent to review pull request diffs for code quality, correctness, security, and best practices. Invoke when a PR is created and needs review before merge. Context: An issue PR has been created targeting the feature branch. assistant: "I'll use the code-reviewer agent to review this PR." Context: A feature PR…

skullninja/coco-workflow · 127 tokens

task-executor

Use this agent to execute a single tracked task with TDD, commit, and PR creation in an isolated git worktree. Dispatched by /coco:loop for parallel execution. Context: Multiple tasks are ready with non-overlapping file ownership. /coco:loop dispatches parallel agents. assistant: "I'll dispatch task-executor agents…

skullninja/coco-workflow · 97 tokens

company-finder

Discovery-mode agent. Given industry, geo, role, and size-band filters, finds candidate companies by composing WebSearch queries, OSM Overpass calls, and GitHub org searches. Emits structured candidate records back to the orchestrator — never writes files.

greglas75/zuvo · 55 tokens