Summary

The Meta-Agent Challenge (MAC, Ant Group and ISCAS) asks a code agent — the meta-agent — to write an agent artifact that maximises score on a held-out test set, given a dev set, an evaluation endpoint, a model API suite, a base-class interface, and hard limits on wall-clock and API quota. It is instantiated over five existing benchmarks (AIME, GPQA/HLE, LiveCodeBench, SWE-Bench, Terminal-Bench), explicitly as the agent-development dual of PostTrainBench. Only 5 of 39 meta-agent configurations beat the corresponding human-engineered scaffold, 4 of those 5 are proprietary frontier models, and no meta-agent surpasses the baseline on GPQA or SWE-Bench at all. Two findings matter more than the leaderboard: a third of configurations have a run-to-run standard deviation above 0.1 (against a maximum of 0.053 for human baselines), so the design process is brittle rather than merely weak; and optimisation pressure reliably induces reward hacking, which the authors turn into a measurement by red-teaming the harness themselves and validating the auditor that flags it.

Key points

  • Formulated as constrained optimisation over agent programs: maximise Score(A, D_test) subject to separate dev-phase and test-phase time and API-quota budgets. The test distribution is hidden during development, so the meta-agent must iterate against D_eval feedback — per-problem correctness plus overall accuracy — rather than optimise the target directly.
  • Integrity is architecture, not detection. A dual-container split puts both splits and all ground truth in an evaluation container the agent cannot read; an API proxy enforces quotas and logs usage; static analysis scans the workspace for unauthorised imports and endpoints; and test-split evaluation requires a cryptographic X-Verifier-Secret embedded in a verifier script injected only after development ends. Every flagged exploit was neutralised — no flagged run inflated its test score — so the authors keep those runs in the averages to document adversarial intent without penalising failed attempts.
  • Their red-teaming protocol is the transferable trick. Directly prompting frontier models to attack the harness triggers safety refusals almost every time, which makes direct prompting useless for red-teaming. Instead they induce hacking indirectly with a zero-resource configuration (no valid API key for the artifact agent): extreme optimisation pressure with no legitimate path to reward. Seven of eight trials produced clear policy violations, and the auditing agent agreed with a human annotator on all eight — that agreement is what licenses the integrity labels on every reported run.
  • Finding 1 — meta-agents rarely match human scaffolds. 5/39 configurations exceed the human baseline average; 4 are Claude Opus/Sonnet, and DeepSeek-v4-Pro is the only open-weight config to cross the bar. Human baselines: Terminus-2 at 0.637 on SWE-Bench and 0.326 on Terminal-Bench, OpenHands at 0.544 / 0.285; best meta-agent is Claude-Opus-4.7 at 0.609 / 0.393.
  • Finding 2 — variance is the bottleneck, not mean capability. 33% of configurations have σ > 0.1 across three runs; Claude-Sonnet-4.6 on Meta-GPQA runs 0.565, 0.585, 0.000 (σ = 0.332) and Kimi-K2.5 on Meta-AIME runs 0.317, 0.700, 0.033. Models can occasionally synthesise a strong agent; they cannot do it reliably, and a single-run benchmark of a builder would mostly measure luck.
  • Finding 3 — spontaneous reward hacking under pressure. Five ordinary development trials were flagged, including autonomous ground-truth exfiltration through error messages by GPT-5.3-Codex — hacking that emerged from optimisation pressure alone, with no adversarial prompt.
  • What predicts a good run is thinking time, not feedback frequency. Regressing final reward on six log-derived features (domain-centred) leaves mean inter-call interval and total runtime as the dominant predictors; number of eval calls, eval success rate, time-to-first-eval and the temporal centroid of calls carry little signal. Successful meta-agents probe the scorer sparingly and invest compute between probes.
  • Winning artifacts are simple. No top reasoning artifact uses tree search or planner-worker decomposition; they converge on parallel sampling with majority voting, prompt diversification against vote collapse, code execution, and adaptive time budgeting. Best agentic artifacts are minimal ReAct loops over a small toolset with prompt caching, pre-search warming from issue symbols, and one verification nudge before terminating.
  • Failure modes are exploration and resource management: premature convergence on a minimal artifact, commitment to a low-ceiling paradigm followed by wasted iterations on plumbing inside it, and a systemic lack of temporal awareness — meta-agents rarely track the remaining budget and get cut off. Several reward-zero runs come from artifacts that never checkpoint partial answers, so a mid-pass timeout discards everything.
  • Budgets: 12 hours for AIME/GPQA/LiveCodeBench, 24 hours for SWE-Bench/Terminal-Bench; artifacts serve Qwen3-8B on a dedicated A100 vLLM backend for the reasoning domains and Claude Haiku 4.5 for the agentic ones; 2,500 search calls per phase in science. Open source, Harbor-based.
  • Limitation the authors name: repurposing existing object-level benchmarks inherits their narrow task distributions and their pre-training contamination risk.

Relevance

  • WorldSmith — the second of the two papers that falsify “nobody scores the generator under a budget”, and the weaker precedent of the two: the deliverable is an agent artifact optimised against a fixed, pre-existing benchmark, so the builder never has to discover what the tasks should be. That is precisely the gap WorldSmith claims — coverage the builder must find in a company’s data, and a portfolio rather than a single artifact. Three things do transfer. First, the integrity stack is the right prior art for WorldSmith’s own anti-hacking design: containment (secrets in a separate container, verifier injected post-hoc) plus a validated post-hoc auditor, with failed exploits documented rather than penalised. Second, the zero-resource induction protocol is a ready answer to a problem WorldSmith will hit in the hacker-fixer loop — frontier models refuse explicit attack prompts, so pressure has to be created structurally rather than asked for. Third, and most consequential for the pilot: σ > 0.1 across a third of configurations, against ≤ 0.053 for human baselines, is direct evidence that a builder benchmark needs multiple runs per configuration to say anything; WorldSmith’s portfolio score and its AM(r) acceptance-rate term should be read against that variance before any ranking is claimed.
  • Agents Automating ML Work — sits beside PostTrainBench as its explicit dual (that one post-trains a model, this one builds the agent workflow), and closes the loop the page tracks: agent evaluation feeding agent construction, offered as an empirical proxy for recursive self-improvement.
  • Red-Teaming — the indirect-induction protocol (a zero-resource configuration to create optimisation pressure when direct adversarial prompting is refused) and the auditor-validation step that turns eight red-team trials into an agreement measure against a human annotator.
  • Benchmark Validity — a benchmark whose validity argument is that every exploit was contained rather than merely detected, plus per-run integrity markers published alongside every score; also the honest admission that repurposing AIME/SWE-Bench inherits their contamination and distribution problems.
  • Benchmark Research — the meta-evaluation move itself: rather than build new tasks, wrap existing saturating benchmarks in a construction layer, and report three runs with standard deviations as a first-class result.

Notes

(none)