跳到正文
Jones Ray

ScholarPulse 日报 2026-07-01

2026-07-01 学术简报:2 篇。QVal通过Q值对齐直接评估密集监督信号,无需训练即可实现方法公平比较。

今日速览

序号标题来源日期主题推荐等级
1QVal: Cheaply Evaluating Dense Supervision Signals for Long-Horizon LLM AgentsarXiv2026-06-30AI-Agent高
2Generative Skill Composition for LLM AgentsarXiv2026-06-30AI-Agent高

重点论文与技术动态

1. QVal: Cheaply Evaluating Dense Supervision Signals for Long-Horizon LLM Agents

一句话结论

QVal通过Q值对齐直接评估密集监督信号,无需训练即可实现方法公平比较。

一段话。
该测试平台避免了传统评估中训练工程干扰,使密集监督方法能在统一基准上高效比较,显著降低评估成本。

核心内容

方法与数据

价值判断

摘要 LLM agents increasingly act over long horizons, where a single trajectory can contain hundreds or thousands of actions. In these settings, outcome-only rewards provide too sparse guidance, failing to inform the model about the goodness of intermediate actions. Dense supervision methods aim to solve this problem by scoring intermediate steps, from intrinsic confidence to self-distillation and embedding similarities. However, it is common practice to evaluate them by measuring the downstream performance of a training pipeline that integrates them. This is expensive, conflates supervision quality with training engineering confounders, and renders different methodological families requiring distinct training setups incomparable. As a result, dense supervision methods are rarely benchmarked on common ground. We introduce QVal, a training-free testbed for directly evaluating dense supervision signals. Given a state-action pair, QVal measures how well a method's score is Q-aligned: whether it orders actions according to the Q-values of a strong reference-policy. This lets us compare signals before any training run and separate signal quality from other engineering choices. We instantiate QVal as QVal-v1.0, benchmarking 21 dense supervision methods across four diverse environments and seven methodological families, with over 1.2K evaluation experiments across six open-weight model backbones. We find that simple prompting baselines consistently outperform recent dense supervision methods from the literature, and that performance clusters strongly by family. These findings hold across model sizes, environments, and observation modalities. QVal is designed to be easily extensible to new environments and methods, enabling researchers to iterate on dense supervision methods before any training run.

2. Generative Skill Composition for LLM Agents

一句话结论

SkillComposer通过结构化技能组合显著提升LLM代理任务成功率,在SkillsBench测试中使GPT-5.2-Codex和Gemini-3-Pro-Preview的通过率分别提高23.1%和18.2%。

核心内容

方法与数据

价值判断

摘要 Recent LLM agents benefit from skills for solving complex tasks. Skills encapsulate modular packages of procedural knowledge and instructions for performing specialized tasks, such as setting up a sandboxed environment, running a test suite, or refactoring a function across multiple files. As skill libraries grow and become reusable across tasks and domains, selecting an appropriate skill composition has emerged as a central bottleneck. Existing approaches fall into two categories. One exposes the agent's reasoning to the entire skill collection; the other performs skill retrieval via embeddings or LLM-based rerankers. Both provide useful insights; however, they miss the structural nature of skill composition, which is a joint decision over which skills, how many, and in what order -- three dimensions that cannot be decoupled. We formalize this as structured skill composition: given a task and a skill library, predict an executable skill plan that jointly specifies the activated subset, count, and execution order. We propose SkillComposer, which instantiates structured skill composition as task-conditioned skill sequence prediction. SkillComposer uses a constrained autoregressive decoder over skill identifiers, so subset, count, and order emerge jointly from a single decoding pass, and dependencies between successive skills are captured naturally. We build a training set of task-composition pairs from a real, human-curated skill library. We then evaluate SkillComposer along two axes: composition quality on a held-out test set, and downstream task success on SkillsBench across two production-grade coding agents. On GPT-5.2-Codex, Gemini-3-Pro-Preview, SkillComposer raises the pass rate by +23.1, +18.2pp over the no-skill baseline, surpassing top-3 retrieval and matching the gold-skill retrieval upper bound at lower prompt-token cost.