文章背景与核心概要
当大语言模型(LLM)作为代码智能体(Coding Agents)执行 Bash 命令时,其输出通常在实际执行之前经过序列化、包装和解析等层层处理。本文指出,传统的匹配执行分数(matched execution scores)可能具有极大的误导性——它们往往通过成功的模型生成补偿,掩盖了底层执行传输(execution transport)的失败。
为了研究这一边界,作者推出了 QuoteBench,这是一个基于精确终态验证(exact final-state validation)构建的评估基准。研究结果表明,前沿模型的原始生成能力已趋于饱和,这意味着现代模型之间的真正性能差距,往往不在于纯粹的命令生成能力,而在于它们如何有效地适应底层系统边界。
QuoteBench: How Matched Scores Can Hide Command-Path Failures
Authors: Shangao Li, Yao Zhang, Volker Tresp, Yuanyuan Yang
Submitted: 13 August 2026
arXiv: [2608.13547 [cs.AI]]
DOI: 10.48550/arXiv.2608.13547
Project Page: quotebench.lsamc.website
Executive Summary
When Large Language Models (LLMs) act as coding agents and issue Bash commands, their outputs typically pass through serialization, wrapping, and parsing layers before execution. This paper demonstrates that traditional matched execution scores can be dangerously misleading—hiding underlying execution transport failures by masking them with successful model-generation compensation.
To study this boundary, the authors introduce QuoteBench, an evaluation benchmark built on exact final-state validation. Their findings reveal that raw model generation is nearly saturated at the frontier, meaning that true performance differentiation between modern models often lies in how effectively they adapt to underlying system boundaries rather than pure command-generation capability alone.
大语言模型(LLM)作为代码智能体发出 Bash 命令时,其输出在执行前通常会经过序列化、包装和重新解析层。本文证明,传统的匹配执行分数可能会产生危险的误导——它们用成功的模型生成补偿来掩盖底层执行传输的失败。
为了研究这一边界,作者推出了 QuoteBench,这是一个建立在精确终态验证基础上的评估基准。他们的研究结果表明,前沿模型的原始生成能力已近饱和,这意味着现代模型之间的真正性能差异往往在于它们如何有效地适应底层系统边界,而不仅仅是纯粹的命令生成能力。
Abstract
LLM coding agents issue Bash commands through interfaces that may serialize, wrap, and reparse model output. Matched execution scores alone cannot distinguish command-generation errors from failures introduced after generation.
QuoteBench measures this boundary with exact final-state validation on 56 one-shot tasks from 14 incident-derived families, crossing the generation contract with the execution transport around one deliberately unescaped added parser. Escaping at the interpolation point reproduces each replayed reply's raw-path outcome, so any recovery under a disclosed boundary must come from the model changing its generation.
Across eight same-window configurations, replaying the same reply through the added parser lowers success by 55.4 to 73.2 percentage points; disclosure recovers 30.4 to 60.7 points for six configurations, and zero or slightly negative for the other two. Raw generation is nearly saturated at the frontier; boundary adaptation is what still separates models. GPT-5.6-sol's matched gap of -3.6 points hides -64.3 points of damage and +60.7 points of compensation. The deployment configuration reorders models: one reversal among 26 comparable pairs is unambiguous and four more sit on single-task margins.
Evaluations of command-issuing agents should report the model configuration, generation contract, execution path, operating point, and final-state validator rather than treat a matched score as an intrinsic model property.
LLM 代码智能体通过可能会对模型输出进行序列化、包装和重新解析的接口来下发 Bash 命令。仅凭匹配的执行分数无法区分命令生成错误与生成后引入的失败。
QuoteBench 通过对来自 14 个事故衍生系列的 56 个单次任务进行精确的终态验证来衡量这一边界,在围绕一个刻意未转义的附加解析器的位置,交织了生成契约与执行传输。在插值点处进行转义可以复现每个回放回复的原始路径结果,因此在公开边界下的任何恢复都必须来自于模型对其生成的改变。
在八种同窗口配置中,通过附加解析器回放相同的回复会使成功率下降 55.4 到 73.2 个百分点;在其中六种配置中,公开边界可恢复 30.4 到 60.7 个百分点,而另外两种配置则为零或略为负数。前沿模型的原始生成能力已近饱和;边界适应能力才是区分模型的关键。GPT-5.6-sol -3.6 点的匹配差距隐藏了 -64.3 点的破坏以及 +60.7 点的补偿。部署配置重新对模型进行了排序:在 26 个可比配对中有一个明确的反转,另外四个处于单任务边缘。
对下发命令的智能体的评估应报告模型配置、生成契约、执行路径、操作点和终态验证器,而不是将匹配分数视为模型的内在属性。
Key Takeaways & Recommendations
- Flawed Metric Interpretation: Matched scores should not be treated as intrinsic model properties. They frequently obscure compounding factors between command generation and execution transports.
- The Hidden Impact: For advanced models like
GPT-5.6-sol, a seemingly negligible matched gap of -3.6 points actually masks -64.3 points of damage offset by +60.7 points of compensation. - Best Practices for Evaluation: Evaluations of command-issuing LLM agents must explicitly report:
- Model configuration
- Generation contract
- Execution path
- Operating point
-
Final-state validator
-
有缺陷的指标解释: 不应将匹配分数视为模型的内在属性。它们经常掩盖命令生成与执行传输之间的复合因素。
- 隐藏的影响: 对于像
GPT-5.6-sol这样先进的模型,看似微不足道的 -3.6 点匹配差距实际上掩盖了由 +60.7 点补偿抵消的 -64.3 点破坏。 - 评估的最佳实践: 对下发命令的 LLM 智能体的评估必须明确报告:
- 模型配置
- 生成契约
- 执行路径
- 操作点
- 终态验证器