AGI Architectures: What We Can Agree On

October 23, 2025
blog image

Artificial general intelligence is no longer a speculative abstraction. The last decade of scaling laws, multimodal pretraining, and agentic scaffolding has translated vague philosophical debates into engineering trajectories. What once lived in academic essays now lives in code, in trained models, and in observable failure modes. The remaining question is not whether we will attempt general intelligence, but what structural commitments any such system must satisfy to function in the wild and not collapse under distribution shift, complexity, or society’s constraints.

The emerging picture from theory, systems, and empirical convergences is that AGI is not one trick — not a single “giant model” or a single training recipe — but a composite control architecture. Its core will integrate predictive world-models, explicit planning over those models, and mechanisms for continual self-improvement. Around this core sit layers for memory, tool-use, embodiment, generalization, and social reasoning — not as afterthoughts, but as co-equal conditions for operating in unbounded environments.

The same literature also converges on a second meta-fact: intelligence that does not self-monitor and self-correct is brittle, and brittle intelligence fails catastrophically when scaled. That is why reflectivity, uncertainty modeling, and verifiers are not “safety extras” but structural preconditions for reliability. An AGI that cannot detect that it might be wrong is already an unaligned system.

A third convergence concerns economics, not philosophy: most high-value applications are multi-agent, regulated, and dynamic. That implies that social intelligence — modeling other agents, norms, and institutions — is as central to AGI design as perception or planning. Systems that cannot reason about incentives, constraints, and negotiated equilibria cannot make good decisions in human domains.

A fourth convergence concerns scalability and realism: pure feed-forward reasoning without deliberation collapses under long horizons. Hence, search survives — as MCTS in control, as tree-of-thought in language, as active inference in embodied agents. Planning and search are the prostheses that convert pattern recognition into strategic behavior.

A fifth convergence is compression and composability as the engine of generality. World-models compress reality; hierarchical controllers compress temporal structure; distillation compresses competence; retrieval compresses knowledge. Every scalable subsystem reduces dimensionality while retaining decision-relevant invariants.

A sixth convergence is grounding. Whether through robotics, simulated sandboxes, or controlled tool-interfaces, AGI must close a perception-action loop that allows hypotheses to be tested and corrected. Ungrounded language alone cannot stabilize semantics or enforce causal beliefs.

And finally, a seventh convergence: safety is architectural. Oversight, containment, constitutional constraints, capability gates, and logged deliberation will not be retrofits; they will be first-class components in the system diagram. The design of AGI is therefore indistinguishable from the design of aligned AGI: the two are the same engineering problem.


Summary

1) World-model is non-optional

  • AGI needs an internal predictive/causal model of the environment

  • Enables simulation, counterfactuals, planning, and transfer

  • Implemented via latent dynamics models, structured memory, large-corpus abstractions

2) Planning over that model is essential

  • Learned heuristics alone are insufficient for long-horizon control

  • Explicit search (tree search / ToT / ReAct) dramatically improves success

  • Planning is the source of “non-myopic” intelligence

3) Self-improvement / meta-learning emerges

  • In-context learning already behaves like meta-learning

  • Practical AGI must adapt both at inference and across lifetimes

  • Reflective rewrite (Gödel/Hyperon) is the end-state of self-improvement

4) Generalization must be systemic, not local

  • Not benchmark-generalization but task / modality / embodiment / domain generality

  • Reuse of abstractions across transfers is the functional definition of “general”

  • Embodied & multimodal training appears to boost systemic generalization

5) Hierarchical / modular control

  • Cognition decomposes into reusable modules and time scales

  • Options/subgoals reduce credit assignment and improve interpretability

  • Modular stacks allow targeted safety, debugging, and reuse

6) Tool-use is internalized

  • External tools become extensions of cognition (APIs, search, code, simulators)

  • Agents must learn when/why/how to call tools and reuse outputs in reasoning

  • Retrieval is memory; execution is “extended action”

7) Layered memory

  • Working, episodic, semantic, and external memory are distinct needs

  • Episodic caches & retrieval increase sample-efficiency and factuality

  • Long-form tasks require revisitable, inspectable memory — not pure parametrics

8) Embodiment / grounding

  • Semantics must be tied to perception and action (physical or simulated)

  • Embodiment yields causal learning and reduces hallucination

  • Multi-embodiment training produces transferable competence

9) Value shaping / reward shaping

  • Objective design shapes reachable cognitive regimes

  • RLHF/CAI/DPO = practical methods for norm-compliance

  • Debate: “reward is enough” vs “scalar reward is insufficient” — unresolved

10) Uncertainty modeling

  • AGI must know when it does not know (epistemic)

  • Drives safer action, active exploration, and abstention/escorts to tools/humans

  • Ensembles, MC-dropout, OOD detection are current workhorses

11) Reasoning = search + heuristics

  • Intelligence is not only amortized heuristics — search must stay in the loop

  • AlphaZero/MuZero and ToT/Self-Consistency prove this pattern generalizes

  • Search introduces correctability and verifiability inside cognition

12) Compression is intelligence amplifier

  • Abstraction = discarding detail while preserving decision-relevant structure

  • Scaling laws & compute-optimal training formalize this principle

  • Distillation transfers competence; bottlenecks enable reuse and control

13) Self-evaluation / reflectivity

  • Systems must critique, verify, and revise their own chains of thought/actions

  • Debate, verifiers, process-supervision reduce silent reasoning failures

  • Confidence/abstention enables risk-aware action and corrigibility

14) Social / multi-agent intelligence

  • Real problems are multi-agent; AGI must model other minds & institutions

  • Role-based and population training yield robustness and specialization

  • Cooperation/competition structure drives emergent norms and strategies

15) Safety & containment are architectural

  • Policy filters, verifiers, capability gates, sandboxed tools, audit trails

  • Supervisory layers sit on the execution path, not post-hoc

  • Safety is part of the architecture, not an after-training patch


The Conclusions

1) A learned world-model is non-optional

A. Description
An AGI must maintain an internal, compressed causal/predictive model of its environment (a “world-model”) to simulate consequences, abstract regularities, and support planning, tool-use, and transfer across tasks. In practice this is a latent dynamical model that predicts future observations, rewards/utility proxies, and state features. OpenReview+2arXiv+2

B. What most authors agree on (with examples)

  • Predictive modeling is the core substrate. LeCun’s roadmap explicitly centers a “configurable predictive world model” trained self-supervised, paired with actor/critic heads. (“…autonomous intelligent agents… configurable predictive world model…”) OpenReview

  • Models should support imagination/rollouts. World Models trains a generative model and shows policies can be trained “entirely inside of [a] hallucinated dream.” arXiv

  • General algorithms benefit from learning an environment model. DreamerV3 “learns a model of the environment and improves behavior by imagining future scenarios,” then transfers across 150+ tasks, including Minecraft from scratch. arXiv

  • Even theory targets a universal predictor. AIXI fuses Solomonoff induction with sequential decision theory; the agent plans using a mixture over computable world-hypotheses. arXiv+1

C. Why it’s essential (multiple angles)

  • Sample-efficiency: modeling latent dynamics reduces trial-and-error cost in long-horizon tasks. arXiv

  • Counterfactual reasoning: simulating “what-ifs” under interventions is necessary for causal control. OpenReview

  • Transfer/generalization: abstract state that’s reusable across tasks, modalities, and embodiments. arXiv

  • Safety hooks: a model that predicts consequences enables constraint checking and risk-aware lookahead. OpenReview

D. How far are we right now

  • Research platforms: DreamerV3 and successors show strong generality in continuous control, Atari, DM Lab, and open-world Minecraft—without domain-specific tuning. arXiv

  • Reality gaps remain: world-models still struggle with long-term memory, partial observability at human scales, and complex, multi-agent social worlds. (Imagination is still short-horizon and brittle outside benchmarks.) arXiv

  • LLMs: text-only LMs implicitly learn world regularities but lack persistent, verifiable latent state and grounded sensorimotor learning by default. LeCun’s critique highlights this gap. arXiv

E. Best architecture so far & how it works

  • DreamerV3 (model-based RL): learns a stochastic latent dynamics model p(zt+1∣zt,at) plus reward and value heads; improves policy by imagining rollouts in latent space, optimizing actor/critic on imagined trajectories; uses robust normalization/balancing to stabilize across domains. arXiv+1

  • AIXI (theoretical gold standard): uncomputable Bayes-optimal agent mixing over all computable environments; practical approximations (AIXI-tl/CTW) illustrate the “predict+plan” decomposition, but are far from scalable. arXiv+2hutter1.net+2


2) Planning over the world-model is essential

A. Description
Planning is explicit deliberation—searching action sequences against the model or external tools to maximize objectives under uncertainty (tree search, beam search over thoughts, look-ahead rollouts, self-evaluation). It complements amortized “reflex” policies. arXiv

B. What most authors agree on (with examples)

  • Planning + learning beats either alone. AlphaZero/MuZero pair a learned/value policy with tree search; MuZero plans by predicting the quantities most relevant to planning: reward, policy, value. Nature+1

  • LLMs need deliberative inference. Tree-of-Thoughts argues left-to-right decoding is insufficient; it treats reasoning as search over “thought” states with backtracking/lookahead, yielding large gains. arXiv

  • Reason–act interleaving helps. ReAct interleaves chain-of-thought with tool actions (search, calculators), letting the plan evolve as evidence arrives. arXiv

C. Why it’s essential

  • Long-horizon credit assignment: lookahead mitigates myopia and compounding error. arXiv

  • Exploration under uncertainty: planning enables hypothesis tests and information-gain actions. arXiv

  • Safety and verification: explicit plans can be inspected, constrained, or simulated before execution. arXiv

D. How far are we right now

  • Games/Sim: Superhuman planning is solved in perfect-information games (Go, Chess, Shogi) and competitive on many Atari benchmarks. arXiv

  • LLM planning: Prompt-level planning (ToT, ReAct) reliably boosts reasoning, but is brittle, compute-heavy, and lacks consistent guarantees on real-world tasks. arXiv+1

  • Open challenges: partial observability, non-stationarity, rich tool chains, and multi-agent coordination at “civilization scale” remain unsolved.

E. Best architecture so far & how it works

  • MuZero (planning with learned dynamics): learns a compact latent transition model and uses Monte-Carlo Tree Search over latent states; each node stores policy/value estimates from the network, guiding exploration; no explicit environment rules are required. arXiv+1

  • AlphaZero (planning with policy/value nets): similar MCTS but with known rules; trains by self-play, iterating between improving the net and strengthening the search. arXiv

  • For LLMs: Tree-of-Thoughts as the current “best-of-breed” inference-time planner—structured branching over thoughts with self-evaluation and backtracking; ReAct when tool-use is integral to planning. arXiv+1


3) Self-improvement / meta-learning will be built-in

A. Description
AGI will improve itself at multiple levels: (i) fast, in-context adaptation during inference (learning from a few examples/instructions without weight updates); (ii) slow, across episodes via gradient-based meta-learning, finetuning, or architectural rewrites; (iii) reflective, where the system edits its own code/algorithms under guarantees (Gödel-style). arXiv+1

B. What most authors agree on (with examples)

  • In-context learning ≈ meta-learning. Evidence that Transformers implement a form of gradient-descent-like adaptation internally—“learn in their forward pass.” arXiv+1

  • Formal self-improvement is a coherent ideal. The Gödel Machine frames a provably optimal self-modifying agent that rewrites itself only after proving net utility gain. (“…self-referential, self-improving, optimally efficient problem solvers…”) arXiv

  • Practical AGI programs aim for reflective rewrite. OpenCog Hyperon couples a metagraph memory (Atomspace) with a meta-language (MeTTa) designed for reflective metagraph rewriting—i.e., the system can transform its own cognitive procedures. arXiv+2arXiv+2

C. Why it’s essential

  • Distribution shift resilience: continuous adaptation prevents rapid performance decay off-distribution. arXiv

  • Data/compute efficiency: reusing priors and learning algorithms accelerates skill acquisition. University of Edinburgh Research

  • Open-endedness: reflective improvement enables lifelong learning and capability growth without hand-engineering. arXiv

D. How far are we right now

  • Fast path: strong in-context adaptation in large Transformers is now well-documented (mechanistic links to GD/Bayesian inference continue to firm up). arXiv

  • Slow path: routine post-training (RLHF/RLAIF, DPO), tool-use augmentation (Toolformer) and dataset-driven “self-refine” loops give steady gains—but are still externally orchestrated. arXiv

  • Reflective path: Gödel-style provable self-rewrite remains theoretical; Hyperon’s reflective rewriting is an active engineering effort rather than a scaled demonstration. arXiv+1

E. Best architecture so far & how it works

  • In-context meta-learner (Transformer view): pretraining on broad task mixtures induces mechanisms (e.g., induction heads) that implement implicit optimization during inference; recent analyses show equivalence to preconditioned gradient descent in toy regimes—i.e., the model “learns how to learn” without weight updates. arXiv+1

  • Reflective program-space AGI (conceptual): Gödel Machine provides the cleanest formal target (proof-guided self-modification); OpenCog Hyperon is the most explicit practical blueprint (MeTTa programs as subgraphs in Atomspace; cognitive processes are themselves rewriteable data). arXiv+2arXiv+2

4) Generalization must be systemic, not local

A) Description
AGI won’t just “fit” a benchmark; it must systemically generalize across tasks, data modalities, embodiments, and objectives with minimal re-engineering—ideally by reusing common abstractions (concepts, skills) and quickly acquiring new ones. This view spans classic AGI (NARS), modern scaling (CLIP/Flamingo), and embodied LLMs (Gato/PaLM-E). arXiv+5cis.temple.edu+5arXiv+5

B) What most authors agree on (with examples)

  • Cross-task/embodiment reuse is mandatory. Gato trains a single policy across 600+ tasks/modalities/embodiments using one set of weights. arXiv+1

  • Multimodal pretraining yields broad transfer. Flamingo and CLIP show large gains in few/zero-shot transfer by aligning images↔text at scale. NeurIPS Proceedings+1

  • Embodiment improves grounding & transfer. PaLM-E interleaves continuous sensory state with language; reports positive transfer from joint multimodal/robotics training. arXiv+1

  • AGI must work under scarce knowledge/resources. NARS formalizes “AIKR”—operating with insufficient knowledge and resources as a design principle for generality. cis.temple.edu+1

  • Benchmarks should measure skill-acquisition efficiency, not just skill. Chollet’s ARC reframes “general intelligence” as the efficiency of learning new tasks from limited priors. arXiv+1

C) Why it’s essential

  • Reality is open-ended: new tasks/ontologies constantly appear.

  • Data/compute efficiency: reusing abstractions beats per-task finetunes.

  • Safety & robustness: broader priors reduce brittle shortcut solutions.

  • Economic value: cross-domain reuse underpins rapid deployment.

D) How far are we now

  • Strong: zero/few-shot perception generalization (CLIP, Flamingo). Proceedings of Machine Learning Research+1

  • Promising: policy transfer across embodiments (Gato), grounded multimodal reasoning (PaLM-E). arXiv+1

  • Gaps: causal/generalizable reasoning across long horizons; out-of-distribution compositionality (ARC-style) remains hard.

E) Best architectures so far & how they work

  • CLIP/Flamingo (foundation for perception-side transfer): dual encoders (CLIP) or interleaved V-L training (Flamingo) learn shared representations enabling zero/few-shot transfer without task-specific heads. Proceedings of Machine Learning Research+1

  • Gato (policy-side transfer): a single Transformer policy tokenizes observations/actions across tasks; context decides whether to emit text, torques, or button presses. arXiv

  • PaLM-E (embodied multimodal LM): encodes continuous robot state + vision into a language backbone; joint training yields positive transfer across V-L-robotics tasks. arXiv


5) Hierarchical / modular control

A) Description
AGI will decompose cognition into modules and levels of temporal abstraction: perception → memory → valuation → planning → action, with hierarchical control (slow “manager” setting subgoals; fast “workers” executing). This appears in hierarchical RL (Options, FeUdal Networks), cognitive architectures (LIDA), and modern roadmaps (LeCun). OpenReview+3UMass Amherst+3arXiv+3

B) What most authors agree on (with examples)

  • Temporal abstraction helps long-horizon tasks. The Options framework formalizes temporally extended actions (options) inside RL. UMass Amherst+1

  • Manager/worker splits stabilize learning. FeUdal Networks learn high-level goals in latent space (Manager) that a Worker executes at fast timescales. Proceedings of Machine Learning Research

  • Cognitive cycles require modular stages. LIDA (GW-style architecture) cycles through perception→attention→action selection with distinct memory modules. cse.buffalo.edu+1

  • Modern blueprints retain modularity. LeCun’s world-model + actor + configurator proposal explicitly advocates hierarchical joint-embedding and intrinsic-motivation modules. OpenReview

C) Why it’s essential

  • Credit assignment over long horizons via subgoals.

  • Reusability: learned skills/options become callable primitives.

  • Interpretability/safety: modular plans and goal interfaces are inspectable.

  • Scalability: different modules optimize at different timescales.

D) How far are we now

  • Mature theory & demos: Options/FeUdal show large gains on Atari/DM-Lab and remain standard references. Proceedings of Machine Learning Research+1

  • Cognitive stacks exist but are narrow: LIDA-style systems run end-to-end but haven’t scaled to web-scale learning. cse.buffalo.edu

  • Frontier practice: many state-of-the-art systems implement de-facto modularity (separate retrievers, planners, tool-APIs), but interfaces are still ad-hoc.

E) Best architectures so far & how they work

  • Options framework: represents skills as semi-MDP options with initiation sets, intra-option policies, termination; standard RL learns over both primitive actions and options. ScienceDirect

  • FeUdal Networks (FuN): a Manager emits goal vectors in latent space at a low frequency; a Worker is rewarded for moving latent state toward that goal—decoupling timescales and easing long-term credit assignment. Proceedings of Machine Learning Research

  • LIDA (GW implementation): distinct perceptual/episodic/procedural memories and an attention/“broadcast” phase select contents for action selection—i.e., modular control at the cognitive level. cse.buffalo.edu


6) Tool-use is internalized

A) Description
Future AGI will treat external tools (search engines, calculators, code interpreters, databases, robots, simulators) as cognitive extensions—learning when to call which tool with what arguments, and how to fuse results into ongoing reasoning and memory. arXiv+1

B) What most authors agree on (with examples)

  • Self-taught API use works. Toolformer fine-tunes LMs to decide if/when/how to call APIs in a self-supervised way (few exemplars per API). arXiv+1

  • Reasoning↔acting must interleave. ReAct interleaves chain-of-thought with actions (e.g., Wikipedia lookups), reducing hallucinations and improving task success. arXiv+1

  • External memory boosts knowledge tasks. RAG couples a generator with a dense retriever to ground outputs in updatable corpora; RETRO pushes retrieval into both training & inference to rival much larger LMs. arXiv+2NeurIPS Proceedings+2

C) Why it’s essential

  • Performance: specialized tools (math, search, code) beat parametric recall.

  • Faithfulness & provenance: retrieval provides citations and updateability.

  • Sample/compute efficiency: spares the model from memorizing facts.

  • Scaffolding for agency: tools become “hands and eyes” for planning.