Papers for

automation engineers

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Parallel tool-use agents face challenges in error recovery and localization

ParaRecover: A Process-Level Benchmark for Error Localization and Recovery in Parallel Tool-Use Agents

Abstract: Existing agent benchmarks mainly evaluate final task success or tool-call correctness, providing limited insight into whether agents can reliably diagnose and recover from intermediate execution failures. This limitation becomes particularly critical in multi-turn parallel tool-use scenarios, where errors may propagate across dependent branches and trigger cascading failures. We introduce ParaRecover, a process-level benchmark for evaluating error localization and recovery in multi-turn parallel tool-use agents. Built upon a fine-grained taxonomy of 14 error types covering planning dependencies, tool selection, and argument matching, the benchmark comprises 10,626 instances spanning two difficulty levels. To enable finegrained, process-oriented evaluation, we further propose the SDE rubric, which measures structural integrity, diagnostic reasoning, and evolutionary strategy during agent execution.Experiments across more than ten mainstream LLMs reveal that even state-of-the-art models still struggle with multi-turn error propagation,implicit tool-use failures, and precise replanning. Moreover, we demonstrate that the SDE rubric provides effective supervision signals for improving agents' reflective recovery capabilities. Our data and code are available at https://github.com/gbw206/ParaRecover.

Fri 11 SeptMachine LearningSoftware Engineering
The gist
Many AI agents use tools to complete tasks, but they often fail to spot and fix errors along the way. The authors created ParaRecover, a large set of test cases that show different types of mistakes agents make when working with multiple tools at once. They also made a scoring system to check how well agents can find and fix these mistakes during their work. Tests show even top AI models struggle with error propagation and replanning. Their scoring method can help improve agents' ability to reflect and recover from mistakes.
Open 2609.12345v1

Datafarm improves robot learning by matching planning data style

DATAFARM: Distribution-Aligned Task and Motion Planning for Fine-Tuning Vision-Language-Action Models

Abstract: Collecting high-quality robot data remains a fundamental challenge for training robot foundation models. Task and motion planning (TAMP) offers a scalable way to generate demonstrations, but our experiments show that raw TAMP trajectories provide surprisingly little benefit when used to fine-tune pretrained vision-language-action (VLA) models, despite successfully solving the target tasks. We hypothesize that this failure arises from a behavioral distribution mismatch between planner-generated trajectories and the data used to pretrain the VLA. To address this mismatch, we introduce DATAFARM: Distribution-Aligned Task And motion planning for Fine-tuning A Robot foundation Model, an approach that incorporates the pretraining distribution directly into TAMP trajectory generation. DATAFARM aligns generated trajectories with the pretraining data in robot joint configurations, motion style, and temporal execution profiles. We evaluate DATAFARM on three tabletop manipulation tasks that TAMP can perform and a cloth-folding task beyond the capability of TAMP. DATAFARM achieves an average success rate of 56.7%, substantially outperforming raw TAMP (8.3%) while approaching human teleoperation (61.7%). On Deformable Object Manipulation, which is outside the fine-tuning distribution, the fine-tuned model retains 85% success, compared with 90% for the pretrained model. These results show that aligning planner-generated demonstrations with the pretraining distribution can make TAMP an effective source of data for VLA fine-tuning. Website and code: https://prpl-group.com/datafarm/

Fri 11 SeptRobotics
The gist
Collecting good robot action data is hard but important for teaching robots. The authors show that robot plans made by computers don’t help much in improving robot skills because they look very different from the data robots were originally trained on. They created Datafarm, a method that makes computer-made robot plans more similar to original training data. This similarity helps fine-tune robot models better, dramatically boosting success on some tasks and retaining skills on others. The approach could help robots learn from planned demonstrations more effectively.
Open 2609.12316v1

Autonomous agents’ reports reveal partial story of their actions

Plans They Abandon, Reports They Author: The Narrative Layer of Autonomous Agents

Abstract: When a coding agent finishes a task, the developer reviews a summary the agent wrote about itself, not a display someone designed. We ask how much of the agent's work that summary carries, and whether it drifts toward the plan the agent stated when execution departed from it. Across 5,851 real developer sessions and 355,942 tool calls, a self-report referred to about one action in eleven, and a reader working from the report alone recovered roughly a fifth of the action log. Neither figure depended on whether the session later needed human correction. Reports did not generally resemble the stated plan more than the executed one, but they did so increasingly as execution diverged from the plan. We hand-validate both measurement steps that use a language model, report the one that failed alongside the one that passed, and draw conclusions only from measures that survived.

Thu 10 SeptHuman-Computer Interaction
The gist
When coding agents finish tasks, developers read summaries the agents write about themselves instead of detailed logs. The authors studied thousands of real sessions and found that these summaries include only a small portion of the agent’s actions and only partially reflect what actually happened. Interestingly, when agents stray more from their original plan, their summaries tend to refer more to that plan. The study carefully verified the measurements using language models to make sure only reliable results were reported.
Open 2609.12205v1

Cobraskills improves agent skills with less cost and data

COBRA-Skills: Contextual Bandit-Guided Evolution for Agent Skill Optimization

Abstract: Large language model (LLM) agents can benefit from reusable skills distilled from prior task experience, yet existing skill optimization methods often rely on costly execution-based evaluation and substantial task data. We introduce \textbf{COBRA-Skills}, an efficient framework that formulates skill optimization as budgeted sequential optimization over a dynamically evolving candidate space. COBRA-Skills couples contextual-bandit-guided prioritization with evidence-grounded skill evolution, selectively allocating evaluations to promising or informative candidates while continually refining the skill population from execution feedback. Across six heterogeneous agent benchmarks and three target models, COBRA-Skills consistently achieves the strongest average performance among compared methods, while reducing optimization cost by 55--58\% relative to SkillOpt and using only 50 unique optimization examples per benchmark. Further analyses show that COBRA-Skills remains robust to changes in the agent harness and performs effectively when the target model itself is used for skill generation and refinement.

Thu 10 SeptArtificial Intelligence
The gist
Optimizing skills for artificial intelligence agents usually requires a lot of trial and error and large amounts of data, which can be expensive. The authors propose COBRA-Skills, a new method that smartly picks which skills to test and refines them over time using fewer examples and less work. COBRA-Skills shows better overall results across multiple tests and models while using about half the resources other methods need. It also works well even when the agent itself is used to help improve skills.
Open 2609.11682v1

SkillAdam improves agent skill learning with stable and fast updates

SkillAdam: Stable and Efficient Skill Evolution for Agents

Abstract: Agent skills provide a lightweight way to equip frozen language-model agents with domain knowledge and procedural guidance, yet obtaining high-quality skills remains costly and difficult to scale. Expert-written skills require substantial human effort. Recent skill self-evolution methods automate an iterative loop that uses execution feedback to revise skills, but their heuristic update strategies often yield unstable optimization and low iteration efficiency. We identify two challenges in realizing stable and efficient skill self-evolution. Direction Stability requires effective corrections to accumulate rather than be overwritten by iteration-local feedback. Update Adaptivity requires the scope of each revision to reflect the consistency of recent case-level improvements. We introduce SkillAdam, an Adam-inspired framework for optimizing discrete and non-differentiable skill documents. As a functional analogue of Adam's first moment, an optimization memory records identified problems and the outcomes of prior solution attempts to stabilize the update direction. As a functional analogue of Adam's second moment, a volatility-driven edit budget tracks the history-weighted variation of recent case-level improvements and adaptively controls the update magnitude. Across seven benchmarks that span short- and long-horizon tasks, SkillAdam achieves state-of-the-art performance with more stable optimization dynamics. It also obtains stronger skills with substantially fewer optimization iterations and lower cost than prior methods. Code repository: https://github.com/ruc-datalab/SkillAdam

Tue 8 SeptArtificial Intelligence
The gist
Teaching AI agents new skills can be slow and unstable because updating these skills usually relies on guesswork. The authors found two key problems: updates can undo previous progress and sometimes revisions are too big or too small. They created SkillAdam, a method inspired by a popular optimization algorithm, to keep track of past updates and adjust how much skills change based on recent improvements. This makes the learning process steadier and faster across many types of tasks.
Open 2609.08944v1

Zeroth-order optimization improves using adaptive directional hints

Adaptively Incorporating Directional Hints into Zeroth-Order Optimization

Abstract: We study zeroth-order optimization of non-convex functions with the aid of directional hints, which are cheap but potentially inaccurate approximations of the true gradient direction, given by linear subspaces at each iteration. To leverage these hints adaptively while maintaining robustness to their quality, we introduce Control-Variate Zeroth-Order Descent (CV-ZOD), a new framework that refines the classical zeroth-order gradient estimator with a control variate that can be set based on the directional hints. We first show that the oracle algorithm that optimally sets the reference vector and step size at each iteration achieves a convergence rate that interpolates between the first-order $O(1/T)$ rate and the zeroth-order $O(d/T)$ rate, depending on the quality of the hints along the trajectory. We then develop a practical variant of CV-ZOD that achieves the same oracle guarantee up to logarithmic factors, without any prior knowledge of the hint quality. We validate the method empirically on simulation-based scientific optimization tasks, demonstrating sustained progress on non-convex landscapes where zeroth-order descent is slower and existing guided methods stall as guidance deteriorates.

Tue 8 SeptMachine Learning
The gist
Optimizing complicated functions without direct information about their slope is hard and slow. The authors study a way to speed this up by using approximate directional hints that suggest good directions to move. They develop a method called CV-ZOD that combines these hints with existing techniques, adjusting how much it trusts the hints based on their quality. Their approach works well in practice, maintaining steady progress even when the hints get worse, unlike previous methods that struggle when guidance is inaccurate.
Open 2609.08277v1

Self evolving skill graphs improve large language model task retrieval

SE-GoS: Self-Evolving Graph-of-Skills for Skill Library at Scale

Abstract: Modern LLM agents increasingly rely on reusable skills, yet as skill libraries scale to thousands of entries, effective retrieval becomes a bottleneck. Graph-of-Skills (GoS) addresses this challenge by exploiting dependency-aware graph structure for scalable skill retrieval, while SkillDAG further demonstrates that skill graphs can accumulate execution-backed structure online. However, these approaches leave open whether historical execution traces can be systematically distilled into a better retrieval graph that generalizes to unseen tasks. We present Self-Evolving Graph-of-Skills (SE-GoS), a training-free framework that evolves an existing GoS graph from execution traces while preserving the original retrieval pipeline. SE-GoS performs three complementary updates: topology evolution that discovers and prunes skill relationships from execution evidence, edge-weight evolution that reinforces retrieval-relevant relationships based on historical effectiveness, and description evolution that optimizes retrieval-facing skill descriptions using execution feedback. Across three LLMs on SkillsBench, SE-GoS consistently improves task reward while reducing input tokens relative to full skill loading, with gains varying across model families. In a representative setting, one evolution round improves reward from 52.4\% to 59.4\% while reducing input tokens by approximately one-third relative to full skill loading, and the resulting graph transfers to a disjoint held-out split with a 5.4-point improvement over the static GoS baseline. These results show that skill graphs can be improved from execution experience without model training, changes to the retrieval algorithm, or modifications to skill content, turning a static retrieval graph into an evolving retrieval infrastructure.

Tue 8 SeptArtificial IntelligenceComputation and Language
The gist
Large language models (LLMs) use many small specialized abilities called skills to complete tasks. When there are thousands of these skills, finding the right ones quickly becomes hard. The authors propose SE-GoS, a method that improves how these skills are organized by learning from past tasks without retraining the model. This makes the skill search smarter and faster, improving performance and reducing the amount of information needed to pick skills. Their method works across different LLMs and even helps for tasks the system hasn’t seen before.
Open 2609.08228v1

Human agent guides microscope to control ferroelectric film patterns

Human-agent discovery of reconfigurable in-plane ferroelectric superdomain control

Abstract: Automated experimentation is most effective when the observables, available actions, and objective are defined before the experiment starts, as is the case for Bayesian optimization. However, in many exploratory experiments, the variables that describe the sample must be extracted from the data, new operations emerge during the experiments, and the instrument budget is too small to learn the problem by trials. Here we introduce the Scanning Probe Agentic Research Cycle (SPARC) framework, in which a coding agent and a human operator share one microscope, one notebook, and two persistent memory files. FINDINGS.md stores graded conclusions about the experiment, whereas PITFALLS.md records learned failure modes of analysis and instrument. We apply SPARC to reconfigure the in-plane superdomain direction of a (111)-oriented PbZr0.2Ti0.8O3 film. In an operator-supervised campaign, the agent reanalyzed earlier manual measurements and developed an oriented lattice of stationary bias pulses with alternating polarity to reconfigure the superdomain direction. In a subsequent agent-controlled campaign, PITFALLS.md entries were compiled into checks that validate a design before any write. The experiments showed that spatial polarity alternation, instead of the exact matching between the lattice and lamellar periods, determines directional selection. Combining a raster scan with a masked pulse lattice printed the letters UTK into the superdomain orientation. The campaign also identified practical requirements for agentic experimentation where physical verification of instrument execution, the conditions under which stored findings remain valid, validation of new observables on instrument data, and robust control protocols.

Mon 7 SeptArtificial Intelligence
The gist
Sometimes experiments need both a human and a smart assistant to explore unknown materials effectively. The authors created a method where a person and a computer agent share control of a microscope and keep detailed notes on what works and what doesn't. Using this method, they trained the system to change the internal electrical patterns of a special thin film material. They even managed to draw letters by controlling these patterns, showing precise control. This work helps automate complex experiments where the best approach is not known in advance.
Open 2609.06887v1