Alex Cransel 讨论 EXO,一个能在运行时安全自我编辑的完全递归智能体,以及从模型中心到框架中心的 AI 转变。
Alex Cransel discusses EXO, a fully recursive agent that can safely edit itself at runtime, and the shift from model-centric to harness-centric AI.
要点 · TL;DR
将代理分解为执行器、框架和沙箱,可以实现安全的递归自我改进。 Decomposing agents into executor, harness, and sandbox enables safe recursive self-improvement.
框架层作为代码,是自我改进的正确位置,而非模型权重。 The harness layer, being code, is the right place for self-improvement, not the model weights.
将秘密和状态与执行环境分离,对于代理系统的安全性至关重要。 Separating secrets and state from execution is critical for safety in agent systems.
核心观点 · Key points
智能体应分解为执行器、框架和沙箱,以实现安全的自我改进。 Agents should be decomposed into executor, harness, and sandbox to enable safe self-improvement.
框架层是递归自我改进的正确位置,因为它是代码而非权重。 The harness layer is the right place for recursive self-improvement because it's code, not weights.
将秘密和状态与智能体的执行环境分离对安全性至关重要。 Separating secrets and state from the agent's execution environment is critical for safety.
自我改进需要评估器以避免奖励黑客并确保与目标一致。 Self-improvement requires an evaluator to avoid reward hacking and ensure alignment with goals.
从模型训练到框架迭代的转变使得自我改进现在变得可行。 The shift from model training to harness iteration makes self-improvement feasible now.
反共识 · Contrarian takes
当系统在运行时自我检查而非使用外部循环时,递归自我改进更强大。 Recursive self-improvement is more powerful when the system inspects itself at runtime rather than using an outer loop.
架构可以强制执行模型对齐无法保证的安全属性。 Architecture can enforce safety properties that model alignment cannot guarantee.
智能体框架而非模型是成本和能力的主要驱动因素。 The agent harness, not the model, is the primary driver of cost and capability.
智能体状态的迁移对于扩展到许多并行任务至关重要,而不仅仅是便利。 Teleportation of agent state is essential for scaling to many parallel tasks, not just convenience.
自我改进的媒介是代码而非权重,使得RSI在框架层成为可能。 The medium of self-improvement is code, not weights, making RSI possible at the harness layer.
本期章节 · Chapters(共 17)
开场Introduction
OpenClaw的扩展性与自我改进OpenClaw's Extensibility and Self-Improvement
定义智能体Defining an Agent
架构图与插件点Architecture Diagram and Plugin Points
隐式与显式切换Implicit vs Explicit Switching
运行时检查自我改进Self-improvement via runtime inspection
Alex的背景与视角Alex's background and perspective
Exo架构:三层Exo architecture: three layers
架构概览Architecture Overview
Exo Harness架构Architecture of Exo Harness
信号传递与发布/订阅架构Signal Passing and Pub/Sub Architecture
Martin与Encore的贡献Contributions of Martin and Encore