← Wiki

HyperAgents: Self-Modifying AI Framework from Meta, UBC, and Vector Institute

Link: https://arxiv.org/abs/2603.19461

Authors: Meta AI, University of British Columbia, Vector Institute — March 2026

HyperAgents is a research paper from Meta AI (with collaborators at UBC and Vector Institute) that takes self-improving agents further than prior work by collapsing the separation between the task agent and the meta agent. Earlier architectures kept these as distinct layers — the task agent solves problems, the meta agent watches and improves the task agent. HyperAgents merge both into a single editable codebase. The system can read and modify its own source code, creating a self-referential loop where the agent analyzes its own implementation, identifies improvements, generates patches, and deploys updates to itself. The authors call this "metacognitive self-modification."

The key advance over the earlier Darwin Gödel Machine (DGM) is that the meta-level modification procedure is itself editable. In prior systems, how the agent improved itself was fixed by hand. HyperAgents can improve its improvement process. The results include a 23% latency reduction through autonomously discovered batching and caching modifications, and — most striking — when HyperAgents optimized on paper review and robotics tasks were transferred to Olympiad-level math grading, they achieved an imp@50 of 0.630. The non-DGM-H baselines in the same transfer setting achieved 0.0. The transferability gap is the headline finding.

This paper belongs on a reading list not because it has production-ready tooling (it doesn't), but because it represents the frontier of what self-improving systems can do. For anyone building AI-powered pipelines in 2026, it provides the theoretical scaffolding for why the meta-loop matters, and it names the failure mode of earlier approaches (fixed improvement procedures) that HyperAgents solves. The self-reference here is not a philosophical curiosity — it is the mechanism by which gains compound.