Need to buy something from Amazon? Search and shop on Amazon.com — compare prices and ratings, add items to cart, and place real orders shipped to any US add...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install buy-amazon或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install buy-amazon⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/buy-amazon/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: Buy Amazon description: "Need to buy something from Amazon? Search and shop on Amazon.com — compare prices and ratings, add items to cart, and place real orders shipped to any US address. A simple e-commerce shopping API for AI agents." homepage: https://buystuff.ai emoji: 📦 user-invocable: true tags: - shopping - buy - amazon - amazon.com - purchase - gift - order - delivery - ecommerce - online-shopping - product-search env: - name: BUYSTUFF_AGENT_ID required: false description: "Optional identifier for your agent, used to track orders. If omitted, orders are anonymous." data_sent: - field: shipping address destination: https://buystuff.ai purpose: "Required to fulfill the Amazon order. Stored only for order processing." - field: email address destination: https://buystuff.ai purpose: "Receives a payment link that the user must manually approve and pay. No automatic charges. Not shared beyond buystuff.ai and Amazon fulfillment." - field: agentId destination: https://buystuff.ai purpose: "Optional agent identifier for order tracking. Not shared beyond buystuff.ai." permissions: - network: https://buystuff.ai reason: "All API calls go to buystuff.ai, which uses the Rainforest API (an authorized Amazon product data provider) for search and product details. buystuff.ai handles cart, checkout, and payment link delivery. No direct Amazon credentials are used or needed." ---
Activate this skill when your user wants to:
If the user mentions buying, ordering, shopping, gifting, or purchasing — this is your skill.
Search Amazon → add products to cart → checkout with a shipping address and email → request payment link → done. The user gets an email with a payment link. They pay on their own, we ship. No money is charged through this API.
All API calls go to https://buystuff.ai — one endpoint, no setup, no API keys needed. Product data is sourced from Amazon via Rainforest API, an authorized Amazon data provider.
Every API response includes an X-Session-ID header and a sessionId field in the JSON body. Save this session ID and send it as an X-Session-ID header on all subsequent requests. This lets you:
# First request — get a session ID from the response
curl "https://buystuff.ai/search?q=earbuds"
# Response header: X-Session-ID: ses_abc123...
# Response body includes: "sessionId": "ses_abc123..."
# All subsequent requests — send it back
curl -H "X-Session-ID: ses_abc123..." "https://buystuff.ai/search?q=yoga+mat"
curl -H "X-Session-ID: ses_abc123..." -X POST https://buystuff.ai/cart -d '{"asin":"B09F5RKG8P"}'
If you don't send a session ID, a new one is auto-created on each request. Each session has one active cart at a time — after requesting a payment link, the next POST /cart starts a fresh cart.
No payment info is collected through this API. Zero credit cards, zero tokens, zero wallets.
When the user is ready, the agent requests a payment link. buystuff.ai emails the user a secure payment link. They click, pay on buystuff.ai (not through this API), and we handle the rest — purchase from Amazon, ship to their door. No payment is ever processed through this skill.
Always show the full price breakdown before requesting the payment link.
All API calls go to https://buystuff.ai. Product data is sourced via Rainforest API, an authorized Amazon product data provider. Shipping details are shared with Amazon only for order fulfillment. No data is sold or shared with other third parties.
| Data | When | Purpose | |------|------|---------| | Search queries | Step 1 | Find products (no PII) | | Shipping address | Step 4 | Deliver the order | | Email | Step 4 | Send payment link + updates | | Agent ID (optional) | Step 4 | Track your agent's orders |
This skill cannot charge money or complete purchases. It only generates a payment link email. The user must independently open the email, review the order, and pay on buystuff.ai — completely outside this API.
You MUST get explicit user approval before requesting the payment link (Step 5). Show the price breakdown, wait for "yes." Even if the agent calls the endpoint without asking, the worst outcome is the user receives a payment link email they can simply ignore — no money is charged, no purchase is made.
---
/buy-amazon-search
curl "https://buystuff.ai/search?q=wireless+earbuds&sort_by=price_low_to_high&number_of_results=10"
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | q | string | Yes | Search query | | sort_by | string | No | price_low_to_high, price_high_to_low, average_review, most_recent | | number_of_results | integer | No | Limit results (default 20) | | exclude_sponsored | boolean | No | Remove sponsored results | | page | integer | No | Results page number |
Response includes results[] with asin, title, price, rating, ratingsTotal, isPrime, isBestseller, isDeal.
Agent tips:
sort_by=price_low_to_high and mention which ones fit/buy-amazon-details
curl "https://buystuff.ai/product/B09F5RKG8P"
Response includes full product info: title, brand, price, buyboxWinner (shipping cost, availability, Prime status), rating, ratingBreakdown, specifications, variants.
Agent tips:
buyboxWinner.availability — if "Out of Stock," tell the user and suggest alternativesbuyboxWinner.shipping.raw is "FREE", highlight it — users love free shippingratingBreakdown percentages so users can see if ratings are legit (watch for lots of 1-stars)variants exist (colors, sizes), ask the user which one before adding to cartspecifications that match what the user asked about/buy-amazon-cart
curl -X POST https://buystuff.ai/cart \
-H "Content-Type: application/json" \
-H "X-Session-ID: ses_abc123..." \
-d '{"asin": "B09F5RKG8P", "quantity": 1}'
| Field | Type | Required | Description | |-------|------|----------|-------------| | asin | string | Yes | Amazon product ID | | quantity | integer | No | Default: 1 |
Save the cartId from the response — you need it for checkout.
Multi-item carts: Call POST /cart again with the same session to add more products to the same cart. If you add the same ASIN twice, the quantity is combined.
View the current cart (without needing the cartId):
curl -H "X-Session-ID: ses_abc123..." https://buystuff.ai/cart
...
安装 Buy from Amazon — Search, Cart & Order for AI Agents 后,可以对 AI 说这些话来触发它
Help me get started with Buy from Amazon — Search, Cart & Order for AI Agents
Explains what Buy from Amazon — Search, Cart & Order for AI Agents does, walks through the setup, and runs a quick demo based on your current project
Use Buy from Amazon — Search, Cart & Order for AI Agents to need to buy something from Amazon
Invokes Buy from Amazon — Search, Cart & Order for AI Agents with the right parameters and returns the result directly in the conversation
What can I do with Buy from Amazon — Search, Cart & Order for AI Agents in my marketing & growth workflow?
将技能文件夹放到 ~/.claude/skills/buy-amazon/ 目录(个人级,所有项目可用),或 .claude/skills/buy-amazon/(项目级)。重启 AI 客户端后,用 /buy-amazon 主动调用,或让 AI 根据上下文自动发现并使用。
Buy from Amazon — Search, Cart & Order for AI Agents 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Buy from Amazon — Search, Cart & Order for AI Agents 可免费安装使用。请查阅仓库了解许可证信息。
Need to buy something from Amazon? Search and shop on Amazon.com — compare prices and ratings, add items to cart, and place real orders shipped to any US add...
Lists the top use cases for Buy from Amazon — Search, Cart & Order for AI Agents, with example commands for each scenario
Automate my marketing & growth tasks using Buy from Amazon — Search, Cart & Order for AI Agents
Identifies repetitive steps in your workflow and sets up Buy from Amazon — Search, Cart & Order for AI Agents to handle them automatically
Buy from Amazon — Search, Cart & Order for AI Agents 属于「Marketing & Growth」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。