发生了什么
Anthropic 发表 Managed Agents 架构设计
为什么值得关注
可重点看其把 session、harness、sandbox 拆分后的接口设计,以及从 Claude Sonnet 4.5 到 Claude Opus 4.5 触发的 harness 假设失效案例,适合参考代理系统的可靠性与可恢复性设计。
信息来源
以下内容来自公开来源,可打开原文继续核验。
Scaling Managed Agents: Decoupling the bra
Anthropic 介绍了 Claude Platform 的 Managed Agents 设计,目标是在长期运行的代理任务中,将“brain”(Claude 和 harness)、“hands”(sandbox 和 tools)以及“session”解耦为独立接口。文中举例称,之前在 Claude Sonnet 4.5 上为“context anxiety”加入的 context resets,在 Claude Opus 4.5 上已经不再需要,说明原先的 harness 假设会随着模型能力提升而过时。新架构把 harness 移到 container 外部,并通过 execute(name, input) → string、provision({resources})、wake(sessionId)、getSession(id)、emitEvent(id, event) 等接口实现容器故障恢复、会话持久化和安全边界隔离。
打开原始来源 ↗