跳到正文
Jones Ray

ScholarPulse 日报 2026-07-27

2026-07-27 学术简报:2 篇。评估LLM代理的程序化技能时,应分解净效果(收益与回归)而非仅看平均改进。

今日速览

序号标题来源日期主题推荐等级
1The Regression Tax: Decomposing Why Skills Help and Hurt LLM AgentsarXiv2026-07-24RAG高
2Where FactsGo Missing: A LayerwiseTaxonomy and Per-Layer Attribution of Information Omissionin Air-Gapped LLM Agent PipelinesarXiv2026-07-24AI-Agent高

重点论文与技术动态

1. The Regression Tax: Decomposing Why Skills Help and Hurt LLM Agents

一句话结论

评估LLM代理的程序化技能时,应分解净效果(收益与回归)而非仅看平均改进。

一段话:本研究通过近6000次实验(覆盖两个办公室自动化基准和三个模型测试堆栈)对比有无技能的代理,发现技能添加常引发回归(任务从成功变失败)和残留失败(始终失败)。最佳技能表现主要源于减少回归而非增加收益,根源包括技能描述渗透(技能存在即改变行为)、接地位移(覆盖输入解释)和验证位移(抑制输出检查)。分析显示现有技能过度强调程序指导,而忽视接地与验证(主要错误来源),改进后者可恢复多数问题,可靠性更依赖于接地与验证而非技能选择。

核心内容

方法与数据

价值判断

摘要 Adding procedural skills to an LLM agent is typically evaluated by average improvement in task success. However, this metric hides an important cost: skills can also make agents worse. We measure both sides by comparing agents with and without skills across nearly 6,000 runs spanning two office automation benchmarks and three model harness stacks. This allows us to distinguish two outcomes. A regression is a task solved without skills but failed after skills are added. A residual failure is a task that fails both with and without skills. We find that regressions are substantial enough that the best performing skills outperform others primarily by regressing less, not by gaining more. We identify three causes of regression: (i) skill description osmosis, a skill changes an agent's behavior simply by being present in context, even when it is never invoked; (ii) grounding displacement, a skill's prescribed procedure overrides how the agent interprets its inputs; and (iii) verification displacement, where the procedure suppresses checks the agent would otherwise perform on its outputs. Analysing persistent failures reveals the same underlying pattern. Existing skills overemphasize procedural guidance the stage least often responsible for failure while under supporting grounding and verification, the dominant sources of remaining errors. After correcting evaluation artifacts and studying traces, we find many regressions and persistent failures recoverable through better grounding and verification. Procedural skills should be evaluated by decomposing their net effect into gains and regressions, not by aggregate improvement alone. We identify three regression modes skills should avoid, and find that reliability depends more on grounding and verification than on procedural skill choice.

2. Where FactsGo Missing: A LayerwiseTaxonomy and Per-Layer Attribution of Information Omissionin Air-Gapped LLM Agent Pipelines

一句话结论

信息遗漏在air-gapped LLM代理管道中是主要可靠性故障,68%源于确定性中间件层(L0-L3)。

核心内容

方法与数据

价值判断

摘要 Air-gapped and on-premises deployments in regulated settings (clinical FHIR services, legal review, sovereign infrastructure) cannot call frontier APIs; they run quantized 4-8B models via llama.cpp or vLLM behind tool servers. The dominant reliability failure is omission: the silent absence of a decision-critical fact, such as an agent reading 20 of 400 records and reporting "no anomalies." We argue omission is a pipeline phenomenon, not a model phenomenon, and make four contributions. First, a nine-layer taxonomy (L0-L8) locating every omission mechanism from ingestion through the agent loop. Second, an attribution methodology separating deterministic layers (L0-L3) from behavioral layers (L4-L8) via controlled ablation and logit decomposition, quantifying each with an omission waterfall. Third, an open cross-architecture harness comparing sliding-window-hybrid, full-attention, and SSM-hybrid models across engines and frameworks. Fourth, a runtime-detection framework for air-gapped settings where you own the logits. Results from a 75,476-trial sweep across five models and two engines show a pooled omission rate of 0.62; 68% originates in deterministic middleware (L0-L3), relocating where operators should intervene. Server-side profile factors (weight quantization, KV-cache type, RoPE scaling) were fixed and left for future work.