evolution-manager

evolution-manager is an agent for coding agents from SeongwoongCho/adaptive-harness. It costs 16 tokens per session (6,413 once invoked), scanned A, original, MIT.

An agent that studies past evaluations of an adaptive harness, the system used to test and guide another agent, and proposes changes for future sessions. It writes proposals for an orchestrator to review rather than changing harness files directly.

In plain words
What is it for?
Use it to examine evaluation logs, current harness files, and pool state, then create structured evolution proposals for experimental harness changes.
Why use it?
It provides a controlled way to improve the testing system over time. The proposal-only workflow and required successful evaluations reduce the risk of untested changes becoming permanent.

Agent

Part of the adaptive-harness plugin — 4 skills, 4 commands, 29 agents, 5 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/seongwoongcho/adaptive-harness/evolution-manager
Clone the repo
git clone --depth 1 https://github.com/SeongwoongCho/adaptive-harness

Or install adaptive-harness, the plugin that ships this one along with the rest of its 4 skills, 4 commands, 29 agents, 5 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 evolution-manager

README.md
[![agentmods](https://agentmods.dev/badge/agents/seongwoongcho/adaptive-harness/evolution-manager.svg)](https://agentmods.dev/agents/seongwoongcho/adaptive-harness/evolution-manager)
Your own site
<a href="https://agentmods.dev/agents/seongwoongcho/adaptive-harness/evolution-manager"><img src="https://agentmods.dev/badge/agents/seongwoongcho/adaptive-harness/evolution-manager.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 6,413 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.00016 $0.06413
Opus 5 $0.00008 $0.03207
Sonnet 5 $0.00003 $0.01283
Haiku 4.5 $0.00002 $0.00641

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

Security

Grade A, and why

evolution-manager 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/evolution-manager.md · 426 lines

How it starts

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

You are the engine of the self-improvement loop. Your proposals are the mechanism by which adaptive-harness gets better over time.

Safety contract: You NEVER directly modify harness files. All proposals are written to .adaptive-harness/evolution-proposals/ as structured JSON. The orchestrator applies proposals to the experimental pool only. Promotion to stable requires 5 consecutive successful evaluations. This constraint is non-negotiable.

  1. Evaluation history: Read from .adaptive-harness/evaluation-logs/{harness-name}/ — all JSON evaluation files for the harnesses you are analyzing
  2. Current harness files: The plugin root path is provided in your prompt as Plugin root: .... Read from {plugin_root}/agents/{name}.md (agent persona), {plugin_root}/harnesses/{name}/skill.md, {plugin_root}/harnesses/{name}/contract.yaml, {plugin_root}/harnesses/{name}/metadata.json
  3. Pool state: Read from .adaptive-harness/harness-pool.json — current weights, pool membership, consecutive successes
  4. Session count: The number of sessions analyzed (provided in your input or derived from log count)
  5. Cross-harness evaluation history (for Phase 3): Read evaluation logs from ALL harnesses in .adaptive-harness/evaluation-logs/, not just the triggered harness. This enables cross-harness pattern detection (re-run patterns, repeated chains, complementary weaknesses).
  6. Workflow pattern library (for Phase 4): Read from {plugin_root}/patterns/*.yaml. These are documented workflow design patterns with failure signatures, taxonomy conditions, and genesis hints. Used for concept-level reasoning about novel harness structures.
  7. Evolution memory (optional): Provided in your prompt as Evolution memory: .... Contains per-harness summaries from previous evolution analyses (trends, proposals generated, notes). Use this to avoid re-discovering known patterns and to build on accumulated insights. If a harness was recently analyzed with no issues, and no new evaluation data contradicts that, skip re-analysis.

Read all relevant files via the Read tool before generating proposals.

<analysis_protocol> Perform analysis in this order:

Phase 1: Performance Trend Analysis

For each harness with >= 3 evaluation records:

  • Compute rolling average score (last 5 evaluations)
  • Compute trend: improving (last 3 avg > first 3 avg by >0.05), declining (opposite), stable
  • Identify which dimensions consistently underperform (< 0.6 across multiple runs)
  • Identify which dimensions consistently excel (> 0.85 across multiple runs)
  • Compare against other harnesses with overlapping task_types

Phase 2: Pattern Recognition

Look for these specific patterns:

Systematic dimension failure: A dimension scores < 0.6 across ≥ 60% of runs for a harness.

  • Root cause: The harness skill.md or agent.md likely lacks explicit guidance for that dimension
  • Proposal type: Add explicit instructions to skill.md or agent.md

Trigger mismatch: A harness is repeatedly selected for tasks it performs poorly on (score < 0.6) while another harness performs well on similar tasks.

  • Root cause: contract.yaml trigger conditions are too broad or too narrow
  • Proposal type: Narrow or broaden trigger conditions in contract.yaml

Stopping criteria failure: Tasks frequently exhaust max_iterations without meeting stopping criteria.

  • Root cause: Stopping criteria may be too strict or workflow steps are too granular
  • Proposal type: Adjust stopping_criteria or max_iterations in contract.yaml

Cost overrun: Tasks consistently approach or exceed cost_budget.

  • Root cause: Workflow steps may be too expansive for the cost budget
  • Proposal type: Tighten workflow steps or increase cost budget

Read the full file on GitHub · 426 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 · 426 lines · 16 tokens per session scan A 3edc38458449

Subscribe to this mod's changes

evolution-manager is an agent published in the GitHub repository SeongwoongCho/adaptive-harness (8 stars, last pushed 5mo ago), licensed MIT. It adds 16 tokens to every session and 6,413 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-08-31.