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.
npx agentmods add instructions/rightnow-ai/autoevolve/agents-mdgit clone --depth 1 https://github.com/RightNow-AI/autoevolveWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01477 | $0.01477 |
| Opus 5 | $0.00739 | $0.00739 |
| Sonnet 5 | $0.00295 | $0.00295 |
| Haiku 4.5 | $0.00148 | $0.00148 |
Grade A, and why
autoevolve AGENTS.md 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 174 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Autoevolve agent instructions
Constitution and scope
CLAUDE.md is the repository constitution. Read its relevant sections before changing product
behavior. Treat docs/ARCHITECTURE.md as the normative module and seam map. Keep each unit inside
its owned paths and do not move evolution logic into adapters.
What autoevolve does
Autoevolve measures a population of code candidates against one locked contract. Workers propose mutations, and the Engine owns validation, evaluation, ranking, storage, budgets, and closure. A run delivers either its measured target or evidence for the best ceiling reached within its budget.
Connect
For Codex, register autoevolve in the active MCP configuration with either:
- stdio command
uv run autoevolve serve - Streamable HTTP endpoint
http://127.0.0.1:8747/mcp
Use the MCP configuration format supported by the active Codex host. Once unit U5 lands, a human or
agent may also drive the CLI surface through autoevolve join. Do not assume the CLI command exists
before that unit is present.
Python can connect directly to the server without a subprocess:
import asyncio
from mcp import Client
from autoevolve.mcp.server import build_server
async def read_contract(run_id: str) -> object:
async with Client(build_server()) as client:
return await client.call_tool("get_contract", {"run_id": run_id})
asyncio.run(read_contract("run_01"))
Claude Code uses these client-specific registration commands:
claude mcp add --transport stdio autoevolve -- uv run autoevolve serve
claude mcp add --transport http autoevolve http://127.0.0.1:8747/mcp
A project-scoped Claude Code HTTP entry uses http:
{
"mcpServers": {
"autoevolve": {
"type": "http",
"url": "http://127.0.0.1:8747/mcp"
}
}
}
Worker loop
Follow this cycle exactly:
- Call
open_runonly when no suitable run exists. Supply at least one budget bound. - Call
get_contractbefore joining or editing. Read the metric, direction, gate, target, descriptors, and budget. - Call
join_runonce with a useful runtime label. Keep the returned island assignment. - Call
next_parentat the start of each cycle. - Read the full parent, every inspiration and score, every file excerpt, every discovery, the operator hint, and any crossover fields.
- Choose a narrow cheap diff or a deeper evidence-gathering pass.
- Submit one child with
submit_child. Send full changed file contents and honest notes. - Read the gate result and measured scores. Do not infer a score from a local profile.
- Call
run_statusafter each submission. End the cycle summary with all artifact paths. - Repeat until
run_status.statusrecords closure.
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.
- 2d ago First seen · 174 lines · 1,477 tokens per session scan A aed170bd1e10
autoevolve AGENTS.md is an instructions file published in the GitHub repository RightNow-AI/autoevolve (3 stars, last pushed 27d ago), licensed Apache-2.0. It adds 1,477 tokens to every session, about $0.0074 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.
Other instructions, from other repositories
codex-autoresearch AGENTS.md
Instructions for TheGreenCedar/codex-autoresearch, covering agents.md, purpose and scope, canonical sources, stable product boundaries and source and package boundaries.
autozyme CLAUDE.md
Instructions for ElliotXie/autozyme, covering autozyme, layout, how to use, environment and cli quick reference.
AutoHelix CLAUDE.md
Instructions for awslabs/AutoHelix, covering autohelix development, setup, project layout, cli commands and testing.
avo AGENTS.md
Instructions for gatordevin/avo, covering a. working on the avo codebase, b. acting as the variation operator, the loop, rules that keep a run honest and reading the score.
AutoHelix AGENTS.md
Instructions for awslabs/AutoHelix, covering agents.md, quick orientation and working rules.
EvoHarness CLAUDE.md
Claude Code instructions for iLearn-Lab/EvoHarness, covering project instructions, validation and local notes.