The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

A new verifiable simulated marketplace lets buyer and merchant AI agents transact under an auditable protocol; benchmark results across ten models (capability-track means ~66–86%, large-catalog ~56–91%) reveal process-level errors that final-state checks can miss, highlighting bottlenecks exposed by large catalogs.

Agentic Commerce World: An Auditable and Verifiable Environment for Vibe Commerce
Shicheng Fan, Mingdai Yang, Duohao Wang, Canyu Chen, Yongfeng Zhang, Hua Wei, Manling Li, Julian McAuley, Kun Zhang, Philip S. Yu, Kejing Yu, Zhiwei Liu · August 03, 2026
arxiv descriptive medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Shicheng Fan unresolved corpus identity
  2. Mingdai Yang unresolved corpus identity
  3. Duohao Wang unresolved corpus identity
  4. Canyu Chen unresolved corpus identity
  5. Yongfeng Zhang unresolved corpus identity
  6. Hua Wei unresolved corpus identity
  7. Manling Li unresolved corpus identity
  8. Julian McAuley unresolved corpus identity
  9. Kun Zhang unresolved corpus identity
  10. Philip S. Yu unresolved corpus identity
  11. Kejing Yu unresolved corpus identity
  12. Zhiwei Liu unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Shichen Fan provider ID
  2. Mingdai Yang provider ID
  3. Duo Wang provider ID
  4. Canyu Chen provider ID
  5. Yongfeng Zhang provider ID
  6. Hua Wei provider ID
  7. Manling Li provider ID
  8. Julian McAuley provider ID
  9. Kun Zhang provider ID
  10. Philip S. Yu provider ID
  11. Kejing Yu provider ID
  12. Zhiwei Liu provider ID
ACWORLD and the Vibe Commerce Protocol provide a verifiable, auditable simulated marketplace and benchmark to evaluate independently controlled buyer and merchant AI agents, showing substantial variation in model capabilities across 200 capability-focused and 60 large-catalog tasks.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

In vibe coding, people describe software in natural language and delegate implementation to AI agents. By analogy, vibe commerce allows people to express buying or selling goals in natural language and delegate the corresponding tasks to agents. Commerce, however, requires independently controlled Buyer and Merchant agents to interact in a shared market while preserving their private objectives and distinct authority. We introduce Agentic Commerce World (ACWorld), an environment for evaluating such agents across ongoing transactions. Through its Vibe Commerce Protocol (VCP), ACWorld validates agent actions before updating shared transaction state and records the resulting interactions, making agent behavior auditable and evaluation reproducible. The ACWorld Benchmark contains a 200-task capability-coverage track and a 60-task large-catalog track that searches 785,022 transactable listings. Across ten models, mean scores range from 65.9% to 85.6% and from 56.1% to 91.4%, respectively. Our analysis shows that process-level evidence is necessary: final state alone can miss evaluated errors, incomplete trajectories still retain useful process signals, and large-catalog tasks expose bottlenecks across stages.

Summary

Main Finding

Agentic Commerce World (ACWORLD) is a stateful, auditable environment and benchmark that evaluates independently controlled Buyer and Merchant agents interacting in a shared market under a verification protocol (Vibe Commerce Protocol, VCP). By separating agent decisions from the authority to change shared state and recording validated commits with evidence, ACWORLD makes agent behavior reconstructable and rescoring reproducible. Empirical evaluation across two complementary tracks (capability-coverage and large-catalog) shows substantial variation across models (capability-coverage means ~65.9–85.6%; large-catalog means ~56.1–91.4%), and highlights that process-level evidence matters: final-world state alone can mask errors, intermediate execution traces provide useful learning signals, and large catalogs expose stage-specific bottlenecks (search, evidence, validation, execution).

Key Points

  • Vibe commerce: people express buying/selling goals in natural language and delegate execution to Buyer and Merchant agents that retain private objectives and authority.
  • Vibe Commerce Protocol (VCP): binds each proposed action to an authenticated actor and enforces four invariants:
  • Each action is attributed to an authenticated actor.
  • Messages cannot directly change World state.
  • Every commit cites an accepted Commerce Intelligence Platform (CIP) validation.
  • Reapplying ordered commits from the same initial state reproduces the final state and event digest.
  • Architecture: Buyer agents, Merchant agents, Commerce Intelligence Platform (policy/validation layer), and a deterministic World (W_{j+1} = F(W_j, u_j)). Agents propose actions via VCP; CIP validates; World commits authorized effects.
  • Execution traces: ACWORLD stores, for each decision t, a linked record Lt = (actor, decision, validation result, execution evidence, ∆World). Traces can be reconstructed and rescored deterministically.
  • Scoring: Tasks declare r boolean/fractional predicates with weights; verified predicate values c_i ∈ [0,1] are aggregated as weighted average S = (Σ w_i c_i) / (Σ w_i). Full credit requires all required predicates; partial credit captures intermediate verified progress.
  • Benchmark structure:
    • Capability-coverage track: 200 tasks (116 Buyer, 84 Merchant), 10 families, 80 capabilities; uses 1,082 product snapshots.
    • Large-catalog track: 60 tasks (45 Buyer, 15 Merchant), 4 families, 18 capabilities; searches 785,022 transactable listings drawn from ~791k source records.
  • Interfaces/tools: role-specific skill manifests (Buyer 11, Merchant 25), shared typed business tools (55) and read-only World queries (18).
  • Empirical results (high-level):
    • Top-performing models reach ~83–86% on capability-coverage; large-catalog results vary more, with some models >90% on the track.
    • Main sources of lost credit in capability-coverage runs without full credit are often evidence (grounding), choice (poor selection), and execution/authority (invalid or unauthorized actions).
  • Key empirical observation: 99 of 861 runs that did not get full credit nonetheless reached a final World state also produced by a full-credit execution—i.e., matching final state can hide intermediate protocol violations or missing evidence.

Data & Methods

  • Environment:
    • ACWORLD implements VCP and provides tools for search, offers, evaluation, settlement, evidence collection, and governance.
    • World persists inventory, orders, payments, trust records, receipts; commits are atomic and validated.
  • Data:
    • Capability-coverage uses curated snapshots (1,082) assembled into 200 executable test cases across 80 capabilities.
    • Large-catalog uses a read-only catalog of 785,022 transactable listings (from ~791,431 public records), enabling global-oracle checks for search tasks.
  • Task construction:
    • Families cover transaction lifecycle and adjacent behaviors (Discovery, Grounding, Preference, Negotiation, Multi-item, Inventory/Lifecycle, Governance, Adversarial, Timing, etc.).
    • Each capability is converted into multiple executable cases; reference policies constrained to role-visible info are used to guarantee solvability and to define expected behavior for deterministic rescoring.
  • Evaluation protocol:
    • Agents receive goals and role-limited observations, produce VCP messages/actions.
    • CIP validates messages; approved events are committed to World and recorded with evidence.
    • Evaluator reconstructs World from initial state and ordered commits to verify event digests and apply predicate checks.
    • Aggregated predicate score S is reported per task; both full- and partial-credit signals are used.
  • Models evaluated: ten models (examples in paper: GPT-5.6 Sol, Gemini 3.6 Flash, Gemini 3.5 Flash, Kimi K3, GPT-5.6 Terra, Claude Sonnet 5, Qwen3.5 Plus, etc.). Reported ranges: capability-coverage mean scores 65.9%–85.6%; large-catalog 56.1%–91.4% (paper gives precise per-model means and dominant failure sources).
  • Reproducibility: commits and evidence permit deterministic reconstruction and rescoring without re-running the agents.

Implications for AI Economics

  • Measuring agent-level market interactions:
    • ACWORLD provides a principled way to attribute state changes to agents and to audit multi-agent transactions. This enables rigorous measurement of agent-level behaviors (pricing strategies, bargaining dynamics, information disclosure) in controlled experimental markets.
  • Studying private information and strategic behavior:
    • The setting models bilateral bargaining with private ceilings/floors and repeated interactions across a market. Researchers can study signaling, strategic misreporting, bargaining equilibria, and welfare consequences when agents follow ML-based policies.
  • Market design and protocol effects:
    • By separating decision from commit and validating through CIP, ACWORLD lets economists test how different protocol rules (validation strictness, evidence requirements, settlement timing, fee structures) affect outcomes: efficiency, latency, manipulation risk, and incentives to reveal truthful information.
  • Auditability and accountability in automated commerce:
    • The reconstructable trace model supports post hoc audit and liability assignment—important for regulatory compliance, dispute resolution, and trust mechanisms. Economists can quantify how auditability affects agent behavior, market trust, and transaction costs.
  • Intermediate signals for learning and mechanism design:
    • Verified intermediate predicates provide candidate rewards for RL-based agent training (e.g., reward shaping from evidence/validation signals). This opens avenues to study how learning dynamics interact with market mechanisms and whether process-level incentives lead to more robust market outcomes than terminal-only rewards.
  • Empirical exploration of market frictions and bottlenecks:
    • Large-catalog experiments show stage-specific bottlenecks (search/recall, evidence grounding, validation authority). Economists can use ACWORLD to measure how such frictions influence price dispersion, search costs, and consumer surplus when agents optimize automated procurement or selling.
  • Policy and regulatory experiments:
    • The framework enables controlled simulations of policy interventions (mandatory evidence standards, seller verification rules, dispute-resolution protocols) to assess trade-offs between fraud reduction, compliance costs, and market efficiency before real-world deployment.
  • Limitations to bear in mind:
    • “Verifiable” here means reconstructable under the declared ACWORLD contract, not cryptographic or production-grade security. The environment abstracts many real-world features (e.g., payment settlement latency, external shocks) and does not itself validate the learning utility of intermediate signals.
    • Agents’ private reasoning is not observable; only their actions and the evidence they submit are recorded—this is realistic but constrains inference about internal incentives.
  • Research directions enabled:
    • Comparative studies of agent strategies (truthful vs. manipulative) and welfare implications.
    • Mechanism design for automated marketplaces with ML agents (designing rules that induce desirable equilibria).
    • Learning algorithms that incorporate validated process signals for improved strategic behavior.
    • Empirical analysis of auditability’s impact on trust, fraud, and compliance costs.

Takeaway: ACWORLD gives a reproducible, auditable testbed to study the economics of automated commerce—how protocol design, evidence requirements, and agent policies jointly shape market outcomes—while providing traced, verifiable execution records that make it possible to evaluate process-level behaviors as well as terminal outcomes.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper presents a thorough engineering and benchmark evaluation: two complementary tracks, large and controlled catalogs, reference policies, reconstruction/rescoring, and experiments across ten LLMs with aggregated scores; however, it does not make causal claims about real-world economic outcomes and the results are bounded to a simulated, synthetic environment with fixed counterparty policies. Methods Rigorhigh — Design enforces a clear protocol boundary (VCP), deterministic world transitions, evidence-linked predicates, state reconstruction and rescoring, reference policies and targeted mutation tests, and benchmark composition transparency; limitations include synthetic gap-filling for missing catalog fields, fixed/non-adaptive counterparty policies, and absence of live-market validation. SampleTwo benchmark tracks: (1) Capability-coverage — 200 tasks constructed from 1,082 public product snapshots covering 10 families and 80 capabilities (116 Buyer, 84 Merchant tasks); (2) Large-catalog — 60 tasks operating over a read-only catalog of 785,022 transactable listings (drawn from ~791k public records) covering 18 capabilities; evaluated across ten LLM models (examples reported: GPT-5.6 Sol/Terra, Gemini 3.6/3.5 Flash, Claude Sonnet 5, Qwen3.5 Plus, Kimi K3) with multiple runs, reference policies, and mutation tests. Themesadoption governance innovation human_ai_collab GeneralizabilityResults are limited to a simulated environment and curated catalog snapshots rather than live marketplace dynamics., Counterparties are fixed or follow reference policies, so agents' performance when all parties are adaptive is untested., Task construction includes rule-based gap-filling for missing source data, which may not reflect real-world data heterogeneity., No field experiments or causal estimates of economic outcomes (prices, employment, productivity) in real markets., Security, privacy, and production governance aspects are acknowledged but not validated under production constraints.

Claims (8)

ClaimDirectionOutcomeConfidence & EvidenceDetails
The capability-coverage track contains 200 tasks spanning 10 commerce families and 80 capabilities. Other positive Breadth of evaluated agent commerce capabilities
Reading fidelity high
Study strength high
n=200
200 tasks across 10 families and 80 capabilities
0.3
The large-catalog track evaluates 60 tasks over 785,022 transactable listings. Other positive Scale of catalog-based agent evaluation
Reading fidelity high
Study strength high
n=60
785,022 transactable listings
0.3
Across ten evaluated models, mean scores on the capability-coverage track range from 65.9% to 85.6%, while mean scores on the large-catalog track range from 56.1% to 91.4%. Other mixed Agent benchmark score
Reading fidelity high
Study strength medium
n=10
65.9% to 85.6% on capability coverage; 56.1% to 91.4% on large catalog
0.18
Final transaction state alone can miss evaluated errors: 99 of 861 capability-coverage runs without full credit reached a state also produced by a full-credit execution of the same task. Error Rate mixed Ability of final-state evaluation to detect process errors
Reading fidelity high
Study strength medium
n=861
99 of 861 runs
0.18
ACWORLD's recorded commits support reconstruction and rescoring of transaction outcomes without another model call. Governance And Regulation positive Auditability and reproducibility of agent transaction evaluation
Reading fidelity high
Study strength high
not reported
0.3
VCP enforces four transaction-integrity invariants: each action belongs to an authenticated actor, messages cannot directly update the World, every commit cites accepted platform validation, and replaying ordered commits from the same initial state reproduces the final state and event digest. Ai Safety And Ethics positive Transaction integrity and auditability
Reading fidelity high
Study strength high
four invariants
0.3
Reference policies achieved full credit on all 60 large-catalog tasks. Other positive Task evaluation score
Reading fidelity high
Study strength medium
n=60
full credit on all 60 tasks
0.18
Making all scoring predicates equally weighted changes model means by at most 1.8 percentage points and preserves the model ordering. Other null_result Sensitivity of benchmark model means and rankings to scoring weights
Reading fidelity high
Study strength medium
n=10
at most 1.8 percentage points
0.18

Notes