Anthropic open-sources Claude commerce agents blueprint: +35% cart size, +60% purchase conversion

AI寒武纪 · wechat · 2026-09-06

Anthropic has open-sourced its full Commerce Agents architecture and code (github.com/anthropics/commerce-agents), a battle-tested blueprint for retail, travel, telecom and ticketing. Official figures claim merchants adopting it see cart size jump 35% and purchase completion rise 60%.

Key architectural calls: avoid splitting e-commerce agents by business domain (context handoffs lose state, waste tokens, add latency) — instead run one main model in a standard reason-act-observe loop with mounted agent skills. High-frequency instructions go into the system prompt; long-tail capabilities become on-demand skills; UI components are exposed as structured display tools validated server-side.

On speed and cost, cutting conversation turns beats switching to a faster weak model (5+ turns means upgrade the model); speculative dispatch of backend calls while tool args stream, plus streaming progress UI, cuts perceived latency to hundreds of milliseconds. Prompt caching hits 90-99% when context is layered global/session/volatile. Production hardening: async memory extraction into typed database records per logged-in user (+13% fact recall); money-touching actions locked in code (model only proposes, all IDs validated, writes serialized, external text sanitized); evaluation via state slices with paired negative cases, per-skill CI, nightly full runs and canary rollback.

Original post →

More from coding & agent

coding & agent channel →