JA EN
LearnLarge Language Models
·★ MEMBER·PAPER·9 min read

Paper Explained: Agentic Artifact Creation — Where Generation Ends and Construction Begins

A survey that reorganizes 259 works around a single unit: the delivered artifact. It defines agentic creation through state, edits, and verification, then works through six artifact families, three evaluation targets, four principles, and six open problems — from first principles.

ModalitytextTaskevaluation

Agentic Artifact Creation: Systems, Evaluation, Principles, and Opportunities

Primary source — what this article is built on

undefined2026-08-28undefined2026-09-01same month

Agentic Artifact Creation: SystemsTianfu Wang, Zhezheng Hao, Xilin Xia et al. · 2026-08-28 · v1"arXiv:2608.28122Paper page·PDF
EvaluationEvaluation
PrinciplesPrinciples
https://arxiv.org/abs/2608.28122"and Opportunities
undefined

Generative models can turn natural-language prompts into images, text, code, and other content, lowering the cost of producing drafts and components. Their practical impact increasingly depends on whether those pieces can become complete, dependable deliverables. This survey examines agentic artifact creation, which we define as stateful construction in which an AI system materially constructs or revises a deliverable and intermediate observations redirect later work. Functionally, the process links an operational representation of the artifact, a construction policy, and runtime verification whose feedback can redirect later actions. We reviewed 259 works available through August 20, 2026: 230 systems meeting this definition and 29 benchmarks of agentic artifact construction. We compare six artifact families, then analyze application settings and evaluation practice as separate dimensions. Across families, construction challenges reflect not only modality but also how tightly decisions are coupled and whether failures become visible while they remain repairable. Decomposition can reduce local complexity while increasing coordination and reassembly costs. Learned judges may add little independent evidence when they share the generator's preferences or blind spots. We formulate principles for keeping commitments and responsibility explicit, turning feedback into targeted repair, and revalidating affected state after change. We also identify opportunities for sustaining coherent, accountable control as artifacts, creator intent, and construction systems evolve. A curated paper list is available at https://github.com/GeminiLight/awesome-agentic-artifact-creation.


The cliff between a draft and a deliverable

One line of prompt gets you an image, an essay, or a working function. So why is "just let the AI handle it" still hard in production? The paper names the boundary precisely: generative models made the parts cheap, not the deliverable (§1.1).

The running example is Paper2Poster, which turns a paper into a scientific poster. A poster has to preserve the source content, fit a fixed page, and actually communicate — all at once. Worse, those requirements interfere. Add text and it no longer fits; cut text and the content thins out. A plausible-looking image, or a single quality score, is not evidence that the poster is ready to ship (§1.1).

The harder problem is when failures become visible. In video you find out after assembly; in a game, after someone plays it. By the time you see the symptom, you often cannot say which decision caused it, so you regenerate everything. The paper calls this cluster failure propagation, weak localization, and broad regeneration (Figure 1).

The paper's definition

The definition is unusually austere (§3.1). An episode counts as Agentic Artifact Creation only when all three hold:

  1. The AI system materially constructs or revises the deliverable itself (systems that only evaluate or consume artifacts are out)
  2. It carries artifact or process state across construction decisions
  3. At least one intermediate observation redirects later work

Notably, the number of agents and the number of model calls do not enter the definition (§2.2). Conversely, a pipeline whose observations never change what comes next is excluded no matter how many stages it has. That boundary doubles as the screening rule for the review: searching arXiv, Google Scholar, Semantic Scholar, the ACM DL, and IEEE Xplore from January 2023 through August 20, 2026 left 259 works — 230 systems and 29 benchmarks (§1.3).

Three roles, one loop

The backbone of the survey is a split of that definition into three functions (§3.2). It is a division of roles, not of implementations.

The Operational Representation holds the current artifact state and the edits you can apply to it.

Rt+1=U(Rt,at)R_{t+1} = U(R_t, a_t)
(1)

Here RtR_t is the artifact-side state at step tt — a draft, an SVG tree, a repository — while ata_t is the chosen action and UU is the update. Put in words, the line says only this: apply one edit to the current form and you get the next form. Shrinking one figure gives you a different poster — obvious enough. Writing it as state plus operation earns its keep later, when something breaks and you need a place inside the state to trace the breakage back to.

The Construction Policy picks the next move.

at=π(T,Rt,ft)a_t = \pi(T, R_t, f_t)
(2)

TT is the task specification and ftf_t is the feedback in hand. What the line is saying, in words, is that the next move depends on exactly three things: the task, the current form, and what the last step revealed. Read the other way it bites: a loop running with ftf_t perpetually empty never uses the third argument, so it fails the definition's third condition and falls outside the survey. That choice includes what to revise, who should do it, and whether to stop.

Runtime Verification turns the result into the next feedback.

ft+1=V(T,Rt+1,ot+1)f_{t+1} = V(T, R_{t+1}, o_{t+1})
(3)

ot+1o_{t+1} is an observation of the updated state and VV checks it against the acceptance criteria — which says that this step looks at what the change did and restates it in terms the next move can act on: whether it passed, and if not, what failed and where. When VV emits only a number, π\pi has nothing to aim a repair at. On acceptance the artifact is delivered; otherwise feedback returns to the policy. Only when these three line up do the paper's affordances — composability, traceability, revisability — appear (§1.2).

The longer the horizon, the faster the space of states you would have to check grows. That is why sampled playthroughs and simulation rollouts "cover only part of the relevant state space" (§4.6).

FIG 1The states you would have to check grow sharply with the behavioral horizon. Sampled executions cover only a sliver of them

Six artifact families

The survey groups the literature not by model or task but by the form that is independently accepted (§4): textual, 2D visual, audio, video, spatial (3D/CAD), and behavioral (software and simulators). These expand into 16 profiles, with 251 records assigned (Figure 2).

The interesting claim is that difficulty is not driven by modality. Two other axes do the work: how tightly decisions are coupled, and whether failures become visible while they are still repairable (§4 closing). Text can be read directly, yet a broken setup surfaces many paragraphs later. Video only reveals itself on playback. Software reveals itself on execution, but only along the paths that were exercised. Across families the question is identical: can an observed failure be traced back to a unit of the representation and repaired there?

Worth noting: no system meeting the definition was found for spoken audio at all (§4.3.2). Podcast-style pipelines come close but do not maintain an editable audio artifact.

This is the chapter with the most operational value. The paper separates evaluation targets and insists they are not interchangeable (§6.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. Tianfu Wang, Zhezheng Hao, Xilin Xia, Lixin Liu et al.. (2026-08-28) Agentic Artifact Creation: Systems. "arXiv:2608.28122Paper page·PDF
  2. Evaluation. Evaluation
  3. Principles. Principles
  4. https://arxiv.org/abs/2608.28122". and Opportunities

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

Comments

Sign in to comment