Shopify

Claude For Commerce Examples — Development skill for Claude Code

Development community

Shopify implementations of Anthropic's commerce-agents blueprint: a storefront shopping agent over UCP and Sign in with Shop, and a merchant agent over the Admin API.

How to install Claude For Commerce Examples

This entry records only its repository, not the path inside it, so there is no exact command to give. Open Shopify/claude-for-commerce-examples and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Claude For Commerce Examples does

Shopify implementations of Anthropic's commerce-agents blueprint: a storefront shopping agent over UCP and Sign in with Shop, and a merchant agent over the Admin API.

Alternatives in Development

  • Generic Extract Skill — You are an Autonomous 3D Technical Artist Agent 14.1k ★
  • Internet Court Skill — The trust layer for agent-to-agent commerce — natural-language mandates, ERC-7710 delegated permissions, x402 4.9k ★
  • Commerce Agents — Reference blueprint for building shopping and merchant agents with Claude 2.6k ★

README

Claude for Commerce examples

[!NOTE] If you are interested in building a custom storefront agent on Shopify using Claude, the following example will help you get up and running. Alternatively, you can use [Shopify Inbox](https://apps.shopify.com/inbox) to set up a managed storefront agent — no code required — that can answer consumer questions on your online store.

Shopify implementations of [Anthropic's commerce-agents blueprint](https://github.com/anthropics/commerce-agents): `storefront/` runs the blueprint's shopping agent against a real Shopify store, and `merchant/` runs its merchant agent over the same store's Admin API. Each example is self-contained — its own API host, web app, fixtures, and tests — and they share only `vendor/` and the blueprint's packages, which install from Anthropic's repository at the commit pinned in `requirements.txt`.

Storefront

A storefront shopping agent for a real Shopify store, built on [Anthropic's commerce-agents blueprint](https://github.com/anthropics/commerce-agents) and Shopify's [UCP](https://shopify.dev/docs/agents) endpoints. Point `SHOP_DOMAIN` at a store and the agent searches its live catalog, builds a real cart, answers from its policies and FAQs, and hands the customer to the store's own checkout page. The web app brands itself from the store — name, logo, colors, best sellers — so the same code is a branded storefront for any shop. Nothing here places an order or takes payment: checkout, shipping, and payment all happen on Shopify's own pages.

The blueprint's packages (the shopping agent, its gates and skills, and the shared commerce types) install from Anthropic's repository at the commit pinned in `requirements.txt`; this repository adds the Shopify storefront on top of them, unchanged. `vendor/` carries the blueprint's example scaffolding — see [NOTICE](NOTICE).

Run

Python 3.11+ and Node 22.

python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
cp .