聊天电商,智能体电商已经到来,shopify如何做?非常详细
— dawn
第一阶段:技术底层优化(结构化数据)
目标: 确保 Google Gemini 或 ChatGPT 能瞬间“读懂”你的产品规格、库存和政策。[1]
1. 完善 JSON-LD 代码(核心任务)
在 Shopify 主题的 snippets 文件夹中创建或修改 json-ld-products.liquid。AI 代理最看重以下字段:
codeHtml
{%- assign current_variant = product.selected_or_first_available_variant -%}
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": {{ product.title | json }},
"description": {{ product.description | strip_html | truncatewords: 50 | json }},
"image": [
{%- for image in product.images -%}
"https:{{ image.src | image_url: width: 1000 }}"{%- unless forloop.last -%},{%- endunless -%}
{%- endfor -%}
],
"sku": {{ current_variant.sku | json }},
"gtin": {{ current_variant.barcode | json }},
"brand": {
"@type": "Brand",
"name": {{ shop.name | json }}
},
"offers": {
"@type": "Offer",
"url": "{{ shop.url }}{{ product.url }}",
"priceCurrency": "{{ cart.currency.iso_code }}",
"price": "{{ current_variant.price | money_without_currency }}",
"priceValidUntil": "{{ "now" | date: "%Y-12-31" }}",
"availability": "https://schema.org/{% if product.available %}InStock{% else %}OutOfStock{% endif %}",
"itemCondition": "https://schema.org/NewCondition",
"hasMerchantReturnPolicy": {
"@type": "MerchantReturnPolicy",
"applicableCountry": "US",
"returnPolicyCategory": "https://schema.org/MerchantReturnFiniteReturnPeriod",
"merchantReturnDays": 30,
"returnMethod": "https://schema.org/ReturnByMail"
},
"shippingDetails": {
"@type": "OfferShippingDetails",
"shippingRate": {
"@type": "MonetaryAmount",
"value": "0.00",
"currency": "USD"
},
"deliveryTime": {
"@type": "ShippingDeliveryTime",
"handlingTime": { "@type": "QuantitativeValue", "minValue": 0, "maxValue": 1, "unitCode": "DAY" },
"transitTime": { "@type": "QuantitativeValue", "minValue": 3, "maxValue": 5, "unitCode": "DAY" }
}
}
}
}
</script>- 优化细节点: 必须包含 shippingDetails(运费详情)和 hasMerchantReturnPolicy(退换货政策)。AI 代理在代客下单前必须确认这些条款,否则会跳过你的产品。
第二阶段:协议对接(UCP Manifest)
目标: 向全球 AI 代理声明你的店铺支持“端到端”购买协议。[1]
2. 配置 UCP 声明文件
根据谷歌 UCP 开源标准,商家需在根目录提供一个 JSON 描述文件。[2]
- 文件路径: /.well-known/ucp[1][2][3]
- 如何实现: 目前 Shopify 正在逐步通过 “Agentic Storefronts” 官方频道自动生成此文件。[1]
- 检查清单:
- 在 Shopify 后台搜索并安装 “Google & YouTube”。[1]
- 进入设置,寻找 “Agentic Commerce” 或 “Direct Buying” 开关并开启。
- 如果你是 Plus 卖家或开发者,可通过 Storefront API 自定义 Capability(如支持折扣码应用、积分抵扣)。
第三阶段:数据源优化(AEO 优化)
目标: 提高 AI 推荐你产品的权重。[1]
3. 完善 Metafields(元字段)
AI 不喜欢模糊的描述。你需要为所有产品增加以下属性:
- Material (材质): 明确标注 100% Cotton, 304 Stainless Steel 等。
- Compatibility (兼容性): 特别是电子产品或配件,标注 "Fits iPhone 15"。
- Sustainability (环保): AI 往往有“绿色偏好”,标注认证标签。
4. 图片 Alt 文本(AI 视觉引擎优化)
AI 代理会通过图片辅助判断。[1]
- 规范代码: 在主题中确保图片包含详尽描述。
codeHtml
<img src="{{ image | img_url: '800x' }}" alt="{{ product.title }} - {{ product.color }} color - {{ product.material }} material - Lifestyle view">第四阶段:交易链路优化(结账无摩擦)
目标: 让 AI 代理能够成功替用户刷卡结账。
5. 开启一键支付(Wallet-first)
AI 代理目前仅支持标准化的加密支付协议。
- 清单:
6. 减少结账阻碍
- 操作: 在后台设置中,关闭“必须登录才能结账”。AI 代理很难处理多步验证的登录逻辑。
- 地址验证: 开启谷歌地址自动补全(Google Maps API),减少 AI 传输地址信息时的校验错误。
详细实施计划表(2周计划)
给卖家的终极建议:
现在的风口不再是“流量多不多”,而是你的**“数据干不干净”**。AI 是一个极其挑食的超级客户,这份清单就是帮你把产品装盘,方便 AI 随时夹走。