JA EN
LearnAgents
·★ MEMBER·PAPER·11 min read

Paper Explained: What Makes Good Agentic Data? The ACE Lens

A survey that recasts agentic training data as a four-part object (environment, task, interaction, verifier) and reframes generation as constrained distribution design: admit on Accuracy, place mass by Complexity, spread coverage with divErsity.

ModalitytextTaskagents

What Makes Good Agentic Data? An ACE Lens on Data Generation for LLM Agents

Primary source — what this article is built on

undefined2026-08-27undefined2026-09-03same month

What Makes Good Agentic Data? An ACE Lens on Data Generation for LLM AgentsXingshan Zeng, Zishan Xu, Boju Zhang et al. · 2026-08-27 · v1arXiv:2608.27260Paper page·PDF
undefined

LLM agents increasingly rely on generated interaction data to learn how to interact with external environments. Agentic data generation must maintain consistency among environments, tasks, interactions, and success signals while producing experience that is useful rather than merely abundant. Existing work spans many agent domains, but domain-centered organization and heterogeneous evaluation often obscure common generation mechanisms and conflate candidate construction with verification and selection. This work develops a two-level framework for the field. First, we represent agentic data as a common factorized object $(E,q,τ,v)$, comprising an environment specification, task signal, interaction realization, and optional verifier. We organize generation paradigms by their primary anchor and dependency structure. Second, we formulate generation as constrained distribution design through the Accuracy-Complexity-divErsity (ACE) lens. Accuracy establishes the feasible support of grounded and internally consistent data. Within this support, Complexity places learning mass relative to the capability of a declared learner and execution configuration, while divErsity controls coverage and redundancy of data. Using this framework, we explore how prior work verifies generated experience, constructs and calibrates difficulty, and expands behavioral coverage. The literature reveals a shift toward execution-grounded accuracy, learner-relative complexity, and diversity beyond surface variation or dataset size. We further discuss broader directions and emerging trends in agentic data generation through the ACE lens, including their implications for scaling, data sources, training regimes and adaptive learning. Overall, the central challenge is not simply to generate more data, but to continually allocate valid, informative, and non-redundant experience as agents and environments evolve.


The problem the paper takes on

The original title is "What Makes Good Agentic Data? An ACE Lens on Data Generation for LLM Agents" (arXiv:2608.27260, 27 August 2026). It is a survey from Huawei, Shanghai Jiao Tong University and collaborators — not a paper that runs new experiments, but one that reorganises the field of agentic data generation itself.

The abstract argues as follows. LLM agents increasingly learn how to deal with external environments from generated interaction data. That generation has to keep environments, tasks, interactions and success signals mutually consistent while producing experience that is useful rather than merely abundant. Existing work, though, is organised by domain and evaluated heterogeneously, which hides the shared generation mechanisms and blurs the line between constructing candidates and verifying or selecting them. The paper therefore proposes a two-level framework. First, it represents agentic data as a common factorized object (E,q,τ,v)(E,q,\tau,v) and classifies pipelines by which factor anchors the rest. Second, it formulates generation as constrained distribution design through the Accuracy–Complexity–divErsity (ACE) lens: accuracy fixes the feasible support of valid data; within that support, complexity decides where learning mass sits relative to a declared learner; and diversity controls coverage and redundancy.

An analogy: writing course material

Teaching an agent is like writing a problem set — except four things have to be in place at once. A lab (a place with tools, state and rules where you can actually do something), a task that is meaningful and achievable inside that lab, a worked solution that really runs there, and a marking scheme.

Break any one of them and the whole thing collapses. A task calling for a reagent that does not exist; an experiment that produces something else when you follow the steps; a marking scheme that accepts a wrong answer. The awkward part is that every one of these can come out looking perfectly plausible. The paper keeps returning to this point: individually reasonable components can drift apart when they are generated separately (§4.1).

The four-part data object

The paper models interaction as a POMDP (partially observable Markov decision process) (§2.1). The policy acts on the observable history, not on latent state.

ht=(o0,a1,o1,,at1,ot1),atπθ(ht)h_{t}=(o_{0},a_{1},o_{1},\ldots,a_{t-1},o_{t-1}),\qquad a_{t}\sim\pi_{\theta}(\cdot\mid h_{t})
(1)

In words: the next action ata_t is chosen using only hth_t, the record of what the agent has seen and done so far. The environment may keep hidden state of its own, and that split between latent state and observation is exactly what separates agentic data from ordinary instruction-tuning data.

On that basis, the common form of a data point is (§2.3–2.4):

d=(E,q,τ,v)d=(E,q,\tau,v)
(2)

EE is the environment specification (tool schemas, database or simulator state, transition rules, permissions, and the observation interface that decides how much is exposed). qq is the task signal — what should be achieved, under which constraints. τ\tau is the realized interaction, the sequence of actions and observations. vv is an optional verifier: the success check or reward. For SFT, storing EE and a fixed τ\tau is usually enough; for RL and environment-based evaluation, EE must be able to support fresh interactions.

The factorization pays off because it makes the targets of ACE explicit. Accuracy is about consistency between the four factors, complexity about the burden their configuration induces, diversity about their non-redundant coverage.

ACE as constrained distribution design

The central formulation is §3.4. Of a generated batch, the subset that passes checks on environment consistency, task feasibility and trajectory validity is written BA\mathcal{B}_A. The paper's position is that accuracy is an admission condition, not a benefit other properties can compensate for. Difficult or unusual does not get broken data through the gate.

Within that admitted set, complexity is calibrated rather than maximised. The paper writes Cz(d)C_z(d) for the difficulty of an instance under a declared learner and execution configuration zz, where zz covers the model, the scaffold, the available tools, the verifier and the inference budget. Difficulty, in other words, is not a property of the data alone. Diversity D(BA)D(\mathcal{B}_A) is defined at the level of a batch, not a sample.

The three are asymmetric, and that is the point (§1). Difficulty or variation cannot make up for invalidity. Data that is uniformly valid but trivial or repetitive, meanwhile, adds little learning value. Hence the ordering: admit first, then place, then spread.

One more caveat: ACE is not a partition of the literature into three method families but a lens that views the same pipeline from three directions (§3.4). A verified blueprint can raise accuracy, lengthen the dependency structure and enable controlled recombination all at once; a failure-driven generator can target learner-relative complexity while narrowing domain coverage. Expect one mechanism to move several axes at the same time.

FIG 1The second half of ACE is about where to place mass over the valid support. Sharpen and you concentrate near the learner's frontier (complexity); flatten and you cover broadly (diversity)

The dominant ordering is environment → task → trajectory (§3.1).

What's behind this

§

Members-only from here

371 walkthroughs, 26 textbook chapters, 48 student units and 6 close readings — all included for $4.99/mo, with three new explainers every day. Cancel any time; access runs to the end of the period.

Already a member? Sign in to keep reading

References

  1. Xingshan Zeng, Zishan Xu, Boju Zhang, Yuzhou Wu et al.. (2026-08-27) What Makes Good Agentic Data? An ACE Lens on Data Generation for LLM Agents. arXiv:2608.27260Paper page·PDF

This article is written from the source paper above. Where they differ, the original is authoritative.

Comments

Sign in to comment