AI Agent

Salesforce 发布 CoAct-1 混合智能体 OSWorld 成功率 60.76% 创纪录

Salesforce Unveils CoAct-1 Hybrid Agent 60.76% OSWorld Success Rate Record

三智能体协同架构,能用代码绝不用 GUI,平均 10.15 步完成任务。Agent 演进从单兵作战走向团队协作。

Three-agent collaborative architecture, prefers code over GUI, 10.15 average steps per task. Agent evolution shifts from solo ops to team collaboration.

No.039 2026年8月20日 约 5 分钟阅读 ~5 min read

Salesforce 和南加州大学的研究团队,在 8 月 17 日发布了一个叫 CoAct-1 的混合智能体系统,直接把 OSWorld 基准测试的成功率干到了 60.76%——新的世界纪录。

OSWorld 是什么?它是目前最硬核的电脑操作智能体测试集,涵盖浏览器、IDE、办公软件等 369 个真实世界任务。之前的 GUI Agent 天花板大概在 50% 左右,CoAct-1 一下提了 10 个百分点。

怎么做到的?核心思路很反直觉——不是把 GUI Agent 做得更强,而是给它配一个"程序员搭档"

三智能体架构:代码 + GUI 混合作战

CoAct-1 不是一个 Agent,而是三个 Agent 的协同系统:

编排者(Orchestrator):总控中心,负责拆解用户目标、分配子任务、协调整个流程。

程序员(Programmer):后端操作专家,通过 Python 和 Bash 脚本直接调用系统接口、处理文件、操作数据库——凡是能靠代码解决的,都交给它。

GUI 操作员(GUI Operator):前端操作专家,通过视觉理解屏幕、模拟鼠标键盘——凡是代码搞不定的、必须用图形界面的,才让它上。

关键在于"智能路由":系统会动态判断每个子任务最适合用什么方式完成——能用代码的,绝不用 GUI。代码执行精准、快速、不会点错;GUI 灵活、能处理没有 API 的遗留系统。两者结合,各取所长。

效果有多明显?平均每个任务只用 10.15 步,而纯 GUI Agent 平均要 15.22 步。步数少了近三分之一,成功率还更高——因为代码操作几乎不会"点错按钮"。

为什么这是 Agent 演进的关键一步

很长一段时间里,AI Agent 的发展路径分成了两派。

一派是 API-first Agent:通过 API 和 MCP 调用工具,精准可靠,但只能用在有 API 的系统里。企业内部大量遗留软件、SaaS 产品的深层功能,没有 API 就没办法。

另一派是 GUI Agent:像人一样看屏幕、点鼠标、敲键盘,理论上什么软件都能操作。但问题是——它太像人了,人会点错,它也会点错。而且越复杂的界面,出错概率越高。

CoAct-1 的意义在于,它证明了 两条路不是二选一,而是可以融合的。能用 API 的地方用 API,不能用的地方用 GUI,编排层负责调度。这不是简单的"1+1=2",而是两种范式的互补——代码的稳定性乘上 GUI 的通用性。

这个思路特别适合企业场景。企业里的软件环境有多杂,做过的人都懂——有新的 SaaS 有 API,有老的 ERP 只能点鼠标,有内部系统要走命令行。单一模式的 Agent 根本吃不下这么复杂的环境。但混合模式可以。

但离"电脑随便用"还有很远

60.76% 的成功率听起来不错,但要真的放到生产环境用,还差得远。

想想看:你让 AI 帮你处理 10 个任务,有 4 个会搞砸——这种可靠性,谁敢让它碰真实业务?企业级应用要求的是 99.9% 以上的成功率,60% 连"试用"门槛都够不上。

而且 CoAct-1 暴露了一个更深的问题:Agent 的能力越强,安全风险就越大。一个能同时写代码又操作 GUI 的 Agent,如果出了bug或者被注入了,破坏力比单一模式的 Agent 大得多。代码执行权限、数据访问权限、操作审计……这些都是企业级落地必须解决的问题。

Salesforce 研究团队自己也说了,"人在环路"(human-in-the-loop)模式在短期内仍然是必要的。AI Agent 不是来替代人的,是来帮人干活的——关键操作还是要人来拍板。

所以 CoAct-1 更像是一个里程碑式的信号:Agent 的进化方向,已经从"单个 Agent 变强"转向"多个 Agent 协作"和"多种范式融合"。未来的 Agent 系统,不会是一个无所不能的超级智能,而是一个各司其职的智能体团队。

就像人类社会一样——不是每个人什么都会,而是每个人干自己最擅长的,然后协作完成复杂任务。

AI 也在走同样的路。

明天见。

Salesforce and USC researchers dropped a hybrid agent system called CoAct-1 on August 17, and it just crushed the OSWorld benchmark with a 60.76% success rate — a new world record.

What's OSWorld? It's the hardest benchmark for computer-using agents, with 369 real-world tasks across browsers, IDEs, and office applications. The previous ceiling for GUI agents was around 50%. CoAct-1 just jumped it by ten points.

How'd they do it? The core insight is counterintuitive — instead of making a better GUI agent, they paired it with a "programmer partner."

Three-Agent Architecture: Code + GUI Hybrid Warfare

CoAct-1 isn't one agent. It's a collaborative system of three:

Orchestrator: Mission control. Breaks down user goals, assigns subtasks, coordinates the whole pipeline.

Programmer: Backend operations specialist. Handles everything through Python and Bash scripts — system calls, file processing, database operations. If it can be solved with code, this agent does it.

GUI Operator: Frontend operations specialist. Interprets screens visually, simulates mouse and keyboard. Only steps in when code can't handle it — when you actually need a graphical interface.

The key is "intelligent routing": the system dynamically judges the best way to complete each subtask. If it can use code, it uses code — no GUI required. Code execution is precise, fast, and never misclicks. GUI is flexible and handles legacy systems with no APIs. Together, they cover each other's weaknesses.

How big is the impact? The average task takes just 10.15 steps, compared to 15.22 for pure GUI agents. Nearly a third fewer steps, and a higher success rate — because code operations almost never "click the wrong button."

Why This Is a Key Step in Agent Evolution

For a long time, AI agent development split into two camps.

One camp is API-first agents: they call tools through APIs and MCP, precise and reliable — but they only work where APIs exist. Enterprise environments are full of legacy software, deep SaaS features, and internal systems with no API surface. API agents hit a wall fast.

The other camp is GUI agents: they look at screens, click mice, and type keyboards just like humans. Theoretically, they can operate any software. But the problem is — they're too much like humans. Humans make misclicks, and so do they. And the more complex the interface, the higher the error rate.

CoAct-1 proves that these two paths don't have to be an either/or — they can merge. Use APIs where available, GUI where not, and let the orchestration layer handle scheduling. This isn't just "1+1=2" — it's the complementarity of two paradigms: the stability of code multiplied by the generality of GUI.

This approach is especially relevant for enterprise scenarios. Anyone who's worked in corporate IT knows how messy the software environment gets — new SaaS with APIs, old ERPs that only work via mouse, internal systems running on command lines. A single-mode agent can't handle that complexity. A hybrid mode can.

But "Use Any Computer" Is Still Far Away

A 60.76% success rate sounds impressive, but for actual production use, it's nowhere near enough.

Think about it: you ask AI to handle 10 tasks, and 4 of them go wrong. At that reliability level, who would let it touch real business operations? Enterprise-grade applications need 99.9%+ success rates. 60% doesn't even clear the "trial" bar.

And CoAct-1 exposes a deeper issue: the more capable an agent is, the bigger the security risk. An agent that can both write code and operate a GUI — if it bugs out or gets prompt-injected — can do way more damage than a single-mode agent. Code execution permissions, data access controls, audit trails… these are all mandatory for enterprise deployment.

Salesforce's own research team acknowledges that a human-in-the-loop model will remain necessary for the foreseeable future. AI agents aren't here to replace humans — they're here to help humans get work done. Humans still call the shots on critical operations.

So CoAct-1 is more of a milestone signal: agent evolution has shifted from "making individual agents smarter" to "making multiple agents collaborate" and "fusing multiple paradigms." The future of agent systems won't be one omniscient super-intelligence — it'll be a team of specialists, each doing what it does best.

Just like human society. Not everyone knows everything. Everyone does what they're best at, and together they tackle complex tasks.

AI is walking the same path.

See you tomorrow.

Sources · 信源 Sources