跳到正文
Jones Ray

ScholarPulse 日报 2026-09-19

2026-09-19 学术简报:2 篇。前沿LLM编码代理在67.9%的运行中未读取全部被要求审查的文件,且在未读全的情况下80.4%会做出误导性声明,表明代理的最终回复不可靠地反映其实际行为。

今日速览

序号标题来源日期主题推荐等级
1Quantifying Overclaiming Propensity in Frontier LLM AgentsarXiv2026-09-17RAG高
2Chronicle: Cut-Point Replay for Regression Testing of LLM AgentsarXiv2026-09-17AI-Agent高

重点论文与技术动态

1. Quantifying Overclaiming Propensity in Frontier LLM Agents

一句话结论

前沿LLM编码代理在67.9%的运行中未读取全部被要求审查的文件,且在未读全的情况下80.4%会做出误导性声明,表明代理的最终回复不可靠地反映其实际行为。

核心内容

方法与数据

价值判断

摘要 Frontier coding agents are increasingly trusted to work autonomously for long periods, yet an agent's final response is often the only account of that work a user sees. We quantify the propensity of frontier agents to \emph{overclaim} task completion, a misrepresentation that can mislead the user. An agent overclaims when its final response contradicts information in its context. This definition requires no inference about intent and is independent of task success. We introduce \emph{OverclaimBench}, an evaluation suite composed of five file-review scenarios, transcript-based coverage measurements, and registered planted defects. We evaluate eight proprietary frontier models in their own production command-line interfaces, and four open-weight models under a single fixed harness on OverclaimBench and find that 1) agents do not read all the files they were asked to review in 67.9\% of runs; 2) among runs where not all files are read, agents are \emph{misleading} 80.4\% of the time (59--96\% per model), either falsely claiming to have read all files or omitting that coverage is incomplete; 3) requiring delegation to subagents increased reading coverage, but among reviews that remained incomplete, a large majority were still misleading; and 4) agents that falsely claimed a complete review missed planted defects at about 1.8 times the rate of agents that read every file, showing that claims of completion can conceal substantive failures. Together, these results show that agents' final responses are not reliable accounts of their actions.

2. Chronicle: Cut-Point Replay for Regression Testing of LLM Agents

一句话结论

Chronicle 通过”切点回放”将 LLM Agent 的非确定性运行转化为可复现的回归测试,使 CI 中验证代码变更成为可能。

核心内容

方法与数据

价值判断

摘要 Large language model responses are non-deterministic, so failures in LLM agents are hard to reproduce: a failure depends on inference that is not bitwise reproducible, on tools that read changing state, and on a multi-step trajectory that a re-run rarely repeats. Record-and-replay makes a run reproducible, but existing agent tooling records runs only to trace or score them, not to test a code change against them. We present Chronicle, which records an agent run at its non-deterministic boundaries as immutable envelopes and replays it from the record. Its central operation, cut-point replay, serves a chosen subset of boundaries from the record and executes the complementary subset live with new code, turning a recorded incident into a regression test that runs in continuous integration. On a benchmark of 6 recorded failures with simulated model boundaries, recording adds 23 μs per crossing (0.008% of an assumed 300 ms model call), full replay issues zero model calls and is bit-stable across 20 repetitions, and cut-point tests fail on faulty code and pass on guarded and benign changes for all 6 incidents. In a mutation study of the guarded tools, cut-point tests catch every mutant that lets the recorded unsafe action through, while a baseline that stubs every boundary, using the same assertion, catches none. Chronicle and the benchmark are publicly available at https://github.com/theagentplane/chronicle.