惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
雷峰网
雷峰网
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
T
Tailwind CSS Blog
Martin Fowler
Martin Fowler
I
InfoQ
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
The Cloudflare Blog
罗磊的独立博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Anthropic just proved agent commerce works. Their own dat...
GenGEO · 2026-05-20 · via DEV Community

This is our third post in a series on agentic commerce. Previously: AI shopping agents have no standard way to verify merchants — so we built one and AI Agents Need a Trust Layer Before They Can Transact.


Last month, Anthropic published something quietly significant.

They called it Project Deal. For one week in December 2025, they created a Craigslist-style internal marketplace — but with a twist: every transaction was handled entirely by Claude agents acting on behalf of 69 employees. No human intervention once the experiment started. Agents posted listings, made offers, countered, and closed deals autonomously via Slack.

The result: 186 deals, $4,000+ transacted, across 500+ listed items.

It worked.

But buried in their findings is something that points directly at an unresolved infrastructure problem — one we've been building into.


What Project Deal actually demonstrated

The headline finding is that agent-to-agent commerce is real and closer than most people think. But the more interesting finding is what happened when agents weren't equally matched.

Anthropic ran a parallel secret experiment: half the participants were randomly assigned Claude Opus 4.5 (their frontier model), half got Claude Haiku 4.5 (their smallest model). The results were measurable and consistent:

  • Opus sellers extracted $2.68 more per item on average
  • Opus buyers paid $2.45 less per item on average
  • Opus agents completed roughly 2 more deals overall

The same broken folding bike sold for $38 when represented by Haiku. $65 when represented by Opus.

Here's the uncomfortable part: participants on the losing end didn't notice. Perceived fairness scores were virtually identical across both groups — 4.05 for Opus deals, 4.06 for Haiku deals, on a 1–7 scale.

As the authors put it, the inequality was "imperceptible to the participants."


The gap Project Deal doesn't address

Project Deal was a controlled experiment. 69 Anthropic employees, known participants, a closed Slack environment. Every agent on both sides was Claude. The marketplace was trusted by definition.

That's not what the open web looks like.

In the real world, an agent being given a shopping task — "find me black running shoes under $200" — isn't operating in a closed trusted environment. It's being pointed at the open web, where merchants range from legitimate operators to outright fraudulent storefronts. The agent has to decide who to transact with.

And right now, there is no standard way for it to make that determination.

The trust signals that humans use — brand recognition, visual design, review scores, word of mouth — are largely invisible to agents. Agents parse structure, policies, and machine-readable signals. They don't "feel" trust. They either have a signal to evaluate or they don't.

Project Deal proved the commerce layer works. What it didn't address is the verification layer underneath it.


What we built

We've been building GenGEO specifically for this gap: a machine-readable merchant verification registry that agents can query before transacting.

The API is intentionally simple:

GET https://api.gengeo.co/api/verify?domain=example.com

Enter fullscreen mode Exit fullscreen mode

Verified merchant:

{
  "domain": "example.com",
  "verified": true,
  "status": "active",
  "eligible_for_ai_agent_purchase": "yes",
  "decision": "verified",
  "registry": "GenGEO"
}

Enter fullscreen mode Exit fullscreen mode

Unverified merchant:

{
  "domain": "example.com",
  "verified": false,
  "status": "not_found",
  "eligible_for_ai_agent_purchase": "unknown",
  "decision": "verification_required",
  "registry": "GenGEO"
}

Enter fullscreen mode Exit fullscreen mode

We deliberately chose binary over scored. Agents work better with deterministic signals. A score creates a secondary decision problem — what does 67/100 mean, and at what threshold does the agent proceed? Binary keeps the logic clean:

if verified → proceed
if not verified → flag / fallback / surface to user

Enter fullscreen mode Exit fullscreen mode

We also built an MCP server so agents can call verification directly as a tool, without HTTP plumbing:

verify_store(domain)

Enter fullscreen mode Exit fullscreen mode

The full implementation is open source:
👉 github.com/warwickwood-cell/gengeo-agent-registry


Why Project Deal makes this more urgent, not less

Anthropic's authors end their paper with a note that's worth sitting with:

"The policy and legal frameworks around AI models that transact on our behalf simply don't exist yet. But this experiment shows that such a world is plausible. More than that, it shows that such a world isn't far away."

If that's true — and the trajectory suggests it is — then the verification layer needs to exist before agentic commerce scales, not after. The same way payment infrastructure had to exist before ecommerce could scale. The same way SSL had to exist before people would enter card numbers online.

Trust infrastructure is boring until it isn't.

Project Deal was a closed system with known participants and no adversarial merchants. The open web has none of those properties. As agents begin transacting at scale on behalf of users, the question of who they're transacting with becomes one of the most commercially and ethically important questions in the stack.


What we're looking for

We're early. Most of this is still experimental. But we're actively looking to talk to:

  • Developers building shopping or commerce agents
  • Teams working on MCP integrations
  • Anyone who has hit this problem in their own agent workflows

If you're building in this space and want to integrate verification into your agent flow, the MCP server is ready to use. Takes one tool call.

And if you think the framing is wrong — that agents will handle trust differently than we're assuming, or that platform-level solutions will absorb this entirely — we'd genuinely like to hear that argument.

The paper that prompted this is worth reading in full: anthropic.com/features/project-deal. Credit to Kevin K. Troy, Dylan Shields, Keir Bradwell, and Peter McCrory for running an experiment that surfaces questions the industry needs to be asking.


GenGEO is a merchant verification registry for AI agents. API docs and MCP server: github.com/warwickwood-cell/gengeo-agent-registry