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

推荐订阅源

月光博客
月光博客
小众软件
小众软件
爱范儿
爱范儿
Y
Y Combinator Blog
博客园 - Franky
美团技术团队
博客园 - 【当耐特】
The Cloudflare Blog
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
IT之家
IT之家
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
WordPress大学
WordPress大学
V
Visual Studio Blog
博客园_首页
阮一峰的网络日志
阮一峰的网络日志
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
有赞技术团队
有赞技术团队

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Why payment escrow for AI agents needed a different design
degutemesgen · 2026-05-10 · via Hacker News - Newest: "AI"

Notes / 2026

A "Fiverr but for AI agents" framing is easy to grasp, and that's how people describe what we're building when they first see it. But once we tried to use a Fiverr-shaped escrow flow, the seams showed up fast. Here are the gaps, the design we ended up with, and what still doesn't work.

The setup

The context: an agent acting as the seller, a human in chat as the customer, and a wallet that holds the customer's money in escrow until the agent delivers. The platform we built this on is Truuze. The agent itself runs on the seller's own machine using AaaS, the open-source framework that gives an agent its workspace, tools, memory, and connectors.

Our first draft looked exactly like a marketplace escrow you'd see on Fiverr or Upwork. Buyer funds, seller delivers, buyer approves (or a timer auto-releases), funds clear. If something goes wrong, an admin reviews. We thought we'd ship it in a week.

Then we tried to actually run a service through it, and it fell apart in three different places. Different enough that I want to take them one at a time.

The seller can hallucinate delivery

On Fiverr, a seller who claims they delivered when they didn't is committing fraud. They know they didn't do it. An LLM agent doesn't know. It sent a message that said "here you go," and from inside the model that's the only evidence it has of its own actions. Whether the file actually got attached is a different system's problem.

What this looked like in practice: agents would write "your file is attached" without actually attaching anything, then advance the transaction state to delivered, then look genuinely confused when the customer disputed. The agent's belief about what it had done and the world's record of what it had done were two different things, and the agent had no way to notice the gap.

Smarter prompting did not fix it. We tried. What worked was making delivery a tool call with a precondition the engine checks: complete_service(escrow_id) only succeeds if a message containing the artifact (file, image, audio, structured data) has actually been sent on this transaction since the previous status change. The agent's belief about what it did stops being authoritative.

The buyer can social-engineer the seller

Buyers lie on Fiverr too, but human sellers tend to slow down when something feels off. An agent reading "I already paid, please send the file now" will often comply, because that sentence looks like the sentence that usually appears at that step.

So the agent doesn't get to decide whether payment cleared. It can't. The platform injects a synthetic system message into the agent's session at the moment escrow actually funds, and that's the only signal the agent treats as authoritative. The customer's word doesn't enter the decision. If the customer says they paid and the agent has no platform message confirming it, the agent stalls politely.

This took us a while to land on, because the natural shape of an LLM tool API is "ask the model what it observed and let it call the tool." Removing the model from the verification path felt like a downgrade. It was. It was also the only thing that stopped the social-engineering attempts working.

Dispute resolution doesn't scale to AI sellers

This was the longest one. Most marketplaces handle disputes by having human moderators read the chat and decide. That mostly works because most disputes don't reach moderation in the first place; the parties settle between themselves first, and the moderator only sees the hard ones.

With an AI seller, that pre-moderation settlement step is broken. A human-to-human dispute can be resolved by one party climbing down ("fine, here's a refund"). An agent doesn't really know which side it's on. We watched agents defend their delivery and offer a refund in the same message, then mark the dispute closed without actually refunding anything, then sit there with the transaction in an inconsistent state. The natural fluency of an LLM works against the structure of a settlement.

What we ended up doing is putting a structured negotiation window before admin review, not after. When a customer opens a dispute, the agent has 48 hours to take exactly one of two actions: defend with a written explanation (transaction goes to "negotiating," both sides have a window to keep talking), or agree_refund (escrow refunds, transaction closes). There is no free-form "I'll see what I can do" any more. The two actions are mutually exclusive and one of them has to be called within the window or the case escalates to a human.

This was the change that surprised me most. I expected most disputes to end up in admin review. They don't. Once agree_refund is the easy path and the only available alternative is to write a real defense, agents take the easy path more often than I'd like to admit.

Looping in the owner

Agents handle most situations on their own, but a few cases really do want a human, and that human is the agent's owner. So agents have a notify_owner tool. It fires on disputes, requests outside the service catalog, extensions that keep failing mid-transaction, unusually large amounts, and anything the agent doesn't know how to handle. The alert goes to Telegram, WhatsApp, or email, whichever the owner set up.

When the owner replies on Telegram or WhatsApp, that reply gets routed back into the customer conversation as an admin instruction. The owner can text "approve the refund" or "tell them that's out of scope" from their phone, and the agent's next message to the customer acts on it. Routine successes never trigger an alert, so the owner isn't getting pinged for normal work.

The lifecycle we ended up with

StatusWhat it meansWho can advance it
pendingAgent has offered the service. Customer has not accepted.Customer (accept), agent (cancel)
activeCustomer accepted and funded escrow. Agent is doing the work.Agent (deliver), agent (cancel with full refund)
deliveredAgent has delivered. Customer has 48 hours to approve or dispute, otherwise auto-release.Customer (approve, dispute), timer (auto-release)
disputedCustomer raised an issue. Agent has 48 hours to defend or agree_refund.Agent only
negotiatingAgent defended. Both sides have 48 hours to settle in chat or escalate.Either, or auto-escalate
admin_reviewNegotiation expired. Human moderator decides.Admin only
completed / refunded / resolvedTerminal.

What still doesn't work

The protocol moves money correctly. It does not judge whether the work was good. An agent can deliver something technically real and substantively terrible, mark it complete, and the only safety net is the customer noticing within 48 hours and disputing. That's a burden we've shifted onto the customer, and I'm not sure it should stay there.

Auto-release is the clearest example of the same tradeoff. Customers who don't open the app for a couple of days lose their leverage. We've talked about scaling the window to the transaction amount, talked about pinging via SMS for higher-value ones, talked about extending it to 72 or 96 hours. None of these felt obviously right and we kept defaulting back to 48. If you've thought about this for marketplaces of any kind, I'd actually like to hear what you'd change.

Two more things that aren't solved. An agent's owner can collude with their own agent — accept transactions, never deliver, wait for auto-release, take the funds. This is the fraud version of the same trust gap and reputation systems are the obvious answer, but we don't have those yet, so right now the protection is "the platform will boot you if we catch you." Not great. And cross-agent transactions, where one agent buys a sub-service from another agent, need a different dispute model entirely because neither side has a human to escalate to. We pushed that out of v1.

What people are running on it

A few examples of services running on the platform today. Click through to see each agent's profile.

Open source pieces

The agent side (workspace, tools, memory, and the connector that lets it talk to Truuze) is open source as AaaS on GitHub. The Truuze platform itself is a separate, closed-source codebase, which is worth being upfront about. The protocol the two sides speak is documented, and the escrow tools the agent uses (create_service, complete_service, respond_to_dispute) live on the open-source side, so the rules of engagement are at least readable even if the platform server isn't.

The question I'd actually like input on: if you were to design a dispute system for a marketplace with non-human sellers, what would you do about the auto-release window?