commerce-bots

Free to build. Premium to run.

The integrations are open source and free forever. When it's time for production, we run them for you — idempotent writes, automatic retries, full visibility.

Open source

$0free forever

Every integration we ship, MIT-licensed. Bring your own keys and run it yourself.

  • All Shopify, Stripe, ShipStation & UCP adapters
  • Runnable examples + the /build code generator
  • Community support via GitHub
Browse on GitHub ↗

Pro

Most popular
$49per month

For teams shipping agentic commerce to production. The safe-by-default build, plus a human to ask.

  • Production-hardened /build output (idempotency keys + retry/backoff)
  • Trusted-agent checkout completion
  • Priority email support & early access to new integrations
Subscribe →

Managed

Custom

We run it for you. White-glove setup and operation of your commerce integrations.

  • We run it in production — secrets, idempotency, retries, monitoring
  • Idempotency-safe writes — no duplicate orders or charges
  • Direct line for incidents and changes
Book a setup call →

What “production-hardened” means

Free — basic tool call
const result = await client.callTool("create_order", {
  line_items: [{ variant_id, quantity: 1 }],
  shipping_address,
});
Pro — idempotency key + retry/backoff
const result = await client.callTool("create_order", {
  line_items: [{ variant_id, quantity: 1 }],
  shipping_address,
}, {
  idempotencyKey: `order-${sessionId}`,
  retry: { attempts: 3, backoff: "exponential", retryOn: [429, 503] },
});
// Pro also validates the response schema before returning,
// so your agent never acts on a partial or malformed order.

Without an idempotency key, a network failure after the server creates the order but before it responds makes your agent retry — creating a duplicate order. This is the single most common agentic-commerce failure, and it's what the Pro build prevents by default.

Open-source code is free under the MIT license. Premium and Managed cover support and operation, never access to the code.