<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-CN"><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://unbug.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://unbug.github.io/" rel="alternate" type="text/html" hreflang="zh-CN" /><updated>2026-08-20T08:56:59+00:00</updated><id>https://unbug.github.io/feed.xml</id><title type="html">Micropaper 一分钟读论文</title><subtitle>Micropaper 一分钟读论文：每天用一分钟读懂一篇 AI 论文，并提供 AI 范式雷达与 AI 智创简报，覆盖智能体、大模型、AI 安全与专利机会洞察。</subtitle><author><name>unbug</name></author><entry><title type="html">一分钟读论文：《贝叶斯伙伴建模与 LLM 协同重规划》</title><link href="https://unbug.github.io/one-minute-read-paper-bayes-belief-agent-adaptive-replanning/" rel="alternate" type="text/html" title="一分钟读论文：《贝叶斯伙伴建模与 LLM 协同重规划》" /><published>2026-08-20T00:00:00+00:00</published><updated>2026-08-20T00:00:00+00:00</updated><id>https://unbug.github.io/one-minute-read-paper-bayes-belief-agent-adaptive-replanning</id><content type="html" xml:base="https://unbug.github.io/one-minute-read-paper-bayes-belief-agent-adaptive-replanning/"><![CDATA[<p>论文<a href="https://arxiv.org/abs/2608.18490">《Bayesian Partner Modelling enables Adaptive Replanning for LLM Coordination》</a>针对多智能体大语言模型系统的一个常见问题：队友会在任务中途切换策略，智能体却常常在公开证据表明伙伴已更换技能之后，仍继续执行过时的计划。现有方法要么把伙伴追踪当作被动上下文，知道变化发生但反应迟缓，要么不加区分地频繁重规划。论文提出 BayesBeliefAgent，将基于 GPT-4o 的分层大语言模型规划器与一个贝叶斯追踪模块配对，仅当伙伴的实际动作与推断技能直接矛盾时，才中断当前技能并触发重规划。除标准奖励外，论文以重规划效率与 belief-action gap 作为核心评估维度。</p>

<h2 id="信念-行动差距一个新指标">信念-行动差距：一个新指标</h2>

<p>论文引入 <strong>belief-action gap</strong> 指标：在所有决策点中，智能体对伙伴的估计正确、却仍执行不互补技能的比例。不互补技能指与队友当前技能重叠或不配合的动作，例如两个智能体同时执行同一任务步骤。该指标衡量”知道”与”做到”之间的脱节：即使对伙伴的信念正确，智能体也可能继续执行过时、重复或不互补的宏观动作。论文同时提出 <strong>replanning efficiency</strong> 指标，定义为平均奖励除以每 episode 的重规划次数。</p>

<p>在 Overcooked 基准上，BayesBeliefAgent 与基线 ProAgent 的伙伴技能识别准确率几乎相同（Open 布局 <code class="language-plaintext highlighter-rouge">0.79</code> 对 <code class="language-plaintext highlighter-rouge">0.78</code>），但 gap 率在 Open 布局从 <code class="language-plaintext highlighter-rouge">0.41</code> 降到 <code class="language-plaintext highlighter-rouge">0.20</code>，在 Ring 布局从 <code class="language-plaintext highlighter-rouge">0.38</code> 降到 <code class="language-plaintext highlighter-rouge">0.28</code>。互补性指标 Comp@3 在 Open 布局从 <code class="language-plaintext highlighter-rouge">0.39</code> 升到 <code class="language-plaintext highlighter-rouge">0.66</code>，重复技能率从 <code class="language-plaintext highlighter-rouge">0.30</code> 降到 <code class="language-plaintext highlighter-rouge">0.15</code>。这说明差距不在智能体能否”看穿”伙伴，而在于信念是否被用作控制信号。</p>

<h2 id="门控中断机制">门控中断机制</h2>

<p>BayesBeliefAgent 将系统分为两层：规划器是基于 GPT-4o 的分层大语言模型规划器，以宏观技能为单位组织行为，每个技能包含多步动作序列；贝叶斯追踪模块根据观察到的动作持续推断伙伴当前技能的后验分布，并在每个决策点更新信念。仅当伙伴动作与推断技能直接矛盾时，系统才中断当前技能并触发重规划，论文称之为后验门控中断，把伙伴信念从”被动上下文”升级为”主动控制信号”。消融实验表明，把后验用作控制信号，优于仅将其作为规划器提示词的上下文。</p>

<p><img src="/assets/images/bayes-belief-agent-framework.svg" alt="BayesBeliefAgent 框架：贝叶斯追踪、矛盾检测、门控中断与重规划流程，及 belief-action gap 对比数字" /></p>

<h2 id="实验结果与局限">实验结果与局限</h2>

<p>实验使用 Overcooked 的 Open、Ring 与 Forced Coordination 三种布局，外加 Burrito 环境，伙伴均为行为偏好多样的未见过队友。在 Open 布局上，Full 变体平均每 episode 重规划 <code class="language-plaintext highlighter-rouge">1.8-3.0</code> 次，Periodic-10 与 Compl./held 变体分别需要 <code class="language-plaintext highlighter-rouge">15-51</code> 次与 <code class="language-plaintext highlighter-rouge">50-169</code> 次，三者的平均奖励相当，重规划次数少 20-80 倍。</p>

<p>论文同时说明自身局限：在 Forced Coordination 布局上收益较小，底层规划器的局限在该设置下更为明显，论文明确识别出选择性重规划收益有限的设置。规划器以 GPT-4o 为主配置，论文另以 GPT-5.2 做 backbone 敏感性检查，两种 backbone 互有胜负、无一一致占优。</p>

<h2 id="references">References</h2>
<ul>
  <li><a href="https://arxiv.org/abs/2608.18490">Bayesian Partner Modelling enables Adaptive Replanning for LLM Coordination（arXiv:2608.18490v1）</a></li>
  <li><a href="https://arxiv.org/html/2608.18490v1">论文 HTML 全文</a></li>
  <li><a href="/one-minute-read-paper-brainpilot-automating-brain-discovery/">BrainPilot 多 Agent 科研系统</a></li>
</ul>]]></content><author><name>unbug</name></author><category term="AI" /><category term="MultiAgent" /><category term="llm" /><category term="multi-agent" /><category term="planning" /><summary type="html"><![CDATA[论文提出 BayesBeliefAgent，用贝叶斯后验追踪队友技能，仅在动作与信念矛盾时中断并重规划；Overcooked 上 belief-action gap 从 0.41 降到 0.20，重规划次数减少 20-80 倍。]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://unbug.github.io/assets/images/bayes-belief-agent-framework.svg" /><media:content medium="image" url="https://unbug.github.io/assets/images/bayes-belief-agent-framework.svg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">一分钟读论文：《最佳选手未必是最佳教练》</title><link href="https://unbug.github.io/one-minute-read-paper-best-player-not-best-coach/" rel="alternate" type="text/html" title="一分钟读论文：《最佳选手未必是最佳教练》" /><published>2026-08-20T00:00:00+00:00</published><updated>2026-08-20T00:00:00+00:00</updated><id>https://unbug.github.io/one-minute-read-paper-best-player-not-best-coach</id><content type="html" xml:base="https://unbug.github.io/one-minute-read-paper-best-player-not-best-coach/"><![CDATA[<p>加州大学伯克利分校哈斯商学院数据创新与人工智能实验室（DIAL）的论文<a href="https://arxiv.org/abs/2608.18554">《CentaurBench: Benchmarking LLM Capabilities on Augmenting vs. Automating Real-World Work Tasks》</a>发现，大语言模型的”自动化”能力与”增强”能力几乎不相关：最会自己干活的”选手”，未必是最会指导别人干活的”教练”。论文用统一框架在 7 个真实工作任务上评测 9 个助手模型，每任务独立重复 10 次，两种角色排名的模型级 Spearman 相关仅 <code class="language-plaintext highlighter-rouge">0.48</code>（p=0.187），在常规显著性水平下与零不可区分。</p>

<h2 id="两种角色一套框架">两种角色，一套框架</h2>

<p>自动化模式下，助手模型直接产出交付物；增强模式下，助手只写一段 200-250 词的过程性指导文本，实际交付物由固定的工人模型 GPT-3.5-Turbo 完成。9 个助手模型来自 Claude、Gemini、DeepSeek 与 GPT 四个家族，固定弱工人是为了模拟实践中强模型指导弱模型的常见配置。7 个任务都来自有经济意义的真实场景：咨询、旅行规划、菜单规划、报税、辅导、运筹与市场趋势分析。评分由 LLM 评审团盲评两两对比，使用任务专属评分标准，且评审模型不评价自家模型的输出。</p>

<p><img src="/assets/images/centaur-bench-augment-vs-automate.svg" alt="CentaurBench 框架：自动化与增强两种角色" /></p>

<h2 id="选手排名与教练排名对不上">选手排名与教练排名对不上</h2>

<p>任务级相关从 -0.04（旅行规划）到 0.85（报税，p=0.004）不等，仅报税通过 Bonferroni 校正。7 个任务中有 5 个的”增强冠军”与”自动化冠军”不是同一个模型。下文排名均为 10 次重复的平均排名，1 表示最佳。论文给出两组角色反转：市场趋势任务上，Claude-Opus-4.8 自动化平均排名 2.05，增强却只有 8.15，是最弱的助手之一；咨询任务上 GPT-4.1 正好相反，增强排名 3.80 为所有受助条件最佳，自动化排名却只有 7.40。这些差异在 10 次独立重复后依然稳定。</p>

<h2 id="指导有时帮倒忙">指导有时帮倒忙</h2>

<p>无指导的 GPT-3.5-Turbo 基线在运筹、报税、旅行规划三个任务上排名第一，胜过所有”受助”条件。GPT-5-Mini 是唯一在自动化与增强两种方案下平均排名都第一的模型；在增强对比中，无指导基线的整体平均排名第二（3.79），唯一整体优于它的受助条件就是 GPT-5-Mini（3.66）。作者认为这不是指导无用的证据，而是说明指导的价值依任务而定、甚至可以为负：匹配不当或过于复杂的指导，会让工人比独自工作表现更差。</p>

<h2 id="局限与启示">局限与启示</h2>

<p>论文自称 pilot 研究，并列出明确局限：依赖 LLM 评审而非人类专家判断，评审偏差无法完全消除；增强只测一次性指导文本，未测多轮交互；工人固定为 GPT-3.5-Turbo，结论能否迁移到其他工人未知；7 个任务、10 次重复的覆盖面有限。其核心启示是自动化能力是协助质量的不完全代理，合适的模型取决于它扮演的角色与支持的任务，模型选型应当依据角色而非单一榜单。此前介绍的<a href="/one-minute-read-paper-bayes-belief-agent-adaptive-replanning/">《贝叶斯伙伴建模与 LLM 协同重规划》</a>关注 LLM 与动态伙伴的协同重规划，CentaurBench 则回答一个更基础的问题：哪个模型适合扮演哪个角色。</p>

<h2 id="references">References</h2>
<ul>
  <li><a href="https://arxiv.org/abs/2608.18554">CentaurBench: Benchmarking LLM Capabilities on Augmenting vs. Automating Real-World Work Tasks（arXiv:2608.18554v1）</a></li>
  <li><a href="https://arxiv.org/html/2608.18554v1">论文 HTML 全文</a></li>
  <li><a href="https://github.com/kennywong524/best-player-not-best-coach">代码仓库</a></li>
  <li><a href="https://kennywong524.github.io/centaur-benchmark">CentaurBench 项目页</a></li>
</ul>]]></content><author><name>unbug</name></author><category term="AI" /><category term="LLM" /><category term="llm" /><category term="benchmark" /><category term="multi-agent" /><summary type="html"><![CDATA[UC Berkeley Haas 的 CentaurBench 在 7 个真实工作任务上对比 LLM 的自动化与增强两种角色，模型级排名相关仅 0.48，5/7 任务冠军不同，无指导基线在 3 个任务胜过所有指导。]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://unbug.github.io/assets/images/centaur-bench-augment-vs-automate.svg" /><media:content medium="image" url="https://unbug.github.io/assets/images/centaur-bench-augment-vs-automate.svg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">一分钟读论文：《工具调用的苦涩教训》</title><link href="https://unbug.github.io/one-minute-read-paper-bitter-lesson-tool-calling/" rel="alternate" type="text/html" title="一分钟读论文：《工具调用的苦涩教训》" /><published>2026-08-18T00:00:00+00:00</published><updated>2026-08-18T00:00:00+00:00</updated><id>https://unbug.github.io/one-minute-read-paper-bitter-lesson-tool-calling</id><content type="html" xml:base="https://unbug.github.io/one-minute-read-paper-bitter-lesson-tool-calling/"><![CDATA[<p>普华永道美国（PricewaterhouseCoopers U.S.A.）的论文<a href="https://arxiv.org/abs/2608.06370">《The Bitter Lesson of Tool Calling》</a>（v1 提交于 <code class="language-plaintext highlighter-rouge">2026</code> 年 <code class="language-plaintext highlighter-rouge">8</code> 月），在伯克利函数调用基准（Berkeley Function-Calling Leaderboard，BFCL）v4 上用 <code class="language-plaintext highlighter-rouge">14</code> 个模型系统对比了两种工具调用范式：JSON tool calling（模型输出 JSON 函数调用）与 programmatic tool calling（PTC，模型写 Python 代码调用类型化 stub）。核心发现是 PTC 在 <code class="language-plaintext highlighter-rouge">11/14</code> 的模型上持平或更优、长链任务领先 <code class="language-plaintext highlighter-rouge">18.8%</code>，但全模型宏平均反而略低——优势随模型代际而非厂商分化。</p>

<h2 id="两种范式与实验设置">两种范式与实验设置</h2>

<p>JSON tool calling 是主流大语言模型 API 的原生接口：模型每轮输出一个 JSON 函数调用，执行结果回填后再进入下一轮推理，工具序列的每一步都对应一次独立的模型往返。PTC 则让模型直接写一段 Python 代码，通过类型化 stub（带签名约束的占位函数）在程序内循环、条件分支地调用工具，整段代码一次性生成并整体执行。BFCL v4 是评估大语言模型函数调用与工具使用能力的基准；实验取其 <code class="language-plaintext highlighter-rouge">309</code> 条代表性子集与 <code class="language-plaintext highlighter-rouge">8</code> 个任务类别，覆盖 <code class="language-plaintext highlighter-rouge">2024</code> 年 <code class="language-plaintext highlighter-rouge">11</code> 月至 <code class="language-plaintext highlighter-rouge">2026</code> 年 <code class="language-plaintext highlighter-rouge">7</code> 月发布、跨厂商与代际的 <code class="language-plaintext highlighter-rouge">14</code> 个模型。需要强调：BFCL v4 使用 echo-return stub——函数原样返回参数、不执行真实 API，因此测的是<strong>参数序列化准确率</strong>，不是端到端工具执行正确性。本站此前报道的 <a href="/paradigm-radar-codeact-agent-execution/">CodeAct 智能体执行范式雷达</a> 记录了微软将代码作为智能体执行接口的产品化动向，本篇是该路线在基准层面的量化补充。</p>

<p><img src="/assets/images/bitter-lesson-tool-calling.svg" alt="两种工具调用范式对比：JSON tool calling 与 PTC 在 BFCL v4 上的关键数字" /></p>

<h2 id="优势从哪里来">优势从哪里来</h2>

<p>PTC 的收益集中在三类场景。<strong>链式任务</strong>：链条长度达到 <code class="language-plaintext highlighter-rouge">12</code> 步以上时，PTC 较 JSON tool calling 拉开 <code class="language-plaintext highlighter-rouge">18.8%</code> 的绝对差距，短链无此效应；原因是 JSON 范式每个环节多一次推理回合，往返开销随链条累积，而 PTC 在一段程序内完成全部调用。<strong>并行扇出</strong>：JSON tool calling 超过一定阈值后直接丢弃工具调用（阈值因模型而异，Claude Sonnet 5 的为 <code class="language-plaintext highlighter-rouge">N=70–72</code>），PTC 在 <code class="language-plaintext highlighter-rouge">N=100</code> 仍保持 <code class="language-plaintext highlighter-rouge">100%</code> 枚举准确率，暴露了原生范式的结构性硬上限；并行场景 PTC 在 <code class="language-plaintext highlighter-rouge">14</code> 个模型中 <code class="language-plaintext highlighter-rouge">13</code> 个持平或更优。<strong>上下文污染</strong>（context flooding）：向上下文注入大量无关内容后，PTC 平均绝对提升 <code class="language-plaintext highlighter-rouge">5.5%</code>，JSON 基线平均退化 <code class="language-plaintext highlighter-rouge">2.3%</code>，文件系统发现式对比方法退化 <code class="language-plaintext highlighter-rouge">32%</code>。模型代际上，GPT-5.6 家族收益最大：GPT-5.6-Sol 与 GPT-5.6-Terra 各自较自身 JSON 基线绝对提升 <code class="language-plaintext highlighter-rouge">10.6%</code>，OpenAI 最新三个 GPT-5.6 变体全部为正（<code class="language-plaintext highlighter-rouge">+4.2%</code> 至 <code class="language-plaintext highlighter-rouge">+10.6%</code>），而三个旧模型未达持平线。</p>

<h2 id="边界与成本取舍">边界与成本取舍</h2>

<p>PTC 并非全面胜出。全模型宏平均上 PTC 反而略低：BFCL v4 主评测 JSON <code class="language-plaintext highlighter-rouge">78.6%</code> vs PTC <code class="language-plaintext highlighter-rouge">77.0%</code>，差距主要由三个 OpenAI 旧模型（GPT-4o、GPT-4.1、GPT-5.4-mini）在并行类别的 <code class="language-plaintext highlighter-rouge">\n</code> 编码失败驱动；「持平或更优」是逐模型口径，两种口径方向相反。成本上，链式消融中 PTC 输入 token 为 JSON tool calling 的 <code class="language-plaintext highlighter-rouge">1.5</code> 倍，高扇出时该开销反转；输出 token 两范式无差异，PTC 属以固定输入开销换取长链与高扇出收益的取舍。此外，消融样本量较小（每条件 n=<code class="language-plaintext highlighter-rouge">31–52</code>），单模型结果置信区间宽，只有跨模型聚合模式可可靠解读；论文明确将 echo-return stub、消融样本量小与 PTC 的固定输入 token 开销列为自身局限。</p>

<h2 id="references">References</h2>
<ul>
  <li><a href="https://arxiv.org/abs/2608.06370">The Bitter Lesson of Tool Calling（arXiv:2608.06370v1）</a></li>
</ul>]]></content><author><name>unbug</name></author><category term="AI" /><category term="LLM" /><category term="llm" /><category term="tool-use" /><category term="benchmark" /><summary type="html"><![CDATA[普华永道美国团队在 BFCL v4 上用 14 个模型对比 JSON 工具调用与程序化工具调用：PTC 在 11/14 的模型上持平或更优、长链任务领先 18.8%，但全模型宏平均反而略低，优势随模型代际而非厂商分化。]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://unbug.github.io/assets/images/bitter-lesson-tool-calling.svg" /><media:content medium="image" url="https://unbug.github.io/assets/images/bitter-lesson-tool-calling.svg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">一分钟读论文：《G0.5：单流自回归统一机器人推理与动作》</title><link href="https://unbug.github.io/one-minute-read-paper-g05-single-autoregressive-stream/" rel="alternate" type="text/html" title="一分钟读论文：《G0.5：单流自回归统一机器人推理与动作》" /><published>2026-08-17T00:00:00+00:00</published><updated>2026-08-17T00:00:00+00:00</updated><id>https://unbug.github.io/one-minute-read-paper-g05-single-autoregressive-stream</id><content type="html" xml:base="https://unbug.github.io/one-minute-read-paper-g05-single-autoregressive-stream/"><![CDATA[<p>上海机器人公司银河通用（Galaxea）的论文<a href="https://arxiv.org/abs/2608.11739">《G0.5: One Autoregressive Stream for Robot Reasoning and Action》</a>，提出预训练自回归视觉-语言-动作模型（VLA）G0.5：单一 transformer decoder 在同一 token 流中同时输出推理与动作。主流 VLA 配方把预训练视觉语言模型（VLM）当上下文编码器、另配独立 flow-matching 动作专家（通过回归向量场生成连续动作），使 VLM 只负责编码上下文；G0.5 让 VLM 直接成为决策者。相对主流配方，这是架构层面的改变而非训练技巧。真机微调成功率 <code class="language-plaintext highlighter-rouge">76.7%</code>，超过 π0.5 的 <code class="language-plaintext highlighter-rouge">53.3%</code> 和 GR00T-N1.7 的 <code class="language-plaintext highlighter-rouge">24.4%</code>；模型权重已开放，为社区验证这一路线提供了可复现起点。</p>

<h2 id="单流自回归架构">单流自回归架构</h2>

<p>G0.5 在大规模机器人轨迹数据集与 VQA（视觉问答）样本上联合预训练，由三个组件支撑。跨本体可学习动作 tokenizer：把 <code class="language-plaintext highlighter-rouge">14</code> 种本体的异构机器人动作映射到共享词表（统一 <code class="language-plaintext highlighter-rouge">27</code> 维动作空间），使不同机器人的动作用同一套 token 表示。原生思维链流：任务分解、物体定位与动作提示等推理 token 与动作 token 交替出现在同一条自回归序列中，由单一目标函数训练；这种交错排列意味着模型在生成的每一步先输出对任务状态的判断再给出动作，推理不是外挂模块，而是动作生成过程本身的一部分。视觉记忆模块：通过视觉编码器注入数秒级历史观测，弥补单帧输入的时序信息缺失。</p>

<p><img src="/assets/images/g05-single-autoregressive-stream.svg" alt="G0.5 单流自回归架构：推理与动作共享同一 transformer decoder" /></p>

<p>推理与动作共享同一套权重是这一设计的直接后果：VLM 预训练获得的指令跟随能力可以迁移到物理行为上，模型对指令的遵循也更紧密。本站此前解读的 <a href="/one-minute-read-paper-w0-latent-predictive-world-action-model-for-concurrent-humanoid-loco-manipulation/">w-0 世界动作模型</a> 走的是预测未来潜变量再生成动作的路线，G0.5 则直接改造策略架构本身，两者属于不同层面的工作。</p>

<h2 id="实验结果">实验结果</h2>

<p>论文在 <code class="language-plaintext highlighter-rouge">7</code> 个独立评测设置中报告了结果。真机实验使用公司自研的 R1-Lite 与 R1-Pro 机器人（4 任务 6 配置）微调后：成功率 <code class="language-plaintext highlighter-rouge">76.7%</code>，π0.5 为 <code class="language-plaintext highlighter-rouge">53.3%</code>，GR00T-N1.7 为 <code class="language-plaintext highlighter-rouge">24.4%</code>。2025 BEHAVIOR Challenge（50 个长程家庭移动操作任务，每个任务跨感知、规划与执行多个阶段）：G0.5 以单一通用策略 checkpoint 取得 <code class="language-plaintext highlighter-rouge">31.4%</code>，超过 π0.5 的 <code class="language-plaintext highlighter-rouge">26.3%</code> 与冠军方案 RLC 的 <code class="language-plaintext highlighter-rouge">26.1%</code>；仅训练 <code class="language-plaintext highlighter-rouge">1</code> epoch 即达 <code class="language-plaintext highlighter-rouge">29.0%</code>，已高于 π0.5。DROID 后训练后向未见环境与物体的零样本迁移（Franka 臂、10 任务）成功率 <code class="language-plaintext highlighter-rouge">82.5%</code>；LIBERO <code class="language-plaintext highlighter-rouge">98.9%</code>、RoboTwin 2.0 <code class="language-plaintext highlighter-rouge">93.3%</code>、SimplerEnv-Bridge <code class="language-plaintext highlighter-rouge">87.3%</code>，另在语言跟随 Pick-and-Place 基准上超过现有模型。论文还显示，仅修改 prompt 即可调节动作粒度、任务时程与分布外场景处理而无需再训练，这类部署侧调优不再依赖新数据采集或微调。</p>

<h2 id="边界条件">边界条件</h2>

<p>需要指出三点边界：</p>

<ul>
  <li>BEHAVIOR 的绝对成功率仅约 <code class="language-plaintext highlighter-rouge">31.4%</code>，冠军方案 RLC 本身也只有约 <code class="language-plaintext highlighter-rouge">26%</code>，该基准整体仍属困难问题，长程家庭任务远未解决；</li>
  <li>真机实验每配置仅 <code class="language-plaintext highlighter-rouge">15</code> episodes、共 4 个任务，样本量偏小，且为团队自报数据；</li>
  <li>“7 independent regimes” 混合了不同评测协议与数据集，横向可比性有限。</li>
</ul>

<h2 id="references">References</h2>
<ul>
  <li><a href="https://arxiv.org/abs/2608.11739">G0.5 论文（arXiv:2608.11739v1）</a></li>
  <li><a href="https://droid-dataset.github.io/">DROID 机器人操作数据集项目页</a></li>
  <li><a href="https://libero-project.github.io/">LIBERO 基准项目页</a></li>
</ul>]]></content><author><name>unbug</name></author><category term="embodiedai" /><category term="robotics" /><category term="embodied-ai" /><category term="vlm" /><category term="reasoning" /><category term="long-horizon" /><summary type="html"><![CDATA[银河通用发布开放权重 VLA 模型 G0.5，用单一自回归流同时生成推理与动作 token，真机微调成功率 76.7%，超过 π0.5 的 53.3%。]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://unbug.github.io/assets/images/g05-single-autoregressive-stream.svg" /><media:content medium="image" url="https://unbug.github.io/assets/images/g05-single-autoregressive-stream.svg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">一分钟读论文：《SABLE：智能体编排的先导化合物优化》</title><link href="https://unbug.github.io/one-minute-read-paper-sable-dmta-computational-twin/" rel="alternate" type="text/html" title="一分钟读论文：《SABLE：智能体编排的先导化合物优化》" /><published>2026-08-17T00:00:00+00:00</published><updated>2026-08-17T00:00:00+00:00</updated><id>https://unbug.github.io/one-minute-read-paper-sable-dmta-computational-twin</id><content type="html" xml:base="https://unbug.github.io/one-minute-read-paper-sable-dmta-computational-twin/"><![CDATA[<p>美国北卡罗来纳大学教堂山分校（UNC Chapel Hill）的论文<a href="https://arxiv.org/abs/2608.11483">《A Modular Agentic Framework for Synthetically Constrained Multi-Objective Hit-to-Lead Optimization》</a>，提出开源智能体框架 SABLE（Synthetically-accessible Agentic Bayesian Ligand Exploration）：LLM 解析自然语言优化目标并路由任务，调度反应模板类似物枚举、ADMET 与理化性质预测、Boltz-2 结构亲和力打分、贝叶斯优化四类专用工具，构成药物发现「设计-合成-测试-分析」（DMTA）循环中分析与优先级排序阶段的<strong>计算孪生体</strong>。METTL3 回顾性案例中，单次运行即得到预测浓度 <code class="language-plaintext highlighter-rouge">102.33 nM</code> 的头部类似物（相对起始化合物约 <code class="language-plaintext highlighter-rouge">95</code> 倍预测活性提升），且论文明确该候选未经湿实验验证、属前瞻性优先级排序。</p>

<h2 id="核心问题与方法">核心问题与方法</h2>

<p>先导化合物优化要求在效力、选择性、药代动力学、安全性与合成可行性等竞争约束下迭代设计类似物，传统流程依赖人工逐轮执行 DMTA 循环。SABLE 将该循环的分析与优先级排序阶段搬到计算侧：用户以自然语言下达目标（如最小化对 METTL3 的预测亲和力），<strong>LLM 编排层</strong>解析出优化目标与迭代预算并路由任务；HEALER 反应模板引擎枚举合成可及的类似物库，RDKit 与 STOPLIGHT 提供理化性质和 ADMET 预测，Boltz-2 从蛋白序列与配体输入联合预测复合物结构与亲和力分数（logIC50），贝叶斯优化迭代挑选候选。每个数值输出均记录来源工具与调用参数、可逐条回溯；模块化架构下仅需编辑配置文件即可替换枚举引擎或表征后端。本站此前解读的 <a href="/one-minute-read-paper-brainpilot-automating-brain-discovery/">BrainPilot 多 Agent 科研系统</a> 同样以可追溯性为核心设计；SABLE 则把可溯源落到每个数值输出的工具级出处，复现所需提示词与 JSON 状态转储随代码仓库开源。</p>

<p><img src="/assets/images/sable-dmta-computational-twin.svg" alt="SABLE 智能体编排架构：LLM 路由到四个专用工具，构成 DMTA 计算孪生体" /></p>

<h2 id="实验结果">实验结果</h2>

<p>实验覆盖单目标、双目标与四靶点三类优化战役。单目标战役以 CAMKK2（UniProt Q96RR4）为靶点：最佳观测预测 logIC50 较种子改善 <code class="language-plaintext highlighter-rouge">1.03</code> 个 log 单位（–0.52 到 –1.55），前 <code class="language-plaintext highlighter-rouge">20</code> 名候选的累积分布在约 <code class="language-plaintext highlighter-rouge">5</code> 次迭代后进入平台期。双目标战役同时优化 Boltz-2 预测亲和力与类药性 QED，得到覆盖不同折中点的非支配解集。四靶点案例选取 BACE1、碳酸酐酶 XII、ABL1 与 S1P1 受体：ChEMBL 数据仅用于挑选低活性种子分子与参考化合物，优化过程未输入 SAR 轨迹或实验标签，唯一信号是 Boltz-2 分数；找到的类似物在预测亲和力上达到或超过各系列最佳化合物，其中 BACE1 的种子从预测 <code class="language-plaintext highlighter-rouge">58.88 µM</code> 改善到 <code class="language-plaintext highlighter-rouge">370 nM</code>。效率上，收敛前仅评估枚举库的一小部分，相对穷举筛选的 Boltz-2 推理调用节省量在 <code class="language-plaintext highlighter-rouge">10^3</code>–<code class="language-plaintext highlighter-rouge">10^6</code> 规模库上随库大小近似线性增长。METTL3 回顾性案例中，起始化合物预测 IC50 为 <code class="language-plaintext highlighter-rouge">9.77 µM</code>（实验值约 <code class="language-plaintext highlighter-rouge">7 µM</code>），单次运行得到的头部类似物即上述 <code class="language-plaintext highlighter-rouge">102.33 nM</code> 候选。</p>

<h2 id="局限与风险">局限与风险</h2>

<p>第一，<strong>全部结果均为计算预测</strong>：Boltz-2 在 SABLE 中只充当计算预言机（oracle，昂贵评估的代理模型）而非实测生化效力的替代；<code class="language-plaintext highlighter-rouge">95</code> 倍提升是预测值，头部候选未经任何湿实验验证。第二，回顾性案例存在对已知 SAR（构效关系）过拟合的风险；论文声明优化信号仅为 Boltz-2 分数、未输入 SAR 轨迹与实验标签，但 ChEMBL 种子选择本身来自已发表系列。第三，框架性能受限于枚举引擎反应模板的覆盖度与表征模型的校准质量，且缺少与其他 agentic 药物发现系统的正面基线对比；论文将其定位为支持而非取代药物化学评审与实验验证，把纳入真实 DMTA 实验闭环列为后续工作。</p>

<h2 id="references">References</h2>
<ul>
  <li><a href="https://arxiv.org/abs/2608.11483">SABLE 论文（arXiv:2608.11483v1）</a></li>
  <li><a href="https://github.com/molecularmodelinglab/SABLE">SABLE 代码仓库（Apache 许可开源）</a></li>
</ul>]]></content><author><name>unbug</name></author><category term="AI" /><category term="DrugDiscovery" /><category term="drug-discovery" /><category term="llm-agent" /><category term="dmta" /><category term="bayesian-optimization" /><summary type="html"><![CDATA[北卡罗来纳大学教堂山分校开源 SABLE 框架，用 LLM 编排反应模板枚举、性质预测、亲和力打分与贝叶斯优化，构成 DMTA 分析的计算孪生体；METTL3 回顾性案例单次运行得到预测活性提升约 95 倍的候选分子。]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://unbug.github.io/assets/images/sable-dmta-computational-twin.svg" /><media:content medium="image" url="https://unbug.github.io/assets/images/sable-dmta-computational-twin.svg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">一分钟读论文：《近端文本梯度下降驱动的智能体技能自进化》</title><link href="https://unbug.github.io/one-minute-read-paper-skillprox-self-evolving-agent-skills/" rel="alternate" type="text/html" title="一分钟读论文：《近端文本梯度下降驱动的智能体技能自进化》" /><published>2026-08-17T00:00:00+00:00</published><updated>2026-08-17T00:00:00+00:00</updated><id>https://unbug.github.io/one-minute-read-paper-skillprox-self-evolving-agent-skills</id><content type="html" xml:base="https://unbug.github.io/one-minute-read-paper-skillprox-self-evolving-agent-skills/"><![CDATA[<p>香港科技大学与澳门大学的论文<a href="https://arxiv.org/abs/2608.07449v1">《SkillProx: Self-Evolving Agent Skills via Proximal Textual Gradient Descent》</a>，针对智能体技能（由主指令文件 SKILL.md 和可选引用资源目录构成的结构化文本工件）提出受近端梯度下降（交替执行任务损失方向步与正则约束子问题求解的优化算法）启发的”前向-后向”双阶段框架：前向闭环诊断演化验证每次编辑的实际效果，后向效用感知近端精炼审计并收缩累积知识。在 SpreadSheetBench、WikiTQ 和 HiTab 三个基准上，SkillProx 相比最强基线 SkillGrad 平均提升约 <code class="language-plaintext highlighter-rouge">3.0</code> 个百分点，且分布外（OOD）泛化显著更稳：Qwen3.5-4B 下 SkillOpt 的 OOD 得分在 WikiTQ、HiTab 上分别跌至 <code class="language-plaintext highlighter-rouge">26.0</code> 和 <code class="language-plaintext highlighter-rouge">16.0</code>，SkillProx 则达到 <code class="language-plaintext highlighter-rouge">78.5</code> 与 <code class="language-plaintext highlighter-rouge">69.2</code>。</p>

<h2 id="技能演化的两个核心问题">技能演化的两个核心问题</h2>

<p>现有方法如 SkillGrad、SkillOpt 和 EvoSkill 在技能演化中暴露出两个根本缺陷。第一个是<strong>无验证的前向更新</strong>：LLM 生成的诊断被直接当作有效更新方向提交，未经重新执行验证实际效果，某些看似合理的编辑反而降低任务性能。第二个是<strong>不受控的技能增长</strong>：迭代打补丁使技能膨胀为重复指令、冲突启发式与过度泛化的特定解法；留一法审计发现存在负效用知识单元——移除它们反而将准确率从 <code class="language-plaintext highlighter-rouge">46%</code> 提升到 <code class="language-plaintext highlighter-rouge">54%</code>。SkillProx 将技能演化形式化为复合优化问题：最小化任务损失（期望准确率）与文本复杂度（总字符数）的加权和，为双阶段设计提供理论基础。</p>

<h2 id="前向-后向双阶段框架">前向-后向双阶段框架</h2>

<p><img src="/assets/images/skillprox-forward-backward-framework.svg" alt="SkillProx 闭环诊断演化与近端精炼双阶段框架" /></p>

<p>核心创新是将技能演化分解为两个正交阶段，分别对应标准近端梯度下降的前向梯度步与后向近半步。<strong>前向——闭环诊断演化</strong>：在当前技能上执行训练批次后，诊断器分析失败轨迹、成功轨迹与拒绝原因提出编辑方向（智能体轨迹中的错误分析方法可参考<a href="/one-minute-read-paper-trajdebug-error-lifecycle-agent-trajectories/">《追踪错误生命周期以识别长程 Agent 轨迹中的关键失败》</a>）；Patcher 生成候选技能后在同批次重执行验证，仅当硬准确率与平均单元格准确率同时不下降才接受更新，被拒绝的编辑及其性能变化注入后续诊断形成语义历史。<strong>后向——验证门控近端精炼</strong>：将技能解析为可审计的知识单元（二级章节与三级引用组），对每个单元执行冻结留一法效用审计计算边际贡献，按单元格效用升序排列、负效用优先处理；Shrinker 生成的临时副本须满足结构有效、复杂度严格降低、硬准确率不下降且单元格准确率降幅不超过阈值。前向决定哪些新知识进入技能，后向决定哪些累积知识保留。</p>

<h2 id="实验结果与局限">实验结果与局限</h2>

<p>在 Qwen3.5-4B、Qwen3.5-27B 和 Qwen3.6-27B 三个骨干模型上的实验提供了关键证据。IID 任务上 SkillProx 全面领先：Qwen3.6-27B 下 SpreadSheetBench <code class="language-plaintext highlighter-rouge">54.5</code>（最佳）、WikiTQ <code class="language-plaintext highlighter-rouge">86.2</code>、HiTab <code class="language-plaintext highlighter-rouge">80.0</code>（最佳），较 SkillGrad（<code class="language-plaintext highlighter-rouge">50.0/84.8/78.3</code>）分别提升 4.5、1.4、1.7 个百分点；相比人工编写技能（<code class="language-plaintext highlighter-rouge">36.7/85.7/78.0</code>）IID 提升高达 <code class="language-plaintext highlighter-rouge">17.8</code> 个百分点。消融实验验证两阶段独立贡献：完整 SkillProx（<code class="language-plaintext highlighter-rouge">54.5</code>）优于仅 Prox（<code class="language-plaintext highlighter-rouge">53.0</code>）与仅闭环诊断（<code class="language-plaintext highlighter-rouge">52.0</code>），移除 Prox 降幅更大（-2.5pp），说明仅靠前向编辑会积累冗余内容。压缩-准确率权衡显示，tau=-0.001 时达到最佳准确率 <code class="language-plaintext highlighter-rouge">52.3%</code> 同时压缩 25.7%，即使移除 74.9% 技能内容仍保留 <code class="language-plaintext highlighter-rouge">51.0%</code> 准确率；最终技能长度与 IID 硬准确率负相关（r=-0.628）。局限方面，评估仅覆盖三个高度结构化的表格基准，效果能否推广到更开放的编程或推理场景未知；留一法审计需对每个知识单元执行完整评估，LLM 调用开销大；Prox 门控基于固定验证集，存在过拟合风险。</p>

<h2 id="references">References</h2>
<ul>
  <li><a href="https://arxiv.org/abs/2608.07449v1">SkillProx 论文（arXiv:2608.07449v1）</a></li>
  <li><a href="https://github.com/Steven011018/SkillProx">SkillProx 代码仓库</a></li>
</ul>]]></content><author><name>unbug</name></author><category term="AI" /><category term="Agent" /><category term="agentic-coding" /><category term="self-evolving" /><category term="agent-skills" /><summary type="html"><![CDATA[香港科技大学与澳门大学提出 SkillProx，用闭环诊断演化加近端精炼双阶段框架实现智能体技能自进化，在三个表格基准上平均提升约 3 个百分点，分布外泛化显著更稳。]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://unbug.github.io/assets/images/skillprox-forward-backward-framework.svg" /><media:content medium="image" url="https://unbug.github.io/assets/images/skillprox-forward-backward-framework.svg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">AI 智创简报：《Agent 纠错专利扎堆，一个人能做的护栏生意》</title><link href="https://unbug.github.io/innovation-brief-agent-guardrail-patents/" rel="alternate" type="text/html" title="AI 智创简报：《Agent 纠错专利扎堆，一个人能做的护栏生意》" /><published>2026-08-10T00:00:00+00:00</published><updated>2026-08-10T00:00:00+00:00</updated><id>https://unbug.github.io/innovation-brief-agent-guardrail-patents</id><content type="html" xml:base="https://unbug.github.io/innovation-brief-agent-guardrail-patents/"><![CDATA[<p>2026 年上半年集中公开的一批 Agent 专利，主题高度一致：让 Agent 记得住上次说过什么、别张口就编、出错了能自己爬起来。大厂圈的是平台，但这三件事的实现层薄到一个人一周就能做出可演示版本，接在别人的 API 调用链上收钱。</p>

<p><img src="/assets/images/innovation-brief-agent-guardrail-patents.svg" alt="Agent 纠错专利信号与独立开发者机会" /></p>

<h2 id="专利信号">专利信号</h2>

<p>近半年公开的四件专利，指向同一组问题：</p>

<table>
  <thead>
    <tr>
      <th>公开号</th>
      <th>申请人 / 公开日</th>
      <th>要点</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">US20260044392</code></td>
      <td>Rutgers 大学 · 2026-02-12</td>
      <td>Agent 操作系统，内核含调度器、上下文与记忆管理器</td>
    </tr>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">US20260188475</code></td>
      <td>Hippocratic AI · 2026-07-02</td>
      <td>跨会话记忆：用户属性存为知识图谱与 token 化 KV 缓存</td>
    </tr>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">US20260111248</code></td>
      <td>UiPath · 2026-04-23</td>
      <td>Agent 卡住时升级给人处理，并把解法记下来供下次自愈</td>
    </tr>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">US 12,699,853</code></td>
      <td>Microsoft · 2026-08-04</td>
      <td>幻觉检测：由答案反向重建问句，比对向量距离打分</td>
    </tr>
  </tbody>
</table>

<p>前三件为<strong>申请公开</strong>，不等于已授权；微软那件已获<strong>授权</strong>。产业侧同期佐证：IFI Claims 统计 2025 年全球 AI 专利授权首次突破 10 万件，其中 agentic AI 相关申请全球同比增长 59%，已占 AI 专利总量的 15%。</p>

<h2 id="技术趋势">技术趋势</h2>

<p>四件专利共同承认了一件事：模型本身已不是瓶颈，Agent 跑不起来是因为<strong>会话之间断片、答案不可信、单点失败拖垮整条链</strong>。</p>

<p>更值得注意的是解法方向一致——把「记忆、校验、恢复」从模型里拆出去，做成模型之外的外围组件。Hippocratic 把用户偏好存进知识图谱和键值缓存，微软用反推问句量化幻觉，UiPath 把人工兜底的动作沉淀成可复用记忆。<strong>没有一件是靠重新训练模型解决的</strong>，全都发生在调用链上。这正是不掌握算力的人还能参与的那一层。</p>

<h2 id="落地机会">落地机会</h2>

<p>这一层的门槛低到反常，用现成组件就能拼出来：</p>

<ul>
  <li><strong>幻觉自查</strong>：拿到答案后多发一次请求把它反推成问题，与原问题算余弦相似度，低于阈值就重试。开源 embedding 模型加几十行代码即可</li>
  <li><strong>会话记忆</strong>：本地向量库（SQLite 或 Chroma 起步）按用户 ID 存偏好与结论，下次对话前召回注入，无需自建训练</li>
  <li><strong>失败重放</strong>：把每次工具调用的入参、异常与人工修复方式落盘，命中相同签名时直接复用上次解法</li>
</ul>

<p>起步成本主要是模型 API 与一台最小云主机，月均几百元；MVP 一周内能跑通。需要留意的是，专利保护的是特定实现路径，参考它揭示的<strong>问题</strong>，用自己的方式实现。</p>

<h2 id="创业发现">创业发现</h2>

<ul>
  <li><strong>护栏 SDK / 中间件</strong>：面向同样在做 AI 产品的独立开发者，按调用量或月订阅收费。首批客户就在各家 Agent 框架的 issue 区和开发者社群里——那里每天都有人抱怨 Agent 胡说和断片。门槛低是优点也是缺点，风险是框架官方随时把功能内置</li>
  <li><strong>Agent 交付加质检</strong>：给中小商家做客服或文档 Agent，把上面三件套做成「质检报告」随交付物给出，按项目收费。门槛在行业知识而非技术，风险是纯外包不产生复利，需尽早把重复部分模板化</li>
</ul>

<blockquote>
  <p>大厂的专利画的是平台边界；护栏这种薄中间层利润太薄，大厂看不上，恰好只剩个人和小团队愿意做。</p>
</blockquote>

<h2 id="references">References</h2>
<ul>
  <li><a href="https://patents.justia.com/patent/20260044392">US20260044392 LLM-Based Agent Operating Systems</a></li>
  <li><a href="https://patents.justia.com/patent/20260188475">US20260188475 Conversational AI System with Cross-Session Memory</a></li>
  <li><a href="https://patents.justia.com/patent/20260111248">US20260111248 Unified Agentic Automation and RPA with Self-Healing</a></li>
  <li><a href="https://patents.justia.com/patent/12699853">US 12,699,853 Language Model Hallucination Detection</a></li>
  <li><a href="https://www.ificlaims.com/news/ifi-claims-ai-patents-break-100000-grants-milestone/">IFI CLAIMS: AI Patents Break 100,000 Grants Milestone</a></li>
</ul>]]></content><author><name>unbug</name></author><category term="AI" /><category term="InnovationBrief" /><category term="Patent" /><category term="Agent" /><category term="LLM" /><category term="IndieHacker" /><summary type="html"><![CDATA[2026 年上半年集中公开的一批 Agent 专利，主题高度一致：让 Agent 记得住上次说过什么、别张口就编、出错了能自己爬起来。大厂圈的是平台，但这三件事的实现层薄到一个人一周就能做出可演示版本，接在别人的 API 调用链上收钱。]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://unbug.github.io/assets/images/innovation-brief-agent-guardrail-patents.svg" /><media:content medium="image" url="https://unbug.github.io/assets/images/innovation-brief-agent-guardrail-patents.svg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">一分钟读论文：《w-0：潜变量预测式世界动作模型实现人形机器人并发运动操作》</title><link href="https://unbug.github.io/one-minute-read-paper-w0-latent-predictive-world-action-model-for-concurrent-humanoid-loco-manipulation/" rel="alternate" type="text/html" title="一分钟读论文：《w-0：潜变量预测式世界动作模型实现人形机器人并发运动操作》" /><published>2026-08-09T00:00:00+00:00</published><updated>2026-08-09T00:00:00+00:00</updated><id>https://unbug.github.io/one-minute-read-paper-w0-latent-predictive-world-action-model-for-concurrent-humanoid-loco-manipulation</id><content type="html" xml:base="https://unbug.github.io/one-minute-read-paper-w0-latent-predictive-world-action-model-for-concurrent-humanoid-loco-manipulation/"><![CDATA[<p>新加坡南洋理工大学、北京大学和北京智源研究院等机构合作的一篇论文<a href="https://arxiv.org/abs/2608.06375">w-0：潜变量预测式世界动作模型实现人形机器人并发运动操作 (w-0: A Latent Predictive World Action Model for Concurrent Humanoid Loco-Manipulation)</a>，提出了一种将未来视觉潜在预测与全身动作生成联合建模的新范式。该论文在 11 个真实家庭任务上持续优于 9 种基线方法，并发布了目前最大规模的人形家庭操作数据集 w-HOME（40+ 小时）。</p>

<h2 id="核心问题与方法设计">核心问题与方法设计</h2>

<p>人形机器人在家庭环境中具有独特优势，但真实的辅助任务需要<strong>并发运动操作</strong>——下肢、躯干、手臂和手在移动过程中持续相互适应。擦桌子的机器人必须迈步、倾斜身体并保持接触；拖地的机器人必须在移动中控制长柄工具。当前系统面临两大挑战：<strong>视觉-语言-动作策略以手臂为中心设计</strong>，底盘与手臂被视为独立组件；<strong>世界-动作模型依赖视频预测</strong>，时间不一致性被放大为不稳定运动。</p>

<p>w-0 的核心转变在于将未来视觉预测用作<strong>紧凑的预测信号而非视频生成目标</strong>。训练分为三个阶段：第一阶段通过构建离散全身动作词汇表，微调 Qwen3-VL-2B-Instruct 使 VLM 学会将视觉观察与动作 token 关联；第二阶段受 V-JEPA 启发进行未来嵌入预测，关键创新是通过 SONIC 仿真回放将人类运动数据转换为机器人可执行的动作监督；第三阶段使用 w-HOME 真实演示数据进行微调，支持同视角和外视角 RGB-D 输入。</p>

<h2 id="实验结果与行业影响">实验结果与行业影响</h2>

<p>w-0 在 11 个家庭任务上进行了全面评估，涵盖桌面操作、物体转移、清洁和移动操作等场景。所有方法使用单个多任务模型训练，每种方法和任务进行 10 次独立试验。<strong>经典模仿学习方法</strong>（ACT 和 Diffusion Policy）在长时距人形运动中表现困难；<strong>VLA 基线</strong>的动作接口并非为统一全身控制设计；<strong>WAM 基线</strong>要么面向手臂操作，要么依赖不兼容控制器接口的视频生成。</p>

<p>w-0 联合学习未来视觉潜在变量和 SONIC 兼容的全身动作潜在变量，生成更连贯的全身行为。<strong>Omni-View 变体</strong>（支持同视角和外视角输入）在拖地、跨位置转移等运动密集任务中优势尤为明显。该研究代表了 AI Agent 从数字世界向物理世界的延伸——Micropaper 系列此前主要关注 Web Navigation 和 Computer Use，w-0 展示了具身操作能力的完整图景。</p>

<h2 id="局限与未来观察点">局限与未来观察点</h2>

<p>w-0 在 G1 人形机器人上评估，动作接口与特定硬件紧密耦合，跨平台泛化能力尚未验证。模型包含 VLM、T5、V-JEPA 和 DiT 等多个组件，推理延迟对实时控制仍是挑战。论文未讨论真实世界操作中的安全问题，缺乏安全约束机制。未来值得观察的方向包括：架构能否推广到 Tesla Optimus、Figure 02 等平台；潜变量预测范式如何与具身大模型融合；以及如何集成安全约束和人机交互协议。</p>

<h2 id="references">References</h2>

<ul>
  <li><a href="https://arxiv.org/abs/2608.06375">w-0 论文</a></li>
  <li><a href="https://arxiv.org/abs/2410.07814">SONIC 全身控制器</a></li>
  <li><a href="https://arxiv.org/abs/2305.20021">V-JEPA 视觉嵌入预测</a></li>
  <li><a href="https://gentlefress.github.io/OMEGA-0_page/">w-HOME 数据集页面</a></li>
</ul>]]></content><author><name>unbug</name></author><category term="embodiedai" /><category term="robotics" /><category term="humanoid" /><category term="w0" /><category term="loco-manipulation" /><category term="worldmodel" /><category term="vlm" /><category term="humanoidrobot" /><summary type="html"><![CDATA[新加坡南洋理工大学、北京大学和北京智源研究院等机构合作的一篇论文w-0：潜变量预测式世界动作模型实现人形机器人并发运动操作 (w-0: A Latent Predictive World Action Model for Concurrent Humanoid Loco-Manipulation)，提出了一种将未来视觉潜在预测与全身动作生成联合建模的新范式。该论文在 11 个真实家庭任务上持续优于 9 种基线方法，并发布了目前最大规模的人形家庭操作数据集 w-HOME（40+ 小时）。]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://unbug.github.io/assets/images/w0-latent-predictive-world-action-model-framework.svg" /><media:content medium="image" url="https://unbug.github.io/assets/images/w0-latent-predictive-world-action-model-framework.svg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">AI 范式雷达：《从代码补全到自主软件工程：Agentic Coding 的范式转移》</title><link href="https://unbug.github.io/paradigm-radar-agentic-coding-paradigm-shift/" rel="alternate" type="text/html" title="AI 范式雷达：《从代码补全到自主软件工程：Agentic Coding 的范式转移》" /><published>2026-08-09T00:00:00+00:00</published><updated>2026-08-09T00:00:00+00:00</updated><id>https://unbug.github.io/paradigm-radar-agentic-coding-paradigm-shift</id><content type="html" xml:base="https://unbug.github.io/paradigm-radar-agentic-coding-paradigm-shift/"><![CDATA[<p>SWE-bench Verified 基准上，开源框架的成绩从 2023 年的不足 6% 跃升至 2025-2026 年的 50%-70%+，增幅超过 8 倍。这意味着 AI Agent 已经能够自主解决真实 GitHub Issue 中的复杂 Bug 修复任务——而这一切只用了不到三年时间。本文将带你理解 Agentic Coding 的核心原理、对比主流框架的适用场景，并给出从零搭建第一个自主编程 Agent 的实操路径。</p>

<p><img src="/assets/images/paradigm-radar-agentic-coding-paradigm-shift.svg" alt="封面图：从代码补全到自主软件工程的范式演进" /></p>

<h2 id="为什么传统-ai-编程助手不够用了">为什么传统 AI 编程助手不够用了</h2>

<p>如果你在过去两年里使用过 GitHub Copilot、Cursor 的代码补全功能，或者让 ChatGPT 帮你写一段 Python 脚本，你可能已经感受到一种微妙的天花板。这些工具确实好用——它们能在你输入几个字符后预测下一行代码，能回答”这段函数是什么意思”的问题，甚至能生成完整的单元测试。但它们有一个共同的根本局限：<strong>它们是被动响应式的</strong>。</p>

<p>具体来说，传统 AI 编程助手存在三个结构性缺陷：</p>

<p><strong>第一，缺乏任务理解能力。</strong> Code Completion 模型本质上是一个概率补全引擎——它根据你输入的上下文预测下一个 token。它不知道你在实现什么功能，不理解你的业务逻辑，更不知道你为什么要写这段代码。它的输出质量完全取决于你提供的上下文片段的质量。</p>

<p><strong>第二，执行停留在建议层面。</strong> 即使是最先进的 Code Chat 工具（如 GitHub Copilot Chat），其输出也仅限于文本层面的代码片段或解释。你需要手动复制、粘贴、修改、测试——AI 不参与任何实际的文件写入或命令执行。从”建议”到”行动”之间仍然存在一道人工鸿沟。</p>

<p><strong>第三，任务粒度被限制在单行或单函数级别。</strong> 当你需要跨多个文件修改 API 签名、同步更新导入语句和类型定义时，传统工具无能为力。它们无法理解项目级别的依赖关系，更无法保证多文件变更的一致性。</p>

<p><img src="/assets/images/agentic-coding-evolution-timeline.svg" alt="范式演进时间线图：从 Code Completion 到 Agentic Coding 的四阶段跃迁" /></p>

<p>这种局限性的本质不是模型能力的不足——2024-2025 年的代码专用模型在推理和上下文理解上已经取得了质的飞跃。问题出在<strong>系统架构</strong>：LLM 被当作一个被动响应式补全引擎来使用，而不是一个主动规划-执行-验证循环中的决策中枢。</p>

<h2 id="agentic-coding-核心原理它是怎么工作的">Agentic Coding 核心原理：它是怎么工作的</h2>

<p>Agentic Coding 不是对传统 AI 编程助手的渐进式改进，而是四个维度的根本性重构。理解这四个转变，你就能看透所有 Agentic Coding 框架的设计哲学。</p>

<p><strong>第一个转变是交互模式：从被动补全到主动规划。</strong> 传统工具等待你的输入信号——你敲下几个字符，它预测下一行；你问一个问题，它给出回答。Agentic Coding Agent 则完全不同：当你给它一个任务描述（比如”修复用户登录页面的表单验证 Bug”），它会自主分解子任务、制定执行计划、选择工具序列，然后开始行动。这种从反应式到主动式的转变是范式转移的核心驱动力。</p>

<p><strong>第二个转变是工具权限：从无输出能力到全栈操作。</strong> 传统 AI 编程助手的输出停留在文本层面——模型生成代码片段，你决定如何使用。Agentic Coding Agent 拥有文件系统写入权限和终端执行能力，可以直接将生成的代码落地为项目变更。它不仅能写代码，还能运行测试、查看错误日志、提交 Git 变更。从”建议”到”行动”的距离被压缩为零。</p>

<p><strong>第三个转变是任务粒度：从单行/单函数到多文件级端到端。</strong> 传统工具擅长处理单行补全或单函数级别的修改建议。Agentic Coding Agent 可以跨多个文件、多个模块完成功能实现或 Bug 修复，理解并维护跨文件的依赖一致性。当你需要重构一个 API 时，它会同时更新所有调用该 API 的文件中的引用、类型定义和导入语句。</p>

<p><strong>第四个转变是错误处理：从开发者手动处理到 Agent 自动自我修正。</strong> 这是最具革命性的差异。当测试失败时，传统工具只能提供模糊的建议文本；而 Agentic Coding Agent 读取错误日志、分析堆栈跟踪、定位问题代码行、提出修改方案、应用补丁并重试——形成完整的自主修复闭环。</p>

<p><img src="/assets/images/agentic-coding-before-after-flow.svg" alt="Agentic Coding 架构全景图：规划-执行-验证循环" /></p>

<p>从架构角度看，一个典型的 Agentic Coding Agent 包含三个核心组件：<strong>规划器</strong>（将高层任务分解为可执行的子步骤）、<strong>执行引擎</strong>（调用文件系统、终端、Git 等工具完成具体操作）和<strong>验证器</strong>（运行测试、检查代码质量、判断是否满足需求）。这三个组件形成一个闭环循环：规划器制定计划，执行引擎落地实施，验证器检查结果——如果未通过，错误信息反馈回规划器进行下一轮迭代。</p>

<p>这种架构设计的关键创新在于：<strong>模型不再是唯一的决策者</strong>。传统方案中，LLM 直接生成最终代码；Agentic Coding 方案中，LLM 作为”决策中枢”协调多个工具的执行，并通过验证器的反馈实现自我修正。这类似于人类工程师的工作方式：先理解需求、再设计方案、然后编码实现、最后测试验证——如果测试失败就调试修复，循环往复直到通过。</p>

<h2 id="5-分钟搭建你的第一个-agentic-coding-agent">5 分钟搭建你的第一个 Agentic Coding Agent</h2>

<p>理论讲完了，现在动手试试。你只需要一个终端和几个命令就能启动你的第一个 Agentic Coding Agent。我们以 Aider 为例——它是目前最简单的入门路径。</p>

<p><strong>第一步：安装 Aider。</strong> Aider 是一个 Python 包，通过 pip 即可安装：</p>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>pip <span class="nb">install </span>aider-chat
</code></pre></div></div>

<p><strong>第二步：配置模型后端。</strong> Aider 支持多种 LLM 提供商。以 Claude Sonnet 为例，设置环境变量后直接运行：</p>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nb">export </span><span class="nv">ANTHROPIC_API_KEY</span><span class="o">=</span>sk-ant-xxxxx
<span class="nb">cd</span> /path/to/your/project
aider <span class="nt">--model</span> claude-sonnet-4-20250514
</code></pre></div></div>

<p><strong>第三步：开始对话。</strong> Aider 启动后会进入交互式终端界面。你只需要用自然语言描述任务，Agent 就会自动执行：</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>&gt; 修复 src/auth.py 中的 token 过期处理逻辑，确保刷新令牌时不会丢失用户会话状态
</code></pre></div></div>

<p>Aider 会自动读取项目文件、理解上下文、生成修改方案并应用补丁。每次修改都会自动提交为独立的 Git commit，你可以随时通过 <code class="language-plaintext highlighter-rouge">git log</code> 查看变更历史。</p>

<p><img src="/assets/images/agentic-coding-execution-flow.svg" alt="Aider 执行路径图：从自然语言指令到 Git commit 的完整流程" /></p>

<p>如果你更习惯 Claude Code（Anthropic 官方推出的 CLI-first Agent），操作同样简洁：</p>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>npx @anthropic-ai/claude-code@latest
<span class="o">&gt;</span> 分析项目结构，找出所有未处理的 TODO 注释并逐一实现
</code></pre></div></div>

<p>Claude Code 的核心优势在于对超长上下文窗口的利用——它可以在单次会话中加载整个项目仓库的代码结构（包括数十个文件），并在执行过程中持续保持对这些文件的语义理解。这对于处理跨模块修改时维护依赖一致性至关重要。</p>

<p><strong>实操建议：</strong> 先用一个小型个人项目（1-5 万行代码）练习 Agentic Coding 的基本工作流，熟悉 Agent 的行为模式和输出风格后，再逐步应用到更复杂的项目中。</p>

<h2 id="主流框架深度对比claude-code-vs-cursor-vs-openhands-vs-aider">主流框架深度对比：Claude Code vs Cursor vs OpenHands vs Aider</h2>

<p>市面上有数十个 Agentic Coding 框架，但真正进入工程实践的主流产品只有四个。它们各自有不同的设计哲学和适用场景——选对工具比追求”最强模型”更重要。</p>

<p><strong>Claude Code（Anthropic）</strong> 采用 CLI-first 设计理念，所有交互通过命令行完成。它的核心优势是对 Claude 模型超长上下文窗口的极致利用，可以在单次会话中加载整个项目仓库的代码结构。在 SWE-bench Verified 基准上成绩约为 50%-60%+，是目前商业产品中表现最好的之一。它适合熟悉终端操作的开发者进行端到端的任务完成，特别适合需要快速原型开发和实验性项目的场景。主要局限是闭源产品、依赖 Anthropic API、无法本地部署。</p>

<p><strong>Cursor Composer（Cursor）</strong> 采用 IDE-native 设计理念，将 Agent 能力深度集成到基于 VS Code fork 的编辑器环境中。它的最大技术特点是 multi-file editing 能力——可以同时理解并修改项目中的多个文件，确保跨文件的 API 一致性、导入关系和类型定义同步更新。在 SWE-bench Verified 上成绩约为 30%-40%。它适合习惯 VS Code 工作流的开发者，特别适合日常开发中的功能迭代和 Bug 修复。每次 Agent 的修改都以 diff 形式实时展示，你可以逐行审查并随时介入——这种”透明执行”模式建立了你与 Agent 之间的信任基础。主要局限是闭源、订阅费用较高。</p>

<p><strong>OpenHands（原 OpenDevin）</strong> 是最活跃的开源 Agentic Coding 项目，GitHub Star 超过 50,000，社区贡献者超过 200 人。它支持多种模型后端（Claude、GPT-4o、本地部署模型），提供 Docker 沙箱执行环境，并持续集成 SWE-bench 评测。在 SWE-bench Verified 上成绩约为 40%-50%+，是开源框架中的佼佼者。它的 Web UI + API 双模式交互设计使得不同技术背景的用户都可以使用。主要局限是配置相对复杂、学习曲线较陡。</p>

<p><strong>Aider</strong> 采用极简架构设计理念——一个命令行工具加上 LLM API 调用即可运行。它通过 Git diff 机制跟踪每次修改，将变更内容作为上下文传递给 LLM，然后应用模型建议的编辑。在 SWE-bench Verified 上成绩约为 25%-35%（使用 Claude Sonnet 后端时）。它的核心优势是简洁性、可组合性和快速迭代能力——没有复杂的配置和依赖，安装即用。主要局限是在大型项目中受上下文窗口限制，效率提升会显著降低。</p>

<p><img src="/assets/images/agentic-coding-frameworks-comparison.svg" alt="框架对比图：四大主流 Agentic Coding 框架的核心差异" /></p>

<p>选择建议很直接：<strong>如果你追求极致性能和端到端任务完成能力</strong>，Claude Code 是目前的首选；<strong>如果你习惯图形化 IDE 工作流且重视变更可视化</strong>，Cursor Composer 提供了最佳体验；<strong>如果你想完全掌控技术栈、避免厂商锁定</strong>，OpenHands 是最灵活的开源方案；<strong>如果你需要快速原型验证或轻量级集成</strong>，Aider 的极简架构最合适。</p>

<h2 id="进阶技巧与常见坑">进阶技巧与常见坑</h2>

<p>当你开始在实际项目中使用 Agentic Coding 时，会遇到一些传统编程中不会遇到的问题。掌握以下策略可以显著提升 Agent 的工作效率和输出质量。</p>

<p><strong>上下文窗口管理：分层加载 vs RAG。</strong> 对于超过 10 万行代码的大型项目，即使是最先进的模型也无法在单次会话中加载全部代码。Claude Code 采用的分层上下文管理策略值得借鉴——将项目结构、技术栈等全局信息作为长期上下文保留，将当前任务相关的文件内容作为短期上下文动态加载和卸载。你也可以采用 RAG（检索增强生成）策略来定位相关代码片段，但需要注意：检索精度直接影响修复成功率，错误的文件检索会导致 Agent 在完全不相关的代码上浪费时间。</p>

<p><strong>迭代次数控制。</strong> 实验表明，对于中等复杂度的 Issue，Agent 通常需要在 3-8 次迭代后才能通过所有测试。如果超过预设迭代上限仍未解决问题，说明当前策略可能陷入了局部最优。建议设置最大迭代次数（如 15 次），并在每次迭代后评估进展——如果连续 3 次迭代的修改方向相似但测试结果没有改善，应该暂停并人工介入分析根本原因。</p>

<p><strong>多文件修改的一致性维护。</strong> 当 Agent 在一个任务中进行了多次代码修改后，定位问题根源变得极其困难。建议在每次大规模修改前让 Agent 生成变更摘要（summary），记录每个 commit 的意图和影响范围。这样即使出现问题，你也可以快速回滚到特定的历史版本。</p>

<p>以下是三个最常见的错误及解决方案：</p>

<p><strong>错误一：幻觉导致的错误修复。</strong> Agent 可能生成”看似正确但实际引入新 Bug”的代码——它可能正确理解了 Issue 描述的字面含义，但未能准确映射到正确的代码位置。解决方案是始终运行完整的测试套件来验证修改结果，不要仅依赖 Agent 的自检报告。</p>

<p><strong>错误二：回归错误风险。</strong> Agent 在修复一个 Bug 的同时引入新 Bug（回归）是最常见的失败模式之一。SWE-bench 的评估机制通过运行完整测试套件来检测这类问题——你在实际项目中也应该这样做。如果项目测试覆盖不足，建议先让 Agent 补充核心模块的单元测试，再进行功能修改。</p>

<p><strong>错误三：无限循环问题。</strong> 当 Agent 陷入重复的错误修复循环时（例如反复尝试同一种失败的修复策略），需要设置最大迭代次数和多样性约束。Claude Code 等框架内置了迭代上限机制——如果你的工具没有这个功能，建议手动监控并适时介入。</p>

<h2 id="反方观点agentic-coding-的可靠性与安全边界">反方观点：Agentic Coding 的可靠性与安全边界</h2>

<p>任何技术讨论如果只谈优势不谈风险都是不完整的。Agentic Coding 虽然前景广阔，但当前阶段仍存在若干结构性风险需要正视。</p>

<p><strong>幻觉与代码质量退化。</strong> Agentic Coding Agent 的一个系统性问题是”能力-置信度错配”——Agent 往往对自己的输出表现出过高的确定性，即使其生成的代码存在微妙但严重的缺陷。这种现象在以下场景中尤为突出：表面正确的错误代码（语法正确、通过部分测试但逻辑有缺陷）和边界条件遗漏（缺乏对防御性编程的系统性理解）。</p>

<p><strong>回归错误的系统性风险。</strong> Agent 在修改代码时可能无意中破坏现有功能。虽然单元测试可以检测部分回归错误，但测试覆盖不足是行业普遍问题——许多项目的核心模块测试覆盖率低于 50%。这意味着 Agent 的修改可能在未受保护的代码路径上引入严重 Bug。</p>

<p><strong>安全与权限滥用风险。</strong> Agentic Coding Agent 通常拥有较高的系统权限（文件系统读写、终端执行），如果模型被恶意输入诱导，可能被利用来执行危险操作。此外，Agent 在自动安装依赖时可能无意中引入了存在已知 CVE 的旧版本包；当需要配置数据库连接或 API 密钥时，可能将敏感信息直接写入代码文件而非使用环境变量。</p>

<p><strong>技能退化风险。</strong> 如果初级开发者过度依赖 Agent 完成代码编写和调试工作，可能无法充分发展核心的编程能力——如算法设计、系统架构理解、性能优化。这种”技能空心化”在短期内提高了生产力，但长期来看可能削弱团队的技术深度。</p>

<p>基于以上风险，以下场景<strong>不建议完全依赖 Agentic Coding</strong>：</p>

<ul>
  <li><strong>安全关键系统</strong>（金融交易、医疗设备控制、航空航天）——需要形式化验证和人工审查的双重保障</li>
  <li><strong>核心架构设计决策</strong>——涉及技术选型、模块划分、接口定义等高层决策，Agent 缺乏足够的领域知识和业务上下文</li>
  <li><strong>遗留代码库重构</strong>——当项目文档缺失、测试覆盖率极低且代码结构混乱时，Agent 的理解能力受到严重限制</li>
</ul>

<h2 id="未来-1-2-个周期的雷达观察点">未来 1-2 个周期的雷达观察点</h2>

<p>Agentic Coding 正处于快速演进期。作为技术观察者，你需要关注以下三个关键趋势，它们将决定这个范式转移的最终形态。</p>

<p><strong>多 Agent 协作架构的成熟度。</strong> 当前大多数框架采用单 Agent 架构——所有任务由同一个模型实例处理。但单 Agent 面临两个根本限制：上下文窗口瓶颈（一个 Agent 难以同时保持项目全局视野和深入某个模块的细节理解）和角色混淆（规划、编码、测试等不同任务需要不同的思维模式，单一模型在同一上下文中切换可能导致质量下降）。多 Agent 协作通过专业化分工可能突破这些限制——例如”规划 Agent”负责任务分解、”编码 Agent”负责具体实现、”测试 Agent”负责验证。</p>

<p><strong>验证指标：</strong> SWE-bench Verified 上 Pass@1 超过 50%；多 Agent 协作相比单 Agent 在复杂任务上的成功率提升超过 30%；至少一个主流 IDE（VS Code、JetBrains）原生支持多 Agent 编程工作流。</p>

<p><strong>形式化验证与 Agentic Coding 的融合。</strong> 当前 Agentic Coding 的质量保障主要依赖单元测试，但测试只能证明”存在 bug”而不能证明”不存在 bug”——这是 Dijkstra 的名言，也是当前范式的根本局限。形式化验证（如模型检测、定理证明、属性测试）提供了更强的正确性保证。未来可能出现这样的工作流：Agent 从自然语言需求自动推导可验证的规格，生成的代码通过形式化工具验证其正确性，违反规范的修改被自动拒绝而非依赖测试发现。</p>

<p><strong>验证指标：</strong> Agent 能够自动为生成的代码生成并验证至少一种形式的规范（如类型契约、前置/后置条件）；在安全关键领域的实际部署案例出现；形式化验证的开销控制在总开发时间的 20% 以内。</p>

<p><strong>模型商品化与架构护城河。</strong> 随着 LLM 提供商之间的竞争加剧，模型能力的差异正在缩小——Claude Sonnet、GPT-4o、Gemini Pro 在代码任务上的表现差距越来越小。与此同时，Agent 框架层面的创新（更好的规划策略、更高效的上下文管理、更强的自我修正循环）成为差异化竞争的核心。这可能导致”模型即商品化、架构即护城河”的市场格局——开源框架可能因此获得更大的竞争优势，因为架构创新的门槛低于基础模型研发。</p>

<p><strong>验证指标：</strong> 同一 Agent 框架在不同 LLM 后端上的性能差异缩小到 5% 以内；至少一个头部 LLM 提供商宣布开放其代码模型的 fine-tuning API；开源 Agentic Coding 框架的市场份额超过商业产品的总和。</p>

<h2 id="总结与行动清单">总结与行动清单</h2>

<p>Agentic Coding 代表了 AI 编程从”被动响应式补全引擎”到”主动规划-执行-验证循环中的决策中枢”的范式转移。SWE-bench Verified 成绩从不足 6% 到 50%-70%+ 的增长不是偶然——它是模型能力、工具链标准化和开源生态三者协同进化的必然结果。但这一范式仍处于早期阶段，可靠性风险和安全边界问题需要认真对待。</p>

<p><strong>你现在可以做的：</strong></p>

<ol>
  <li>选择一个小型个人项目（1-5 万行代码），用 Aider 或 Claude Code 完成一个完整的 Bug 修复任务，体验 Agentic Coding 的基本工作流</li>
  <li>在现有项目中引入单元测试覆盖——这是 Agent 安全修改代码的前提条件，没有测试的 Agentic Coding 如同蒙眼走钢丝</li>
  <li>对比至少两个框架（如 Cursor Composer 和 OpenHands）在同一任务上的表现差异，建立自己的选型判断标准</li>
  <li>关注 SWE-bench Verified 基准的最新成绩变化——这是衡量 Agentic Coding 能力演进最客观的指标</li>
</ol>

<h2 id="references">References</h2>

<ul>
  <li><a href="https://arxiv.org/abs/2310.06770">SWE-bench Benchmark: Can Language Models Resolve Real-World GitHub Issues?</a></li>
  <li><a href="https://www.cognition.ai/blog/introducing-devin">Introducing Devin: The First AI Software Engineer</a></li>
  <li><a href="https://github.com/All-Hands-AI/OpenHands">OpenHands: Open Platform for AI Software Agents</a></li>
  <li><a href="https://aider.chat/">Aider: Pair Programming in Your Terminal</a></li>
  <li><a href="https://www.cursor.com/">Cursor: The AI-Native IDE</a></li>
  <li><a href="https://www.anthropic.com/research/building-effective-agents">Anthropic Research: Building Effective Agents</a></li>
  <li><a href="https://github.blog/">GitHub Copilot Workspace Enterprise Data</a></li>
  <li><a href="https://arxiv.org/abs/2607.29658">Hierarchical Trajectory Abstraction for Coding Agents (STAIR)</a></li>
  <li><a href="https://www.anthropic.com/claude-code">Introducing Claude Code by Anthropic</a></li>
</ul>]]></content><author><name>unbug</name></author><category term="AI" /><category term="ParadigmRadar" /><category term="agentic-coding" /><category term="software-engineering" /><category term="llm" /><category term="code-generation" /><category term="agent-frameworks" /><summary type="html"><![CDATA[SWE-bench Verified 基准上，开源框架的成绩从 2023 年的不足 6% 跃升至 2025-2026 年的 50%-70%+，增幅超过 8 倍。这意味着 AI Agent 已经能够自主解决真实 GitHub Issue 中的复杂 Bug 修复任务——而这一切只用了不到三年时间。本文将带你理解 Agentic Coding 的核心原理、对比主流框架的适用场景，并给出从零搭建第一个自主编程 Agent 的实操路径。]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://unbug.github.io/assets/images/paradigm-radar-agentic-coding-paradigm-shift.svg" /><media:content medium="image" url="https://unbug.github.io/assets/images/paradigm-radar-agentic-coding-paradigm-shift.svg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">One Minute Read Paper Agentic Web Navigation Paradigm Shift</title><link href="https://unbug.github.io/one-minute-read-paper-agentic-web-navigation-paradigm-shift/" rel="alternate" type="text/html" title="One Minute Read Paper Agentic Web Navigation Paradigm Shift" /><published>2026-08-08T00:00:00+00:00</published><updated>2026-08-08T00:00:00+00:00</updated><id>https://unbug.github.io/one-minute-read-paper-agentic-web-navigation-paradigm-shift</id><content type="html" xml:base="https://unbug.github.io/one-minute-read-paper-agentic-web-navigation-paradigm-shift/"><![CDATA[<h1 id="agentic-web-navigation-from-passive-retrieval-to-active-problem-solving-paradigm-shift">Agentic Web Navigation: From Passive Retrieval to Active Problem-Solving Paradigm Shift</h1>

<p><strong>Hook</strong>: Imagine an AI that doesn’t just read the web — it <em>navigates</em> it. Not by fetching indexed text snippets, but by clicking buttons, filling forms, scrolling pages, and recovering from errors — exactly like a human would. This is not science fiction. It’s happening right now, and it represents one of the most fundamental shifts in how AI interacts with the internet.</p>

<hr />

<h2 id="the-core-question-what-does-understanding-the-web-mean">The Core Question: What Does “Understanding the Web” Mean?</h2>

<p>For years, AI assistants have been limited to <em>reading</em> — pulling information from search engines, RAG databases, or pre-indexed content. But the web is not a static document repository. It’s an interactive environment where information is embedded in forms, buttons, dynamic layouts, and multi-step workflows. The question is: can AI agents truly “understand” the web if they can only read it?</p>

<p>The answer, increasingly, is yes — but only when we shift from passive retrieval to active navigation.</p>

<hr />

<h2 id="paradigm-shift-passive-retrieval-vs-active-navigation">Paradigm Shift: Passive Retrieval vs Active Navigation</h2>

<p>The difference between traditional search/RAG and Agentic Web Navigation is not incremental — it’s a fundamental change in interaction mode:</p>

<p><strong>Traditional Search/RAG</strong>: The AI receives a query, retrieves relevant text snippets from indexed content or vector databases, and generates an answer. It cannot interact with web pages beyond reading static text. If the information isn’t indexed, it doesn’t exist for the AI.</p>

<p><strong>Agentic Web Navigation</strong>: The AI receives a task goal (e.g., “find the cheapest flight from Shanghai to Tokyo next week”), then actively browses the web — visiting multiple sites, clicking through search results, filling comparison forms, handling popups, and aggregating information across pages. It operates in real-time, accessing current content that may never be indexed.</p>

<p>This shift transforms AI from a <em>knowledge retriever</em> into a <em>problem solver</em>.</p>

<hr />

<h2 id="technical-architecture-how-do-web-agents-work">Technical Architecture: How Do Web Agents Work?</h2>

<p>At the core of Agentic Web Navigation are two observation modalities:</p>

<p><strong>DOM/Accessibility Tree-based</strong>: The agent receives structured HTML or accessibility tree data, identifying interactive elements by their IDs, attributes, and hierarchy. This approach offers precise element targeting but may expose sensitive data and requires DOM parsing infrastructure.</p>

<p><strong>Screenshot-based (Visual)</strong>: The agent receives a screenshot of the current page and uses Vision-Language Models (VLMs) to identify clickable elements and predict coordinates. This approach is more robust to layout variations but consumes significantly more tokens per observation.</p>

<p>The emerging best practice is <em>hybrid</em>: use DOM for precise element identification, then verify visually with screenshots. BrowserGym, the unified Web Agent framework by ServiceNow, supports both modes natively.</p>

<hr />

<h2 id="the-navigation-loop-reason--act--observe--reflect">The Navigation Loop: Reason → Act → Observe → Reflect</h2>

<p>A typical agentic web navigation task follows a ReAct-style loop:</p>

<ol>
  <li><strong>Reason</strong>: Analyze the current page state and plan the next action</li>
  <li><strong>Act</strong>: Execute an operation (click, type, navigate, scroll)</li>
  <li><strong>Observe</strong>: Receive feedback — new page content, error messages, or confirmation</li>
  <li><strong>Reflect</strong>: Evaluate whether progress was made; if not, try alternative strategies</li>
</ol>

<p>This loop repeats until the task goal is achieved or a maximum step budget is exhausted. The key challenge is <em>context management</em> — as each navigation step generates hundreds to thousands of tokens of observation data, the context window fills rapidly during multi-step tasks like online shopping (10+ pages: search → list → details × 5 → cart → checkout).</p>

<hr />

<h2 id="key-benchmarks-and-their-results">Key Benchmarks and Their Results</h2>

<p>The field has matured through several standardized benchmarks:</p>

<p><strong>MiniWoB++</strong>: 125 micro-tasks covering basic operations. The “Hello World” of Web Agent research — fast iteration, precise reward signals. Current SOTA agents achieve ~60-70% success rate on individual tasks.</p>

<p><strong>WebArena</strong>: 812 realistic tasks across 6 independently deployed websites (e-commerce, Reddit, GitLab, maps, Wikipedia, admin CMS). GPT-4 achieves only ~16% task success — far below human baseline (~80%+). Primary failure modes: navigation errors, form-filling mistakes, multi-step planning breakdowns.</p>

<p><strong>Mind2Web</strong>: 2,000+ user tasks across 500+ websites with 16,000+ page screenshots. GPT-4 reaches ~30% task success. The key challenge is cross-domain generalization — performing well on unseen websites.</p>

<p><strong>WebVoyager</strong>: 643 tasks across 15 real (non-sandboxed) websites. Introduces a “self-exploration” mechanism where agents learn web structures without explicit task guidance, achieving ~25% success on WebArena-like benchmarks — an improvement over baseline GPT-4 through experience accumulation and retrieval-augmented navigation.</p>

<p><strong>OSWorld</strong>: Extends the paradigm beyond browsers to full operating system tasks (file management, software installation, system configuration) in Docker-based Ubuntu environments. Current SOTA achieves ~15% task success, highlighting the difficulty of long-horizon planning with error recovery.</p>

<hr />

<h2 id="productization-from-research-benchmarks-to-production-apis">Productization: From Research Benchmarks to Production APIs</h2>

<p>The most significant recent development is the productization of Computer Use capabilities by major providers:</p>

<p><strong>OpenAI GPT-4o Computer Use</strong>: Native screenshot input with precise mouse coordinate and keyboard output through a browser sandbox environment. End-to-end VLM architecture — no DOM parsing required, direct visual understanding for operations. This represents the first production-grade API for agentic web navigation.</p>

<p><strong>Google Gemini Computer Use</strong>: Multi-modal input (screenshots + text instructions) with cross-platform support across Web, Android, and Desktop environments. Deep integration with Google Workspace adds practical utility for enterprise workflows.</p>

<p>Both products signal a critical inflection point: Agentic Web Navigation is transitioning from academic benchmarks to commercially available capabilities. The question is no longer <em>whether</em> this technology works, but <em>how well</em> it scales in production environments.</p>

<hr />

<h2 id="risks-and-challenges">Risks and Challenges</h2>

<p><strong>Safety</strong>: Agents executing unpredictable operations on real websites pose genuine risks — accidental purchases, unauthorized data access, or actions beyond the intended task scope. WebArena experiments showed agents frequently performing out-of-scope operations (posting on Reddit, modifying GitLab code).</p>

<p><strong>Reliability</strong>: Websites constantly change their DOM structure, UI layouts, and anti-bot mechanisms. An agent trained on one version of a website may fail completely when that site updates. Dynamic JavaScript rendering and lazy loading add further complexity — agents must know <em>when</em> to wait for content before acting.</p>

<p><strong>Cost</strong>: Each navigation step requires LLM inference. A typical DOM observation generates 1,000-10,000 tokens; screenshots add another 2,000-5,000 tokens per page. Multi-step tasks (10+ steps) can consume 50,000-200,000 total tokens. Latency compounds similarly — each step adds 1-5 seconds of LLM inference plus network loading time.</p>

<p><strong>Ethics</strong>: The line between legitimate user interaction and automated scraping becomes blurred when agents browse like humans. Should agents be bound by robots.txt? Do websites have an obligation to detect agent access? Who is responsible for agent actions — the developer, deployer, or model provider?</p>

<hr />

<h2 id="future-observation-points">Future Observation Points</h2>

<ol>
  <li>
    <p><strong>VLM Computer Use Product Maturity</strong>: If OpenAI and Google products achieve &gt;50% task success with &lt;10s per step by Q3-Q4 2026, this marks the transition from research to mainstream application.</p>
  </li>
  <li>
    <p><strong>BrowserGym Ecosystem Standardization</strong>: When BrowserGym becomes the default framework for Web Agent research — with cross-benchmark comparison becoming standard practice — the field will have achieved evaluation maturity.</p>
  </li>
  <li>
    <p><strong>Generalization Breakthroughs</strong>: Current SOTA agents achieve ~20-30% success on complex benchmarks. A jump to &gt;50% would indicate that VLM visual understanding and LLM planning capabilities are converging toward human-level web navigation.</p>
  </li>
  <li>
    <p><strong>Safety Frameworks</strong>: Mature Web Agent safety frameworks — with operation scope limiting, anomaly detection, and human review interfaces — will be the prerequisite for enterprise adoption.</p>
  </li>
  <li>
    <p><strong>Cost Optimization via Local Deployment</strong>: Open-source models like Qwen-VL-7B and UI-TARS running locally could dramatically reduce API costs and latency, enabling deployment in resource-constrained scenarios.</p>
  </li>
</ol>

<hr />

<h2 id="action-items">Action Items</h2>

<p>For teams building AI-powered web interaction:</p>
<ul>
  <li>Evaluate BrowserGym for standardized agent development and benchmarking</li>
  <li>Implement hybrid DOM + visual observation pipelines for robustness</li>
  <li>Design safety guardrails before deploying agents on production websites</li>
  <li>Monitor VLM Computer Use API pricing trends — local deployment may become cost-effective sooner than expected</li>
</ul>

<p>For researchers:</p>
<ul>
  <li>Focus on cross-domain generalization — the gap between benchmark performance and real-world reliability remains the largest open challenge</li>
  <li>Investigate context compression techniques for long-horizon web tasks</li>
  <li>Develop evaluation metrics beyond binary success/failure (step efficiency, error recovery rate, human-parity gap)</li>
</ul>

<hr />

<p><strong>References</strong>:</p>
<ul>
  <li>WebArena: arXiv:2307.13854 — A Realistic Web Environment for Building Autonomous Agents</li>
  <li>Mind2Web: arXiv:2306.13847 — Towards a Generalist Agent for the Web</li>
  <li>WebVoyager: arXiv:2401.13910 — Building an LLM Agent for Interactive Web Navigation</li>
  <li>OSWorld: arXiv:2403.00563 — Benchmarking Multimodal Agents for Realistic Operating System Tasks</li>
  <li>BrowserGym/AgentLab: arXiv:2412.05467 — A Unified Framework for Web Agent Research</li>
  <li>MiniWoB++: arXiv:1909.03047 — Micro-Task Web Benchmark</li>
</ul>

<hr />

<p><em>Agentic Web Navigation represents a fundamental shift from AI as information retriever to AI as active problem solver. The technology is transitioning rapidly from research benchmarks to production APIs, but safety, reliability, and cost challenges remain significant barriers to widespread adoption.</em></p>]]></content><author><name>unbug</name></author><summary type="html"><![CDATA[Agentic Web Navigation: From Passive Retrieval to Active Problem-Solving Paradigm Shift]]></summary></entry></feed>