autoevolve AGENTS.md

Repository instructions for Autoevolve, a system that tests many code candidates against one fixed contract, then ranks and stores the results.

In plain words
What is it for?
Use them when modifying Autoevolve, especially its workers, evaluation engine, connection setup, or documented module boundaries.
Why use it?
They keep changes within the repository's intended boundaries and make agents follow its architecture and validation rules.

Instructions file for CodexOpenCode

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 instructions/rightnow-ai/autoevolve/agents-md
Clone the repo
git clone --depth 1 https://github.com/RightNow-AI/autoevolve

Made for: Codex, OpenCode.

Per session 1,477 This file is loaded in full into every session.
When invoked 1,477 The same file — it is already loaded in full.
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.01477 $0.01477
Opus 5 $0.00739 $0.00739
Sonnet 5 $0.00295 $0.00295
Haiku 4.5 $0.00148 $0.00148

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

Security

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.

AGENTS.md · 174 lines

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:

  1. Call open_run only when no suitable run exists. Supply at least one budget bound.
  2. Call get_contract before joining or editing. Read the metric, direction, gate, target, descriptors, and budget.
  3. Call join_run once with a useful runtime label. Keep the returned island assignment.
  4. Call next_parent at the start of each cycle.
  5. Read the full parent, every inspiration and score, every file excerpt, every discovery, the operator hint, and any crossover fields.
  6. Choose a narrow cheap diff or a deeper evidence-gathering pass.
  7. Submit one child with submit_child. Send full changed file contents and honest notes.
  8. Read the gate result and measured scores. Do not infer a score from a local profile.
  9. Call run_status after each submission. End the cycle summary with all artifact paths.
  10. Repeat until run_status.status records closure.

Read the full file on GitHub · 174 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. 2d ago First seen · 174 lines · 1,477 tokens per session scan A aed170bd1e10

Subscribe to this mod's changes

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.