Place, list, and retrieve orders via the Zinc API (zinc.com). Use when the user wants to buy a product from an online retailer, check order status, list recent orders, or anything involving the Zinc e-commerce ordering API. Requires ZINC_API_KEY environment variable.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install universal-checkout或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install universal-checkout⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/universal-checkout/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: zinc-orders description: Place, list, and retrieve orders via the Zinc API (zinc.com). Use when the user wants to buy a product from an online retailer, check order status, list recent orders, or anything involving the Zinc e-commerce ordering API. Requires ZINC_API_KEY environment variable. ---
Place and manage orders on online retailers through the Zinc API (https://api.zinc.com).
ZINC_API_KEY env var must be set. Get one from All requests use Bearer token auth:
Authorization: Bearer $ZINC_API_KEY
POST /ordersPlace a new order. Orders process asynchronously.
Required fields:
products — array of { url, quantity?, variant? } objects - url: direct product page URL on a supported retailer - quantity: integer (default 1) - variant: array of { label, value } for size/color/etc.
shipping_address — object with first_name, last_name, address_line1, address_line2, city, state (2-letter), postal_code, phone_number, country (ISO alpha-2, e.g. "US")max_price — integer, maximum price in centsOptional fields:
idempotency_key — string (max 36 chars) to prevent duplicatesretailer_credentials_id — short ID like zn_acct_XXXXXXXXmetadata — arbitrary key-value objectpo_number — purchase order number stringResponse: order object with id (UUID), status, items, shipping_address, created_at, tracking_numbers, etc.
Order statuses: pending → in_progress → order_placed | order_failed | cancelled
GET /ordersReturns { orders: [...] } array of order objects.
GET /orders/{id}Retrieve a single order by UUID.
curl -X POST https://api.zinc.com/orders \
-H "Authorization: Bearer $ZINC_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"products": [{ "url": "https://example.com/product", "quantity": 1 }],
"max_price": 5000,
"shipping_address": {
"first_name": "Jane",
"last_name": "Doe",
"address_line1": "123 Main St",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"phone_number": "5551234567",
"country": "US"
}
}'
See references/errors.md for the full error code reference.
Key points:
{ code, message, details }error_typemax_price_exceeded, product_out_of_stock, invalid_shipping_addressOrders process asynchronously and typically take 5–10 minutes. After placing an order:
GET /orders/{id} to poll.Terminal statuses: order_placed, order_failed, cancelled — stop polling. Non-terminal: pending, in_progress — schedule another check in 3–5 minutes.
Example cron job (isolated, announce back to the channel):
{
"name": "zinc-order-check-<short_id>",
"schedule": { "kind": "at", "at": "<ISO-8601 ~7min from now>" },
"payload": {
"kind": "agentTurn",
"message": "Check Zinc order <order_id> via GET https://api.zinc.com/orders/<order_id>"
},
"sessionTarget": "isolated",
"delivery": {
"mode": "announce",
"channel": "<channel>",
"to": "<channel_id>"
}
}
POST /orders). This spends real money.max_price is reasonable before submitting.安装 Zinc Universal Checkout 后,可以对 AI 说这些话来触发它
Help me get started with Zinc Universal Checkout
Explains what Zinc Universal Checkout does, walks through the setup, and runs a quick demo based on your current project
Use Zinc Universal Checkout to place, list, and retrieve orders via the Zinc API (zinc
Invokes Zinc Universal Checkout with the right parameters and returns the result directly in the conversation
What can I do with Zinc Universal Checkout in my product manager workflow?
Lists the top use cases for Zinc Universal Checkout, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/universal-checkout/ 目录(个人级,所有项目可用),或 .claude/skills/universal-checkout/(项目级)。重启 AI 客户端后,用 /universal-checkout 主动调用,或让 AI 根据上下文自动发现并使用。
Zinc Universal Checkout 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Zinc Universal Checkout 可免费安装使用。请查阅仓库了解许可证信息。
Place, list, and retrieve orders via the Zinc API (zinc.com). Use when the user wants to buy a product from an online retailer, check order status, list recent orders, or anything involving the Zinc e-commerce ordering API. Requires ZINC_API_KEY environment variable.
Automate my product manager tasks using Zinc Universal Checkout
Identifies repetitive steps in your workflow and sets up Zinc Universal Checkout to handle them automatically
Zinc Universal Checkout 属于「Product Manager」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。