Paper deep dive
AgentTrails: Towards Trust and Reuse for Agentic Tasks
Eden Wu, Sonia Castelo, Yurong Liu, ClĂĄudio T. Silva, Juliana Freire
Intelligence
Status: succeeded | Model: Gemma-4-26B-A4B | Prompt: intel-v1 | Confidence: 89%
Last extracted: 7/22/2026, 3:06:44 AM
Summary
The paper introduces AgentTrails, a prototype system for agent provenance and sensemaking that converts raw LLM agent trajectories into structured provenance graphs. It addresses challenges in understanding stochastic, chronological logs by reconstructing dependency topologies between tool calls and artifacts. AgentTrails supports single-trace inspection and multi-trace comparison via a joined quotient graph that aligns recurring tools and dependency structures, enabling pattern extraction, debugging, and skill abstraction.
Entities (7)
Relation Signals (6)
AgentTrails â converts â raw trajectories
confidence 95% · AgentTrails converts raw trajectories into structured provenance graphs
AgentTrails â supports â multi-trace comparison
confidence 92% · The system supports the comparison of executions by placing multiple provenance graphs on a shared canvas
AgentTrails â uses â Joined Quotient Graph
confidence 90% · constructing a joined quotient graph that aligns recurring tools, artifacts, and dependency structures across trajectories
AgentTrails â demonstratedon â SciAgentGym
confidence 88% · We demonstrate AgentTrails on real-world agent trajectories... SciAgentGym task
AgentTrails â demonstratedon â Discovera
confidence 85% · We also demonstrate AgentTrails on Discovera traces
Activity Capsule â isusedfor â clustering
confidence 85% · Capsules are then clustered across traces using a weighted similarity over these features
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:LLM-powered agents increasingly tackle complex tasks by invoking tools, querying databases, executing code, and manipulating intermediate artifacts. These agents follow trajectories that are typically stored as chronological logs, obscuring the underlying dataflow -- the dependencies between their actions and the artifacts they create and manipulate. This limits developers' ability to understand the agents' trails, compare executions, debug failures, and re-use the computations. We present AgentTrails, a prototype system for agent provenance and sensemaking. AgentTrails converts raw trajectories into structured provenance graphs, where tool calls are modeled as computational actions and inputs and outputs as data artifacts. The system supports the comparison of executions by placing multiple provenance graphs on a shared canvas and constructing a joined quotient graph that aligns recurring tools, artifacts, and dependency structures across trajectories. On top of this representation, AgentTrails supports pattern extraction, downstream analysis, and skill abstraction. We demonstrate AgentTrails on real-world agent trajectories, showing that it reveals hidden dependencies, aligns divergent executions, and surfaces recurring tool-use patterns beyond chronological logs.
Tags
Links
- Source: https://arxiv.org/abs/2607.18816v1
- Canonical: https://arxiv.org/abs/2607.18816v1
Trouble viewing inline? Open PDF directly â
Full Text
26,397 characters extracted from source content.
Expand or collapse full text
AgentTrails: Towards Trust and Reuse for Agentic Tasks Eden Wu, Sonia Castelo, Yurong Liu, ClĂĄudio T. Silva and Juliana Freire New York University eden.wu, s.castelo, yurong.liu, csilva, juliana.freire@nyu.edu Abstract. LLM-powered agents increasingly tackle complex tasks by invoking tools, querying databases, executing code, and manipulating intermediate artifacts. These agents follow trajectories that are typically stored as chronological logs, obscuring the underlying dataflow â the dependencies between their actions and the artifacts they create and manipulate. This limits developersâ ability to understand the agentsâ trails, compare executions, debug failures, and re-use the computations. We present AgentTrails, a prototype system for agent provenance and sensemaking. AgentTrails converts raw trajectories into structured provenance graphs, where tool calls are modeled as computational actions and inputs and outputs as data artifacts. The system supports the comparison of executions by placing multiple provenance graphs on a shared canvas and constructing a joined quotient graph that aligns recurring tools, artifacts, and dependency structures across trajectories. On top of this representation, AgentTrails supports pattern extraction, downstream analysis, and skill abstraction. We demonstrate AgentTrails on real-world agent trajectories, showing that it reveals hidden dependencies, aligns divergent executions, and surfaces recurring tool-use patterns beyond chronological logs. VLDB Workshop Reference Format: VLDB 2026 Workshop: DASHSys: Systems for Data-centric Agents with Human-in-the-loop. â This work is licensed under the Creative Commons BY-NC-ND 4.0 International License. Visit https://creativecommons.org/licenses/by-nc-nd/4.0/ to view a copy of this license. For any use beyond those covered by this license, obtain permission by emailing info@vldb.org. Copyright is held by the owner/author(s). Publication rights licensed to the VLDB Endowment. Proceedings of the VLDB Endowment. ISSN 2150-8097. 1. Introduction LLM-powered agents are increasingly used in domains such as software engineering, scientific discovery, and data analysis, where they execute tasks through sequences of tool calls, external queries, code execution, and intermediate artifact manipulation (Yao et al., 2023; Wei et al., 2025). These executions produce rich trajectories containing messages, tool invocations, responses, generated files, and intermediate results that can be useful for debugging failures, analyzing tool-use behavior, comparing agents and models, and curating data for post-training. Repeated structures across successful executions may further reveal reusable skills or workflows. However, because the trajectories are stored as an unstructured, sequential log, they obscure the workflow the agent orchestrates, making it difficult to understand the underlying logic of the agentâs actions. Understanding Agent Traces: Challenges. Raw agent trajectories are typically recorded as chronological textual logs. While they preserve what happened, they are difficult to use for understanding, comparing, and improving agent behavior: P1 Raw traces are long and heterogeneous. A single trace may contain many turns, tool schemas, structured arguments, responses, and generated artifacts; comparing traces as text is tedious and offers no compact overview of tool usage or execution patterns. P2 Chronological order hides workflow structure. Later tool calls may reuse artifacts produced many steps earlier, combine outputs from multiple calls, or branch from intermediate results. Conversely, adjacent calls may be unrelated. Chronological order alone, therefore, does not reveal dependencies, artifact reuse, or workflow structure (Souza et al., 2025). P3 Agent executions are stochastic. The same task can produce different tool orders, repeated calls, or divergent branches across runs, agents, or models (Yao et al., 2025; Bjarnason et al., 2026; Chen et al., 2025; Yuan et al., 2025; Kapoor et al., 2024). This makes it difficult to compare trajectories directly as sequences. From Traces to Provenance: Challenges. A natural abstraction for agent behavior is execution provenance. However, constructing provenance representations from raw traces introduces two additional challenges: S1 Raw traces obscure dependency topology. Agent trajectories rarely contain explicit dependency edges. Recovering provenance therefore requires identifying which tool inputs depend on which prior outputs from heterogeneous evidence such as artifact identifiers, paths, query strings, and semantic references embedded in responses. Reconstruction must be efficient, auditable, and robust across diverse tools. S2 Multiple provenance graphs lack common alignment anchors. Comparing provenance graphs requires more than matching tool names or positions: traces may contain repeated calls, missing steps, or alternative branches, so similar workflow stages appear in different structural contexts. Multi-trace analysis requires abstractions that align activities by workflow role and dependency structure. Our Approach: AgentTrails.We present AgentTrails, a prototype visual analytics system for tool-calling agent provenance and sensemaking. AgentTrails provides three coordinated levels of analysis. First, to address P1 and provide a holistic entry point, AgentTrails offers an UpSet-style overview of tool usage across traces. The view shows which traces invoke which tools, how often tools are called, and how tool usage relates to trace-level metrics such as score, cost, latency, or token count. This enables users to filter, group, and select traces before inspecting detailed provenance. Second, to address P2 and S1, AgentTrails converts a selected raw trajectory into a structured provenance graph. Tool calls are represented as computational actions, while their inputs, outputs, intermediate artifacts, and returned values are represented as data artifacts. The graph is constructed from trace-derived evidence such as arguments, responses, artifact identifiers, paths, filenames, URLs, and reused semantic values. Third, to address P3 and S2, AgentTrails supports multi-trace comparison through a joined quotient graph. It abstracts tool calls into activity capsules, clusters similar capsules across traces, and aligns recurring tools, artifacts, and dependency structures while preserving trace-specific branches. AgentTrails includes an LLM-based analysis agent that inspects the reconstructed provenance graphs and joined quotient graphs to summarize observed patterns and explain selected branches. The agent supports lightweight downstream sensemaking, while the core workflow remains grounded in trace-derived structures. This paper makes three preliminary contributions: i) A provenance framing for tool-calling agent sensemaking, focused on recovering dependency topology from chronological traces. i) A trace-agnostic approach that extracts and infers dependencies from structural and semantic evidence. i) A joined provenance abstraction for aligning multiple traces and exposing shared workflows, divergent branches, and low-support behaviors. 2. Related Works Workflows and Provenance. Provenance has been studied in the context of scientific workflow systems to capture workflow evolution, execution context, and data lineage with the goal of supporting reproducibility and reuse (Freire et al., 2008). Approaches have been proposed that use visualization to make sense of provenance, including summaries of workflow collections (Koop et al., 2013) and to compare machine learning pipelines (Ono et al., 2020). These systems assume workflows are explicitly defined or recoverable from controlled environments, while tool-calling agent trajectories arrive as chronological logs with implicit dependencies and stochastic executions. AgentTrails addresses this gap by focusing on provenance reconstruction and multi-trace analysis of heterogeneous agent trajectories. Agent Trajectory Analysis, Provenance, and Reuse. Recent work has explored agent trajectories as objects of analysis. PROV-AGENT models provenance for agentic workflows by instrumenting the running framework, one graph per run (Souza et al., 2025); CHIEF, TRAIL, and AgenTracer transform flat logs into structured representations for debugging (Wang et al., 2026; Deshpande et al., 2025; Zhang et al., 2026); and AgentLens, Agent Trajectory Explorer, SeaView, and Graphectory support visualization and process-level analysis of agent behavior (Lu et al., 2025; Desmond et al., 2025; Bula et al., 2025; Liu et al., 2026). These efforts largely focus on single-run inspection or domain-specific settings. In contrast, AgentTrails reconstructs provenance post-hoc from raw logs without instrumentation andâuniquelyâaligns multiple executions through a joined graph, supporting downstream pattern extraction and sensemaking. On the reuse front, ExpeL, Reflexion, and Trace2Skill use prior trajectories for workflow induction, reflection, or skill extraction (Zhao et al., 2024; Shinn et al., 2023; Ni et al., 2026). AgentTrails is complementary: rather than reusing trajectories as flat sequences, it exposes their internal dependency structure, enabling identification of reusable motifs while pruning redundant tool calls. 3. System Overview Figure 1. AgentTrails abstracts raw traces into chronological workflows that expose the sequence of actions, then reconstructs a provenance graph that represents actions as activities and artifacts as entities. For multi-trace analysis, AgentTrails aligns similar activities across provenance graphs into a single joined provenance graph, enabling downstream tasks. AgentTrails targets raw agent traces stored as long, heterogeneous event logs. To address P1, it normalizes each trace into a sequence of actions while preserving evidence fields such as arguments, responses, artifact identifiers, paths, URLs, returned objects, and reused semantic values. This design does not assume a fixed agent architecture or tool schema, allowing AgentTrails to support traces from heterogeneous frameworks and domains. Trace Overview with Tool Coverage. The first stage provides a global, tool-agnostic overview of selected traces. For a trace Tr=âšcr,1,âŠ,cr,nrâ©T_r= c_r,1,âŠ,c_r,n_r , where cr,ic_r,i denotes the i-th tool call of trace r together with its arguments and response, and tool set U, AgentTrails builds a coverage matrix where each entry Mr,u=|i:toolâ(cr,i)=u|M_r,u=|\i:tool(c_r,i)=u\| counts how many times tool u is invoked in trace r. Rows encode traces, columns encode tools, and cell values encode repeated calls. The matrix is shown as an UpSet-style overview (Fig. 4A), with a top bar chart for total tool frequency or Shapley-style tool impact, and a side rail for trace-level metrics such as score, cost, latency, or token count. This view does not infer dependencies; it supports holistic filtering, grouping, and trace selection before graph-level analysis. Provenance Graph Construction. To address P2 and S1, AgentTrails converts a selected chronological trace into a provenance graph that makes producer-consumer dependencies explicit (Fig. 1). For a trace T, the graph is GT=(ATâȘET,RT)G_T=(A_TâȘ E_T,\;R_T), where ATA_T contains tool-call activities and ETE_T contains recovered entities such as inputs, outputs, artifacts, and returned values. The edge set RTâ(ATĂET)âȘ(ETĂAT)R_T (A_TĂ E_T)âȘ(E_TĂ A_T) keeps the graph bipartite: generatedBy edges are always emitted from each activity to its outputs, while usedBy and weaker informedBy edgesâthe reconstruction targetsâlink entities to later activities that consume them. The key difficulty is that raw traces rarely provide dependency edges directly. AgentTrails therefore treats graph construction as evidence-based reconstruction. It first creates a deterministic skeleton from exact evidence: output entities are extracted from response metadata such as identifiers, paths, filenames, URLs, names, or returned objects. A dependency is added when a later call explicitly references an earlier entity: ejâaiifK(ej)â©refs(ci.args)â â ,j<i,e_jâ a_i K(e_j) (c_i.args)â ,\;j<i, where Kâ(ej)K(e_j) denotes the recovered keys for entity eje_jâidentifying strings from its producing response, e.g., a storage id, filename, or URL. This step captures high-precision artifact reuse while enforcing temporal validity, keeping the graph acyclic: agent loops surface as repeated activities, which the joined graph aggregates with per-trace multiplicity. AgentTrails also extracts weaker semantic evidence from shared values, query terms, table columns, domain objects, or tokens that appear in earlier responses and later arguments. These matches are stored as dependency candidates rather than asserted as ground truth. A constrained LLM refinement step receives the draft graph and candidate relations, then returns graph patch operations. Only patches that preserve valid node references, temporal order, and the activity/entity schema are accepted. This design keeps the provenance graph auditable: exact edges, semantic candidates, and LLM-refined edits remain distinguishable. Two questions remain for scaling this methodology: provenance quality needs gold dependency benchmarks, and asking LLMs to infer dependencies directly from full traces does not scale. AgentTrails therefore retrieves likely candidates firstâvia indexed artifact keys, value sketches, schema-aware blocking, and semantic matchingâand uses an LLM only to refine or explain ambiguous ones. As a first step, we hand-annotated 10 traces with 234 gold dependency edges; preliminary results are promising and a full staged evaluation is underway. Figure 2. AgentTrails aligns similar activities across multiple provenance graphs into clusters (left), then merges each cluster into a joined anchor (right). Multi-Trace Provenance Graph. To address P3 and S2, AgentTrails constructs a joined provenance graph over selected traces. This stage targets the alignment problem: different traces may solve the same task with different tool orders, repeated calls, missing steps, or alternative branches. Thus, comparing traces by raw sequence or exact tool name is insufficient. As shown in Fig. 2, AgentTrails first abstracts each activity into an activity capsule, which compactly describes the activityâs tool identity, input/output structure, local graph context, and upstream root lineage. Capsules are then clustered across traces using a weighted similarity over these features: Sâ(Își,Îșj)=âmwmâsmâ(Își,Îșj),S( _i, _j)= _mw_m\,s_m( _i, _j), where Își,Îșj _i, _j are capsules and each smâ[0,1]s_mâ[0,1] compares one featureâtool tokens, input/output structure, graph context, root lineage, or evidence keywordsâvia Jaccard or cosine similarity, with weights wmw_m summing to one. Each cluster becomes a joined activity node. Original provenance edges are then remapped based on the cluster assignments: if two original edges connect activities assigned to the same source and target clusters, they are aggregated into one joined edge. Joined nodes and edges store supporting traces, support counts, per-trace multiplicity, representative members, and optional score summaries. High-support structures reveal recurring workflow motifs, while low-support structures expose trace-specific branches, redundant operations, or anomalous paths. The joined graph therefore summarizes a set of runs at the provenance level rather than as an aggregate tool sequence. This abstraction raises a follow-up question: joined provenance construction can be designed in many ways. Prior work on workflow analogies suggests that graphs may be aligned by operators, data dependencies, execution roles, or higher-level workflow intent (Scheidegger et al., 2007). AgentTrails takes a first step by clustering activity capsules into joined anchors, but future work should explore alternative abstractions and scalable candidate alignment through blocking, retrieval, and role-aware graph features. Interactive Visualization, Filtering, and Copilot. AgentTrails provides coordinated views for overview, inspection, and comparison. The UpSet view supports trace selection, metadata grouping, score comparison, and tool-usage analysis. The single-trace view exposes recovered activities, entities, arguments, responses, and edge evidence. The joined view compares multiple traces, using node size for activity support, edge width for dependency support, and color to preserve trace membership. Users can fade or prune nodes and edges by support or score, enabling them to identify dominant workflows, low-support anomalies, and differences between high- and low-scoring traces. In addition to these views, AgentTrails includes a provenance copilot for lightweight interactive sensemaking. Given the current selection, the copilot can inspect graph structures, retrieve tool inputs and outputs, expand joined nodes to their trace members, and summarize visible patterns. The copilot does not define provenance; it helps users interpret trace-derived, auditable graphs. 4. Usage Scenarios Inspecting a SciAgentGym Physics Trace. We first demonstrate AgentTrails on a SciAgentGym task. SciAgentGym evaluates multi-step scientific tool use by LLM agents and provides more than 1,780 tools across Physics, Chemistry, Materials Science, Life Science, and Astronomy (Shen et al., 2026). We analyze task 27 from Physics, which asks for the hyperfine transition frequency of a hypothetical ground-state hydrogen atom with electron spin 32 32. The raw trace contains structured tool calls, numerical outputs, and generated visualizations, making the scientific workflow difficult to verify from text or chronological order alone. After loading the trace into AgentTrails, the reconstructed provenance graph exposes a clear fan-in/fan-out computation pattern (Fig. 3). Independent quantities-physical constants, electron and proton g-factors, and the wavefunction value at the nucleus-converge into the calculation of the hyperfine constant A. This intermediate result then branches into two energy-shift calculations for the F=1F=1 and F=2F=2 states. These shifts, together with the angular-momentum states, support the final transition-frequency calculation and the visualization outputs. This dependency structure is not apparent from the raw sequential trace, where related calls may be separated and where the scientific role of each intermediate output is buried in tool responses. Comparing the reconstructed graph with the benchmarkâs expected tool use shows that the trace covers the required scientific steps. More importantly, the provenance graph reveals how those steps are connected: which upstream quantities feed the hyperfine constant, how A is reused in multiple downstream computations, and how the final frequency is grounded in earlier tool results. This scenario demonstrates how AgentTrails supports single-trace validation and scientific workflow inspection, rather than benchmarking the underlying model. Figure 3. SciAgentGym usage scenario. AgentTrails exposes the dependency structure hidden in a raw physics trace. Figure 4. Discovera usage scenario. AgentTrails helps users move from trace-level overview (A), to single-trace provenance inspection (B), to joined multi-trace comparison (C). Interface screenshot showing a trace overview, a single-trace provenance graph, and a joined provenance graph for comparing Discovera runs. Discovera Gene-Set Exploration. We also demonstrate AgentTrails on Discovera traces for Signature-to-Mechanisms analysis. Discovera is a workflow-aligned scientific agent in which the LLM orchestrates deterministic tools, stores intermediate artifacts, and grounds reasoning in tool outputs (Pinto Veizaga et al., 2026). We analyze task s2m_task_016. In the UpSet overview, we group runs by task ID and rank traces by score (Fig. 4A). The top trace uses fewer tool calls than several alternatives, motivating provenance-level inspection. Opening the top trace reveals a compact workflow: two Wang 2025 Cancer Cell datasets are ingested with csv_record, filtered by FDR < 0.05, projected through csv_select, joined with csv_join, refined to remove global differentially expressed genes, and analyzed with ora_pipe. The provenance graph exposes this as a coherent path from data ingestion to enrichment (Fig. 4B). We then select the next two ranked traces and construct a joined provenance graph. Filtering the joined view by score highlights the high-scoring execution as a direct, well-supported dataflow, while lower-scoring traces contain branches and detours away from the core data-processing path (Fig. 4C). Through node support, edge support, and trace membership encodings, AgentTrails helps distinguish shared workflow structure from trace-specific deviations: the lower-scoring runs introduce extra calls off the dominant provenance pathâconcrete candidates for pruning or prompt fixes. 5. Conclusion AgentTrails is preliminary work toward a principled infrastructure for agent provenance and sensemaking. We presented a provenance framing for tool-calling agent traces, evidence-based dependency-graph reconstruction from chronological logs, and a joined quotient graph for aligning and comparing executions. Usage scenarios on SciAgentGym and Discovera traces demonstrate that the system surfaces dependency structure and workflow patterns that are not recoverable from raw sequential logs. Several important questions remain open: provenance quality lacks ground-truth benchmarks; the capsule similarity function and its weights require principled tuning and evaluation; and scalability to very long traces or large trace collections has not been assessed. We view AgentTrails as a foundation for future work on agent debugging, workflow reuse, and skill extraction grounded in auditable, trace-derived provenance. Acknowledgements. This work was supported in part by DARPA ASKEM (HR0011262087), ARPA-H BDF, and NSF (OAC-2411221). The views, opinions, and findings expressed are those of the authors and should not be interpreted as representing the views or policies of these agencies. References B. H. Bjarnason, A. Silva, and M. Monperrus (2026) On randomness in agentic evals. In ICLR 2026 Workshop on Agents in the Wild, Cited by: §1. T. Bula, S. Pujar, L. Buratti, et al. (2025) SeaView: software engineering agent visual interface for enhanced workflow. External Links: 2504.08696 Cited by: §2. Y. Chen, J. Benton, A. Radhakrishnan, et al. (2025) Reasoning models donât always say what they think. External Links: 2505.05410 Cited by: §1. D. Deshpande, V. Gangal, H. Mehta, et al. (2025) TRAIL: trace reasoning and agentic issue localization. External Links: 2505.08638 Cited by: §2. M. Desmond, J. Y. Lee, I. Ibrahim, et al. (2025) Agent trajectory explorer: visualizing and providing feedback on agent trajectories. Proc. AAAI Conf. Artif. Intell. 39 (28). External Links: Document Cited by: §2. J. Freire, D. Koop, E. Santos, and C. T. Silva (2008) Provenance for Computational Tasks: A Survey. Computing in Science and Engineering 10 (3), p. 11â21. External Links: ISSN 1521-9615 Cited by: §2. S. Kapoor, B. Stroebl, Z. S. Siegel, et al. (2024) AI agents that matter. Trans. Mach. Learn. Res. 2025. Cited by: §1. D. Koop, J. Freire, and C. T. Silva (2013) Visual summaries for graph collections. In IEEE PacificVis, External Links: Document Cited by: §2. S. Liu, Y. Chen, R. Krishna, et al. (2026) Process-centric analysis of agentic software systems. Proc. ACM Program. Lang. 10 (OOPSLA1). External Links: Document Cited by: §2. J. Lu, B. Pan, et al. (2025) AgentLens: visual analysis for agent behaviors in llm-based autonomous systems. IEEE Trans. Vis. Comput. Graph. 31 (8). Cited by: §2. J. Ni, Y. Liu, X. Liu, et al. (2026) Trace2Skill: distill trajectory-local lessons into transferable agent skills. External Links: 2603.25158 Cited by: §2. J. P. Ono, S. Castelo, R. LĂłpez, et al. (2020) PipelineProfiler: a visual analytics tool for the exploration of automl pipelines. IEEE Trans. Vis. Comput. Graph. 27. External Links: Link Cited by: §2. D. Pinto Veizaga, A. Santos, E. Wu, et al. (2026) Discovera: a workflow-aligned ai agent for signature-to-mechanisms analysis. Note: NE Agents Day 2026 Workshop Submission, Submission 18 Cited by: §4. C. Scheidegger, H. Vo, D. Koop, et al. (2007) Querying and creating visualizations by analogy. IEEE Trans. Vis. Comput. Graph. 13 (6). External Links: Document Cited by: §3. Y. Shen, Y. Yang, Z. Xi, B. Hu, et al. (2026) SciAgentGym: benchmarking multi-step scientific tool-use in LLM agents. In ICML, Cited by: §4. N. Shinn, F. Cassano, A. Gopinath, et al. (2023) Reflexion: language agents with verbal reinforcement learning. In NeurIPS, External Links: 2303.11366 Cited by: §2. R. Souza, A. Gueroudji, S. DeWitt, et al. (2025) PROV-agent: unified provenance for tracking ai agent interactions in agentic workflows. In 2025 IEEE International Conference on eScience (eScience), Vol. , p. 467â473. Cited by: §1, §2. Y. Wang, W. Wu, J. Wang, et al. (2026) From flat logs to causal graphs: hierarchical failure attribution for llm-based multi-agent systems. External Links: 2602.23701 Cited by: §2. J. Wei, Y. Yang, X. Zhang, et al. (2025) From ai for science to agentic science: a survey on autonomous scientific discovery. External Links: 2508.14111 Cited by: §1. S. Yao, N. Shinn, P. Razavi, et al. (2025) Ï-Bench: a benchmark for tool-agent-user interaction in real-world domains. In ICLR, Cited by: §1. S. Yao, J. Zhao, D. Yu, N. Du, I. Shafran, et al. (2023) ReAct: synergizing reasoning and acting in language models. In ICLR, Cited by: §1. J. Yuan, H. Li, X. Ding, et al. (2025) Understanding and mitigating numerical sources of nondeterminism in LLM inference. In NeurIPS, Cited by: §1. G. Zhang, J. Wang, J. Chen, W. Zhou, et al. (2026) AgenTracer: who is inducing failure in the LLM agentic systems?. In ICLR, Cited by: §2. A. Zhao, D. Huang, Q. Xu, et al. (2024) ExpeL: llm agents are experiential learners. In AAAI, External Links: Document Cited by: §2.