返回精选
AI 精选动态 智能评分 72

Scaling Managed Agents: Decoupling the brain from the hands

来源: Anthropic-engineering
发布于: 2026-04-08
收录于: 2026-05-21
AI 推荐理由
可重点看其把 session、harness、sandbox 拆分后的接口设计,以及从 Claude Sonnet 4.5 到 Claude Opus 4.5 触发的 harness 假设失效案例,适合参考代理系统的可靠性与可恢复性设计。
核心解读
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) 等接口实现容器故障恢复、会话持久化和安全边界隔离。
#智能体#开发者工具#基础设施