Scaffolding Beats Scale — Three Architecture Patterns Delivering Order-of-Magnitude Gains on Frozen Models
The Convergence
Three independent results from this cycle point the same direction: the biggest performance gains aren't coming from better models — they're coming from better architecture around models. ARC-AGI-3 shows RL+search beats frontier LLMs by 30×. Meta's HyperAgents deliver 2-6× by rewriting scaffolding. AutoBe turns catastrophic function-calling (6.75%) into near-perfect (99.8%) with a constrained output harness. The common thread: the model stays frozen; the gains come from search, self-modification, and structured verification.
ARC-AGI-3: The Benchmark That Broke Every Frontier Model
ARC-AGI-3 is the first interactive reasoning benchmark — turn-based games with no instructions, no known rules, no predefined goals. Over 1,200 human testers solved 100% of environments. Every frontier model scored below 1%:
| System | ARC-AGI-3 Score | vs. Best LLM |
|---|---|---|
| Human Testers (n=1,200+) | 100% | 270× |
| RL + Graph Search | 12.58% | 30× |
| Gemini 3.1 Pro | 0.37% | — |
| GPT 5.4 High | 0.26% | — |
| Opus 4.6 | 0.25% | — |
| Grok | 0.00% | — |
The devastating comparison: the RL+search approach isn't a billion-parameter model — it's classical search over structured state space. The LLM provides hypothesis generation; the search module provides systematic exploration. Caveat: compute budget comparisons between the approaches are not published.
Meta's HyperAgents: Self-Modification at Scale
Meta open-sourced the Darwin Gödel Machine HyperAgent (DGM-H) — an architecture where a meta-agent modifies both the task agent and its own modification procedure, evolving over generations until performance saturates. Using Claude Sonnet 4.5 as the frozen base model, results include:
- Polyglot coding: 0.14 → 0.34 (~2.4×)
- Paper review prediction: 0.0 → 0.71 (from zero to meaningful)
- Robotics reward design: 0.06 → 0.37 (~6.2×)
Cross-domain transfer is the headline: standard agents show ~0 progress in new domains without redesign, while HyperAgents hit +0.63 in 50 iterations. Critical safety constraint: agents cannot modify the outer evaluation function. This is both the guardrail and the limitation.
Meta used Anthropic's Claude — not Llama — as the base model, an implicit endorsement of Claude for agentic self-modification tasks that standard benchmarks don't capture.
AutoBe: Constrained Harness for Function Calling
AutoBe demonstrated that wrapping qwen3-coder-next in a type-schema + compiler-verification + structured-feedback harness boosted function-calling success from 6.75% to 99.8%. The pattern: constrain → verify → diagnose → correct. Type schemas narrow the output space, compilers provide binary pass/fail verification, and structured error messages give actionable correction signals. This is compiler-in-the-loop reinforcement at inference time.
What to do
Clone Meta's HyperAgents repo from Facebook Research GitHub and run the self-improvement loop on one existing LLM pipeline (prompt optimization or data cleaning) this sprint
Implement a constrained output harness (type schemas + compiler verification + structured error feedback) for your highest-value function-calling agent within 2 weeks
Add explicit search modules (MCTS, beam search, or graph search) to any agent handling exploration or hypothesis-testing tasks
Ensure any self-improving agent has an immutable, external evaluation function that cannot be modified by the agent itself