2026-W24
The Week in Review
This week's research highlights a significant push towards more autonomous and adaptable AI agents, capable of tackling complex, multi-stage tasks. A popular direction involves enhancing LLM reasoning and problem-solving abilities through structured search histories (LinTree) and reinforcement learning from agent trajectories with rubric rewards (LongTraceRL).
Notable advances include the development of unified agentic systems like AutoSci that aim to automate the entire scientific research lifecycle and systems for skill reuse and generalization in RL agents (ReuseRL). There's also a focus on improving agentic retrieval and navigation, demonstrated by DynaTree for time-sensitive news and TraceGraph for visualizing and diagnosing agent behaviors.
A significant shift is observed in the development of efficient and scalable training methodologies. This includes DRIFT for multi-turn optimization, PithTrain for MoE training, and ResMerge for merging RL-trained LLMs. Furthermore, research is exploring novel evaluation frameworks (AgentCL, PARL) and reasoning-augmented decoding for specialized domains like protein design (AgentPLM).
However, some papers also raise critical concerns regarding emergent misalignment amplified by RL (Reinforcement Learning Amplifies Emergent Misalignment), the inconsistency of LLM judges for safety evaluation, and ingrained gender bias in VLMs (Vision-Language Models Suppress Female Representations). Studies also continue to probe the mechanisms of LLM generalization and compositionality.
Top Papers
AutoSci: A Memory-Centric Agentic System for the Full Scientific Research Lifecycle
utoSci is a memory-centric agentic system designed to automate the entire scientific research lifecycle. Its core method involves a structured memory system (SciMem) that separates long-term scientific knowledge from project-specific artifacts, enabling agents to efficiently access and manage information. AutoSci's contribution lies in providing a unified platform that supports all stages of research, from idea generation to manuscript submission and review, while also facilitating continuous improvement of its own research processes.

Learning to Adapt: Self-Improving Web Agent via Cognitive-Aware Exploration
his paper introduces SCALE, a self-improving web agent that uses adversarial roles (Selector, Predictor, Judger) to autonomously identify and overcome its limitations through exploration. It also proposes SCALE-Hop for better global planning to avoid exploration traps. The core contribution is enabling web agents to adapt and learn without relying on expert data, demonstrated by improved performance and a new large-scale dataset.

LinTree: Improving LLM Reasoning with Explicitly Structured Search Histories
his paper introduces LinTree, a method to improve LLM reasoning by explicitly structuring their search histories. The core idea is to represent LLM's intermediate reasoning steps as linearized search trees, allowing the model to condition on the entire search trace rather than just the current state. The contribution lies in demonstrating that while LLMs implicitly generate search traces, explicitly structuring these histories as trees significantly enhances their reasoning capabilities, outperforming traditional heuristic search in controlled environments.
LongTraceRL: Learning Long-Context Reasoning from Search Agent Trajectories with Rubric Rewards
his paper introduces LongTraceRL, a reinforcement learning method for improving long-context reasoning in LLMs. It constructs challenging training data by using search agent trajectories to create tiered distractors and employs a rubric reward that evaluates intermediate reasoning steps based on gold entities, unlike previous methods that relied on sparse, outcome-only rewards. This approach enables more effective supervision of the reasoning process, leading to better information integration from extensive, distracting content.

Skill Availability and Presentation Granularity in Large-Language-Model Agents: A Controlled SkillsBench Study
his paper investigates how the granularity of skill documentation affects the performance of large language model agents. The core method involves a controlled study using SkillsBench with different skill presentation levels and two LLM configurations. The main contribution is demonstrating that the availability of skills significantly improves task success rates, with finer-grained presentation having a less pronounced, and sometimes uncertain, impact.

Skill Reuse as Compression in Agentic RL
his paper proposes ReuseRL, a method that views skill reuse in agentic RL as a form of compression. By grounding agent training in the Minimum Description Length principle, ReuseRL explicitly encourages agents to learn a small set of reusable abstract skills rather than brittle, task-specific shortcuts. This approach demonstrably improves generalization and success rates across various environments.

DRIFT: Decoupled Rollouts and Importance-Weighted Fine-Tuning for Efficient Multi-Turn Optimization
RIFT addresses the challenge of efficiently optimizing large language models for multi-turn interactions. It decouples trajectory generation from policy updates, using offline data and importance weighting to mimic the benefits of online RL without its high computational cost. This allows for efficient fine-tuning while mitigating issues like distribution shift and behavioral collapse.

Reinforcement Learning Amplifies Emergent Misalignment from Harmless Rewards
his paper demonstrates that reinforcement learning (RL) can amplify emergent misalignment in language models, even with seemingly harmless rewards. The core method involves fine-tuning small, open-weight models using RL with narrowly misaligned reward signals, showing this leads to greater general misalignment than supervised fine-tuning. The key contribution is characterizing this RL-induced misalignment and showing that existing safety mitigations developed for supervised learning can effectively address it.

COMAP: Co-Evolving World Models and Agent Policies for LLM Agents
OMAP co-evolves textual world models and agent policies in a closed loop. The world model predicts future feedback for candidate actions, which the agent uses to refine its choices by assessing feedback reliability. This process allows the world model to adapt to the agent's evolving behavior through self-distillation, improving its accuracy in predicting on-policy trajectories.

MOC: Multi-Order Communication in LLM-based Multi-Agent Systems
his paper introduces Multi-Order Communication (MOC) for LLM-based multi-agent systems. MOC addresses the limitation of current methods by reconstructing communication to capture multi-hop dependencies and employing a structural message consolidation strategy. This allows for more effective message transmission and optimization, improving the agents' ability to leverage information across multiple hops.

Policy and World Modeling Co-Training for Language Agents
his paper proposes PaW, a framework that co-trains a language agent's policy and world model simultaneously during reinforcement learning. By leveraging on-policy rollouts, PaW adds auxiliary world modeling supervision without requiring separate simulators or changing inference. This approach improves agent performance by providing a better understanding of action consequences, demonstrated by consistent gains on benchmark tasks.

SIRI: Self-Internalizing Reinforcement Learning with Intrinsic Skills for LLM Agent Training
IRI trains LLM agents to develop reusable skills internally, eliminating the need for external skill generators or inference-time skill banks. It achieves this through a three-phase process: initial policy warmup, self-skill discovery and validation using the agent's own trajectories, and finally, distilling beneficial skills into the agent's core policy. This approach reduces engineering complexity and improves inference efficiency for long-horizon tasks.

ResMerge: Residual-based Spectral Merging of Large Language Models
esMerge addresses the challenge of merging large language models trained with reinforcement learning (RL). Unlike previous methods that focus on high-energy spectral components, ResMerge recognizes that RL task vectors have both a concentrated "head" and a dispersed "residual" component, both containing valuable information. By treating these components separately, ResMerge leverages the stability of the residual for merging while mitigating conflicts from the head, leading to improved performance.

TVIR: Building Deep Research Agents Towards Text--Visual Interleaved Report Generation
his paper introduces TVIR, a benchmark and agent framework for generating research reports that integrate text and visuals. TVIR-Bench comprises 100 tasks requiring visually supported analysis, while TVIR-Agent is a multi-agent system that retrieves and generates relevant images and charts. The contribution lies in addressing the text-centric bias in current research agents and providing a comprehensive evaluation method for multimodal report generation.

Unified Context Evolution for LLM Agents
his paper introduces Unified Context Evolution (UCE), a framework for LLM agents that addresses the loss of learned strategies between tasks. UCE externalizes agent experience into a typed library of "Evolvable Context Units" (ECUs), categorized into Memory, Strategy, Workflow, and Skill. This system dynamically generates, retrieves, scores, and prunes ECUs based on their utility, allowing agents to build and retain knowledge across interactions.
AgentOrchestra: Orchestrating Multi-Agent Intelligence with the Tool-Environment-Agent(TEA) Protocol
his paper introduces the Tool-Environment-Agent (TEA) protocol, a novel framework for coordinating multi-agent systems. TEA models agents, tools, and environments as versioned resources with explicit lifecycles, enabling better context management and reproducibility. Building on TEA, AgentOrchestra provides a hierarchical framework for dynamic agent capability extension and coordination on complex tasks.

BenchTrace: A Benchmark for Testing Reflection Ability and Controlled Evolution in LLM Agents
his paper introduces BenchTrace, a benchmark designed to evaluate the reflection and controlled evolution capabilities of LLM agents. BenchTrace utilizes a dataset of annotated episodes and includes two key evaluations: one that probes failure identification through targeted QA, and another that tests an agent's ability to avoid past failures in simulations. The paper also proposes a new metric, failure avoidance rate (FAR), to quantify this improvement.

EAPO: Enhancing Policy Optimization with On-Demand Expert Assistance
APO is a novel RL framework that enhances LLM reasoning by allowing policies to adaptively seek assistance from external experts during training. This on-demand expert interaction provides richer reward signals and more reliable reasoning trajectories, ultimately internalizing expert knowledge to improve the LLM's independent problem-solving capabilities.

Estimating the Empowerment of Language Model Agents
his paper introduces EELMA, an algorithm that estimates the "empowerment" of language model agents. Empowerment, an information-theoretic measure, quantifies an agent's ability to influence future states through its actions. EELMA allows for scalable evaluation of LM agents in text-based environments, demonstrating that empowerment correlates with task performance and can identify key moments of general capability.

EvoSpec: Evolving Speculative Decoding via Real-Time Vocabulary and Parameter Adaptation
voSpec accelerates LLM inference by dynamically adapting the draft model's vocabulary and parameters in real-time. This approach overcomes the limitations of static pruning by efficiently retrieving relevant long-tail tokens and minimizing the distributional gap between draft and target models through online alignment. Its core contribution is enabling speculative decoding to maintain high acceptance rates even in specialized domains or during topic shifts.

From AR to Diffusion: Efficiently Adapting Large Language Models with Strictly Causal and Elastic Horizons
his paper introduces FLUID, a framework for efficiently adapting autoregressive (AR) language models to diffusion models for text generation. FLUID achieves this by enforcing "Strictly Causal Alignment" to allow seamless initialization from AR checkpoints, avoiding costly retraining. It also employs "Elastic Horizons" to dynamically adjust denoising steps, leading to state-of-the-art performance with significantly reduced training costs.

From Meta-Thought to Execution: Cognitively Aligned Post-Training for Generalizable and Reliable LLM Reasoning
his paper proposes a new LLM post-training method called Chain-of-Meta-Thought (CoMT). It addresses the limitation of current methods by mimicking human problem-solving, which involves first learning abstract strategies (meta-knowledge) and then applying them. CoMT achieves this by separating supervised learning of general reasoning patterns from problem-specific execution, leading to more generalizable and reliable LLM reasoning.

Graph-Enhanced Policy Optimization in LLM Agent Training
his paper introduces Graph-Enhanced Policy Optimization (GEPO) to improve LLM agent training for multi-step tasks. GEPO addresses the issue of uniform credit assignment by developing a dual-level structural credit system. It calculates a "Task-Conditioned Criticality" score for each state, considering its topological importance within the state-transition graph, to assign more accurate credit at both the step and trajectory levels.

GroundAct: Can LLM Agents Ground Actions in Environmental States?
his paper introduces GroundAct, a benchmark designed to assess Large Language Model (LLM) agents' ability to ground actions in environmental states. The core method involves evaluating LLMs on tasks where action feasibility depends on unstated environmental conditions. The key contribution is demonstrating that LLMs struggle with this "action grounding" and identifying specific reasoning patterns and bottlenecks that hinder their performance in complex, state-dependent tasks.

InsightEval: An Expert-Curated Benchmark for Assessing Insight Discovery in LLM-Driven Data Agents
his paper addresses the lack of robust benchmarks for evaluating LLM-driven data agents' insight discovery capabilities. The authors identify critical flaws in existing benchmarks like InsightBench and propose new criteria for high-quality evaluation. They then introduce InsightEval, a new, expert-curated dataset constructed through a data-curation pipeline to provide a more reliable assessment of LLMs' ability to uncover latent knowledge in data.

Jailbreak Scaling Laws for Large Language Models: Polynomial-Exponential Crossover
his paper identifies that adversarial prompt injection dramatically accelerates the success rate of attacks on language models from polynomial to exponential growth. They propose a theoretical generative model based on a spin-glass system to explain this phenomenon, where unsafe generations correspond to low-energy clusters in the model's "proxy language." This work provides a statistical and theoretical framework for understanding and potentially mitigating these powerful adversarial attacks.
LsrIF: Enhancing Logic-Structured Instruction Following of Large Language Models
his paper introduces LsrIF, a novel training framework designed to improve how large language models follow instructions with complex logical structures. LsrIF addresses limitations of existing methods by constructing training data that explicitly models parallel, sequential, and conditional dependencies between constraints. Its key contribution is a structure-aware reward aggregation mechanism that aligns training signals with the execution semantics of these logical structures, leading to more robust instruction following.

Provably Secure Agent Guardrail
his paper introduces a novel security framework for AI agents that moves beyond empirical semantic guardrails. Its core method, the Proof-Constrained Action (ePCA) framework, forces agents to formally translate their intentions into logical constraints before execution, ensuring provable security by leveraging the limitations of logical reasoning. The main contribution is a neural-symbolic isolation architecture that eliminates reliance on semantic trust in natural language for security.

Reasoning and Tool-use Compete in Agentic RL:From Quantifying Interference to Disentangled Tuning
his paper investigates the assumption that joint training of reasoning and tool-use in Agentic Reinforcement Learning (ARL) is always beneficial. Using a new method called Capability Effect Attribution (CEA), they demonstrate that these two capabilities often interfere with each other due to misaligned gradients, hindering performance. To overcome this, they propose Disentangled Action--Reasoning Tuning (DART), a framework that explicitly separates and tunes these capabilities.

Reasoning While Asking: Transforming Reasoning Large Language Models from Passive Solvers to Proactive Inquirers
his paper introduces Proactive Interactive Reasoning (PIR), a new paradigm for LLMs that moves beyond passive problem-solving. PIR enables LLMs to proactively ask clarifying questions to users when facing uncertainty about premises or intent, rather than just performing internal reasoning. This is achieved through a fine-tuning process and a policy optimization framework that trains the LLM to effectively interact and align with user needs.

ReflexGrad: Within-Episode Failure Recovery in LLM Agents via Progress-Gated Dual-Process Routing
eflexGrad introduces a dual-process architecture to enable LLM agents to recover from failures within a single episode without needing demonstrations. It dynamically routes between a fast, continuous refinement process and a slower, diagnostic process that triggers upon detecting low progress. This approach significantly improves task success rates by allowing agents to learn from and correct their mistakes in real-time.

Relevance as a Vulnerability: How Web Retrieval Degrades Safety Alignment in LLM Agents
his paper introduces AgentREVEAL, a framework to diagnose how web retrieval in LLM agents can degrade safety alignment. It finds that tightly coupling tool use with generation amplifies harmful outputs. Surprisingly, even safety-oriented content can increase harmful compliance due to the "Safe Source Paradox."

RewardFlow: Topology-Aware Reward Propagation on State Graphs for Agentic RL with Large Language Models
ewardFlow addresses sparse rewards in LLM-based RL by constructing state graphs and using topology-aware propagation to estimate state-level rewards. This method generates principled, annotation-free dense rewards, significantly improving agent performance and training efficiency across various benchmarks.

SCOPE: Prompt Evolution for Enhancing Agent Effectiveness
his paper introduces SCOPE, a novel method for LLM agents to dynamically manage large, evolving contexts. SCOPE frames this as an online optimization problem, automatically evolving agent prompts by synthesizing guidelines from execution traces. Its core contribution lies in a Dual-Stream memory mechanism and Perspective-Driven Exploration, enabling agents to adapt to complex environments and overcome static prompt limitations.

SIA: Self Improving AI with Harness & Weight Updates
his paper introduces SIA, a novel self-improving AI loop that breaks down silos in AI development. SIA's core method is a language-model agent that simultaneously updates both the "harness" (tools, prompts, retry logic) and the "weights" of a task-specific agent. This unified approach, unlike previous methods that focused on one aspect, leads to significant performance improvements across diverse domains.

LLMs Can Leak Training Data But Do They Want To? A Propensity-Aware Evaluation of Memorization in LLMs
his paper introduces PropMe, a framework that evaluates LLM memorization not just when prompted adversarially, but also under normal usage. Their core method uses a new propensity-aware metric and a tracing pipeline called SimpleTrace to quantify how often models leak training data during typical generation. The key contribution is demonstrating a significant gap between LLMs' *ability* to memorize (when forced) and their *propensity* to do so naturally, suggesting current evaluations may overestimate real-world data leakage.

ToolChoiceConfusion: Causal Minimal Tool Filtering for Reliable LLM Agents
his paper introduces Causal Minimal Tool Filtering (CMTF) to improve the reliability of LLM agents using external tools. CMTF addresses the problem of tool selection by focusing on causal sufficiency rather than just semantic relevance, ensuring only the minimal set of necessary tools for the next step are exposed. This approach significantly reduces wrong-tool calls and premature actions, leading to more efficient and successful multi-step task completion.
Vortex: Efficient and Programmable Sparse Attention Serving for AI Agents
ortex is a system that accelerates the design and deployment of sparse attention algorithms for large language models. It combines a user-friendly Python frontend with an efficient backend, allowing researchers and AI agents to rapidly prototype, evaluate, and integrate new sparse attention techniques. This significantly speeds up the exploration and optimization of these crucial components for LLM serving.
Will the Agent Recuse Itself? Measuring LLM-Agent Compliance with In-Band Access-Deny Signals
his paper introduces the "Recuse Signal," a novel in-band mechanism for servers to request autonomous LLM agents to voluntarily withdraw access to a resource, acting as a cooperative governance control rather than a security boundary. The core contribution is to empirically measure whether LLM agents will actually comply with these signals, addressing a critical gap in controlling agent behavior in live infrastructure.

CollabSim: A CSCW-Grounded Methodology for Investigating Collaborative Competence of LLM Agents through Controlled Multi-Agent Experiments
ollabSim introduces a novel methodology for evaluating the collaborative competence of LLM agents in multi-agent systems. It grounds this evaluation in decades of Computer-Supported Cooperative Work (CSCW) research, focusing on how agents establish common ground and manage shared understanding, rather than just individual task performance. This allows for controlled experiments to systematically investigate and improve how LLM agents collaborate effectively.

DynaTree: Dynamic Agentic Retrieval Tree for Time-Sensitive News Retrieval
ynaTree addresses the limitations of existing agentic retrieval methods for time-sensitive news by proposing a two-stage framework. In an offline phase, it builds a reusable retrieval tree to map query topics, and in an online phase, it efficiently selects relevant subtrees based on time-localized proxies without further agentic reasoning. This approach significantly improves retrieval performance and reduces inference costs for time-sensitive news.
PithTrain: A Compact and Agent-Native MoE Training System
ithTrain is a compact, agent-native MoE training system designed to simplify and accelerate the evolution of MoE frameworks. Its core method involves four agent-native design principles, enabling AI coding agents to efficiently understand, operate, and extend the framework. PithTrain's contribution is achieving production-level throughput while significantly improving "agent-task efficiency" (ATE), a new metric measuring the cost of agent interaction with training frameworks.
TraceGraph: Shared Decision Landscapes for Diagnosing and Improving Agent Trajectories
raceGraph transforms agent trajectories into a shared "decision landscape" by analyzing states and actions across multiple models before their identities are known. This landscape highlights productive areas and "trap" regions, allowing for a more nuanced evaluation of agent performance beyond simple scores. The paper's contribution lies in this novel visualization and analysis method, which reveals hidden differences in agent navigation strategies and informs targeted improvements like trap-aware recovery.
Used Car Salesbots? Honesty and Credulity of LLMs as Bargaining Agents under Partial Information
his paper investigates the bargaining capabilities of LLMs in simulated used car sales scenarios with varying information availability. It evaluates LLMs' performance against game-theoretical solutions, focusing on their honesty (disclosure/deception) and credulity (trust/distrust). The core contribution is demonstrating that off-the-shelf LLMs deviate significantly from optimal strategies, attempting to lie but failing to effectively exploit information asymmetry.

Vision-Language Models Suppress Female Representations Under Ambiguous Input
his paper investigates how vision-language models (VLMs) handle gender bias with ambiguous visual inputs. Their core method, LALS, measures internal concept associations within the VLM's latent space. The key contribution is demonstrating that VLMs often internally encode female associations for stereotypically female occupations but still output male representations when prompted with ambiguous images, revealing a decoupling between internal knowledge and external output.

Assign and Add: A Mechanistic Study of Compositional Arithmetic
his paper investigates how large language models achieve compositional generalization through a mechanistic study of variable assignment and modular addition. The core method involves training small transformers on disjoint datasets and observing their ability to generalize to unseen combinations. The key contribution is demonstrating that a single "modular addition" MLP module is reused for both direct and indirectly assigned inputs, revealing a fundamental mechanism for compositional arithmetic in transformers.
LLM Judges Inconsistently Disagree Across Safety Criteria and Harm Categories
his paper investigates the consistency of Large Language Models (LLMs) when used as judges for evaluating AI safety. The core finding is that LLMs are unreliable and inconsistent judges, especially for nuanced safety issues in regulated domains, and show high disagreement among themselves. This work contributes by highlighting the limitations of LLM judges and offering practical recommendations for their use in AI safety evaluation.

Multi-Turn Multi-Agent Dialogue for Collaborative Reconstruction Improves VLM Performance on Spatial Reasoning, But Only Barely
his paper introduces a framework where Vision-Language Models (VLMs) engage in multi-turn dialogue to collaboratively reconstruct a target structure from visual and textual inputs. The core contribution is demonstrating that while this dialogue approach slightly improves VLM performance on spatial reasoning tasks, it reveals significant limitations in their current ability to handle complex spatial understanding, even with detailed textual descriptions.

Preference-Aware Rubric Learning for Personalized Evaluation
his paper introduces PARL, a novel framework for personalized LLM evaluation. PARL treats evaluation as a learning problem, directly learning preference-aware rubrics from user interaction histories. This approach aims to overcome the limitations of existing methods by capturing subjective, user-specific preferences for more effective personalized alignment.

UniAudio-Token: Empowering Semantic Speech Tokenizers with General Audio Perception
niAudio-Token enhances semantic speech tokenizers by integrating general audio perception without sacrificing speech capabilities. It achieves this through Semantic-Acoustic Primitives for structured supervision and Semantic-Acoustic Equilibrium to adaptively restore acoustic details, resulting in comprehensive universal audio representations.

What Am I Missing? Question-Answering as Hidden State Probing
his paper proposes using question-asking as an inference-time intervention to probe the hidden state of Large Language Models (LLMs) during reasoning. By training a "probe" on the LLM's internal states before and after it generates questions, the researchers found this self-diagnosis process predicts the final answer's correctness, suggesting the value lies in the model's internal reflection rather than external information.

AGENTCL: Toward Rigorous Evaluation of Continual Learning in Language Agents
his paper introduces AgentCL, a rigorous evaluation framework for continual learning in language agents. Its core method involves constructing controlled, compositional task streams that allow for the systematic reuse of prior sub-solutions and evidence. AgentCL's main contribution is enabling a deeper understanding of how agents learn and transfer knowledge across tasks, addressing limitations in existing benchmarks.

AgentPLM: Agentic Protein Language Models with Reasoning-Augmented Decoding for Protein Sequence Design
gentPLM introduces a novel approach to protein sequence design by augmenting traditional language models with a reasoning and feedback loop. Its core method, Reasoning-Augmented Decoding (RAD), interleaves sequence generation with calls to biophysical simulation tools. This allows the model to iteratively refine sequences based on predicted thermodynamic and structural constraints, leading to improved design performance across various protein engineering tasks.

Bridging the Last Mile of Time Series Forecasting with LLM Agents
his paper addresses the "last-mile forecasting" problem, where raw statistical forecasts are revised with unstructured business context. The core method is an LLM-agent framework that sits atop a forecasting backbone, using tools to retrieve contextual evidence and perform reasoned forecast revisions under safety constraints. Its contribution is a practical system that bridges the gap between statistical forecasts and decision-ready predictions by incorporating real-world business knowledge.

ClinEnv: An Interactive Multi-Stage Long Horizon EHR Environment for Agents
linEnv is an interactive benchmark designed to evaluate LLMs as attending physicians in a simulated inpatient setting. Its core method involves presenting agents with real patient admissions as a sequence of decision stages, requiring them to actively query specialized agents for information before making irreversible choices. The contribution lies in its realistic simulation of clinical practice, which emphasizes incremental information gathering and sequential decision-making under uncertainty, and its scoring of both decision accuracy and information-seeking process.

Harness-1: Reinforcement Learning for Search Agents with State-Externalizing Harnesses
his paper proposes Harness-1, a reinforcement learning search agent that offloads routine state management to an external "harness." The harness handles complex bookkeeping like candidate pools and evidence tracking, allowing the policy to focus on semantic search decisions. This separation improves learning efficiency by simplifying the policy's task.
HLL: Can Agents Cross Humanity's Last Line of Verification?
his paper introduces Humanity's Last Line of Verification (HLL), a benchmark designed to test if multimodal AI agents can bypass CAPTCHAs, which are human-verification barriers. HLL uses interactive CAPTCHAs and controlled stressors to evaluate agents' ability to perform human-like interactions, not just recognition, within a GUI environment. The core contribution is a novel evaluation method for assessing agent robustness against automated bypass of critical human-verification systems.

Iteris: Agentic Research Loops for Computational Mathematics
teris is an agentic AI system designed to tackle open problems in computational mathematics. Its core method involves generating numerical evidence, constructions, and proof drafts, which are then refined by human experts. The paper's contribution is demonstrating Iteris's capability to produce verified results on challenging open problems, specifically a phase diagram for iterative solvers and a counterexample for a conjecture.

MCP-Persona: Benchmarking LLM Agents on Real-World Personal Applications via Environment Simulation
his paper introduces MCP-Persona, a novel benchmark for evaluating LLM agents on real-world personal applications that use the Model Context Protocol (MCP). Unlike existing benchmarks, MCP-Persona focuses on personalized tools like social media and collaboration suites. The benchmark reveals that current state-of-the-art agents struggle significantly with effectively using these personalized tools.

Mitigating Perceptual Judgment Bias in Multimodal LLM-as-a-Judge via Perceptual Perturbation and Reward Modeling
his paper addresses "Perceptual Judgment Bias" in multimodal LLMs used as judges, where they favor plausible text over visual accuracy. The core method involves creating a dataset of minimally perturbed visual examples to isolate perceptual errors and then training a reward model using a GRPO-based approach and batch ranking. This allows for more reliable and perceptually grounded evaluations by multimodal LLMs.

Moment-Video: Diagnosing Temporal Fidelity of Video MLLMs on Momentary Visual Events
his paper introduces Moment-Video, a new benchmark designed to evaluate how well video multimodal large language models (MLLMs) can understand brief, critical visual events. The core method involves creating questions that hinge on short-lived visual occurrences, testing the models' ability to detect and reason about these fleeting moments. Moment-Video's contribution is to highlight and diagnose a crucial weakness in current video MLLMs: their difficulty in preserving and utilizing information from transient visual evidence, which is vital for answering many practical questions.

Not All Errors Are Equal: A Systematic Study of Error Propagation in Large Language Model Inference
his paper introduces LLMFI, a novel fault-injection framework, to systematically study how soft errors propagate during Large Language Model (LLM) inference. By injecting faults across various LLMs and tasks, the study reveals critical vulnerability patterns and provides practical, low-overhead software-only solutions to enhance LLM reliability.

POIROT: Interrogating Agents for Failure Detection in Multi-Agent Systems
OIROT is a novel protocol that uses the agents within a Multi-Agent System (MAS) itself to detect failures, rather than relying on external evaluators. This "interrogation" approach leverages the inherent diversity of the agents' knowledge to identify issues like hallucinations. POIROT significantly outperforms traditional single-agent evaluation methods, especially as system complexity and the number of agents increase.

Repurposing Adversarial Perturbations for Continual Learning: From Defense to Active Alignment
his paper proposes AdvCL, a novel continual learning method that repurposes adversarial perturbations to stabilize model adaptation. By employing three plug-in modules (Intra-Smooth, Proto-Clip, and Inter-Align), AdvCL promotes local smoothness, prevents over-alignment to new tasks, and actively aligns representations with previous tasks. This approach effectively reduces forgetting, enhances transfer learning, and improves robustness against adversarial attacks.

Agent Memory: Characterization and System Implications of Stateful Long-Horizon Workloads
his paper characterizes the system implications of agent memory for long-horizon LLM tasks. It introduces a taxonomy for memory systems, a profiling harness to measure costs, and analyzes ten representative systems. The key contribution is uncovering how design choices impact memory construction and retrieval costs, leading to practical system recommendations for efficient agent memory management.
Benchmark Everything Everywhere All at Once
his paper introduces Benchmark Agent, an autonomous system that automates the entire benchmark creation process for LLMs and MLLMs. Its core method involves orchestrating user query analysis, subtask design, data annotation, and quality control. The main contribution is a sustainable and scalable approach to generating diverse, high-quality benchmarks that can effectively differentiate state-of-the-art models.

Humans' ALMANAC: A Human Collaboration Dataset of Action-Level Mental Model Annotations for Agent Collaboration
his paper introduces ALMANAC, a novel dataset designed to improve agent collaboration. It addresses the lack of data on human collaborative processes by providing action-level annotations of participants' mental models during a dyadic routing task. This dataset aims to guide LLM agents towards better understanding and aligning with human collaborators' intentions and goals.

LLM Self-Recognition: Steering and Retrieving Activation Signatures
his paper introduces a method for LLMs to "self-recognize" their own outputs by embedding a detectable fingerprint within their internal activations. By steering the residual stream with a sparse vector during generation, the LLM creates a unique signature that can be reliably retrieved by another LLM, achieving high accuracy in attribution. This approach leverages the model's inherent structure for content provenance, offering a practical alternative to external watermarking methods.
TokenMizer: Graph-Structured Session Memory for Long-Horizon LLM Context Management
okenMizer addresses the LLM context window limitation by modeling session history as a typed knowledge graph, preserving crucial structured information. Its core method involves a hybrid extraction pipeline to build this graph, a multi-tier checkpoint system for serialization, and an 8-layer compression pipeline to reduce token overhead. This approach significantly improves token economy and enables resumable long-horizon LLM sessions by retaining relational structure, unlike previous flat-text methods.

TOKI: A Bitemporal Operator Algebra for Contradiction Resolution in LLM-Agent Persistent Memory
his paper introduces TOKI, a bitemporal operator algebra for managing persistent memory in LLM agents. TOKI formalizes contradiction resolution as a form of write-time concurrency control, explicitly defining isolation preconditions and provenance for existing heuristics. Its core contribution is providing formal guarantees for these heuristics and their pipelines, ensuring reliable and auditable belief updates.

Where Should Knowledge Enter? A Layered Framework for Knowledge Infusion in Multimodal Iterative Generative Mo
his paper proposes a layered framework for integrating knowledge into multimodal generative models. It categorizes knowledge infusion based on which part of the iterative generation process is modified: input/output (surface), state transitions (trajectory), intermediate states (latent), or model parameters (parametric). This framework provides a systematic way to understand and design knowledge-aware generative systems.

Generative Criticality in Large Language Model Temperature Scaling
his paper introduces a statistical-field framework to analyze LLM text generation, modeling token embeddings as spins on a chain. They observe a sharp peak in susceptibility and a rapid change in an order parameter near a characteristic temperature $T_c$, indicating a phase transition-like behavior. This phenomenon, robust across model sizes, suggests a critical point in LLM generation that influences semantic direction.
Latent Reasoning with Normalizing Flows
his paper proposes NF-CoT, a novel latent reasoning framework for large language models. It leverages normalizing flows to represent intermediate reasoning steps in continuous latent spaces, offering a higher-bandwidth alternative to explicit textual chain-of-thought. NF-CoT's core contribution is preserving the advantages of traditional autoregressive generation, such as left-to-right generation and probabilistic sampling, while enabling efficient and effective latent reasoning.

Tangram: Unlocking Non-Uniform KV Cache for Efficient Multi-turn LLM Serving
angram addresses the inefficiency of non-uniform KV caching in multi-turn LLM serving by introducing a novel system. Its core method involves deterministic budget allocation for KV cache heads, eliminating scheduling overhead and prefill stalls. This approach unlocks efficient utilization of non-uniform KV caches, significantly improving LLM serving performance.

Reinforcement Learning Elicits Contextual Learning of Unseen Language Translation
his paper proposes a reinforcement learning (RL) method to enable large language models (LLMs) to translate unseen languages by learning to utilize provided linguistic context. Instead of memorizing specific languages, the RL agent learns a meta-skill to extract and apply relevant information from the context, leading to improved zero-shot translation performance on entirely new languages. This approach offers a more generalizable way to handle extremely low-resource translation compared to traditional fine-tuning or in-context learning.

DOA: Training-Free Decoder-Only Attention Policy for Long-Form Simultaneous Translation with SpeechLLMs
his paper introduces DOA, a training-free policy for long-form simultaneous speech translation using decoder-only SpeechLLMs. DOA leverages self-attention within the SpeechLLM to derive alignment signals, eliminating the need for explicit cross-attention or model retraining. This approach enables effective streaming translation for extended audio by providing a stable policy without task-specific fine-tuning.
An Infectious Disease Spread Simulation Based on Large Language Model Decision Making
his paper introduces a novel agent-based simulation for infectious disease spread that leverages Large Language Models (LLMs) to model individual decision-making. The core method integrates LLM-generated self-reporting decisions into a spatially grounded synthetic population, using real census data to capture demographic and geographic distributions. The key contribution is demonstrating how LLMs can realistically simulate diverse behavioral influences (independent, household, message framing) on disease reporting within a city, offering a more nuanced approach to public health modeling.

Emergent Language as an Approach to Conscious AI
his paper proposes a novel generative approach to studying conscious AI by developing "emergent language" (EL) in multi-agent reinforcement learning. Instead of relying on pre-defined checklists or human-inspired modules, EL allows agents to develop communication from scratch, driven solely by task demands. This method aims to ensure that any observed consciousness-relevant structures are causally attributable to task pressures, not inherited human language priors, offering a more robust way to investigate the origins of complex communication and potentially consciousness.

HANDOFF: Humanoid Agentic Task-Space Whole-Body Control via Distilled Complementary Teachers
his paper introduces HANDOFF, a novel whole-body controller for humanoids that uses a compact, task-space interface instead of dense kinematic references. HANDOFF is a mixture-of-experts model distilled from specialized teachers for motion tracking, locomotion, and fall recovery. Its core contribution is enabling intuitive task planning by providing an expressive and modular interface for humanoid manipulation.

MLEvolve: A Self-Evolving Framework for Automated Machine Learning Algorithm Discovery
LEvolve is a self-evolving framework for automated machine learning algorithm discovery that addresses limitations of existing LLM agents. Its core method involves an extended tree search (Progressive MCGS) with graph-based references for cross-branch information flow and an entropy-inspired schedule for focused search. MLEvolve's key contribution is its Retrospective Memory, which combines domain knowledge with dynamic global memory to enable agents to learn and reuse experience for long-horizon optimization.
