SShortSingh.
Back to feed

AI agents can pay and hire autonomously, but a trading standard is still missing

0
·3 views

Circle published its Machine Payments Protocol (MPP) specification on June 23, enabling AI agents to make USDC payments via HTTP 402 flows without API keys, while ERC-8183 introduced an on-chain escrow-and-evaluator framework for agents to hire other agents. BNB Chain has already shipped a live SDK implementing the hiring standard, and the payments lane is crowded with competing solutions from Google, Stripe, and Mastercard. Together, these two standards cover two of the three core verbs of machine commerce — paying and hiring — within just a few months. However, no equivalent specification exists for agent-to-agent trading, where two parties exchange assets simultaneously and the key risk is ensuring neither side can default after the other has committed. Unlike payments or hires, trades are objective and two-sided, making the absence of a dedicated atomic-swap standard a notable gap as autonomous agent commerce scales.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Developer Builds Catawiki Deal Finder Using Expert Estimates Embedded in Page JSON

A developer discovered that Catawiki, an online auction platform, embeds expert-estimated value ranges for every lot directly in its page JSON via Next.js's __NEXT_DATA__ structure. By comparing current bids against these expert estimates across a category, the developer built a bot to identify undervalued lots still open for bidding. An initial plan to analyze completed auction price history was abandoned after finding that Catawiki's public search only surfaces live lots, with no accessible archive of closed sales. The tool was reoriented into a live deal finder, with a key filter being lots closing within 24 hours that are still priced significantly below the expert estimate. The bot has been packaged as an Apify Actor, allowing users or AI agents to query deals by category, time window, and minimum discount percentage.

0
ProgrammingDEV Community ·

Why Some AI Workloads Are Better Kept Local Than Sent to the Cloud

A developer and self-hosted AI practitioner argues that certain workloads, such as transcription, invoice tagging, and document search, should run locally rather than through cloud APIs. The primary driver is privacy: in DACH countries (Germany, Austria, Switzerland), sending sensitive content to external endpoints raises serious GDPR, data residency, and professional confidentiality concerns. Cost is a second factor, as cloud APIs charge per token and expenses compound quickly with frequent small tasks, while local hardware carries a higher upfront cost but near-zero marginal cost per run. Latency and reliability are also cited, since local models eliminate network round trips, rate limits, and the risk of external API outages breaking automated workflows. The author's own setup uses Ollama with a quantized Mistral 7B model on an RTX 4070, faster-whisper for push-to-talk transcription, and Paperless-ngx for local document management with AI-assisted tagging.

0
ProgrammingDEV Community ·

Debugging AI Agents Requires Tracing the First Bad Decision, Not the Final Output

A developer shared a key insight after spending hours trying to fix an AI agent that kept selecting the wrong tool. The root cause turned out not to be in the final response or prompt, but in a subtly incorrect retrieval that occurred eight steps earlier in the execution chain. Each subsequent decision cascaded from that single early divergence, meaning the visible error was only a symptom of a much earlier failure. This experience highlighted a fundamental difference between debugging traditional software and AI agents: instead of looking for where the system crashes, developers must identify where it first goes wrong. The author now frames debugging around the question of which decision first diverged, rather than why the final answer was incorrect.

0
ProgrammingDEV Community ·

GSoC 2026 Developer Patches Node.js Core Tools While Building Webpack Blog System

A Google Summer of Code 2026 contributor working on Webpack's documentation redesign encountered unexpected architectural challenges while building a blog system for the project. The developer discovered that nodejs/doc-kit, the underlying documentation engine, lacked support for modern YAML Frontmatter metadata, relying instead on a legacy HTML comment format. Rather than applying a local workaround, the contributor patched nodejs/doc-kit directly by implementing a lightweight pre-AST parser that transpiles standard YAML blocks into the legacy format while maintaining full backward compatibility. A second upstream contribution added a configurable static asset copying utility to the Web Generator, resolving crashes caused by local markdown images not being transferred to the final build output. Both fixes were submitted as pull requests to the nodejs/doc-kit repository, benefiting all future projects that adopt the tool.