Amazon Skill

CLI to search Amazon, pull product details, and build one-click cart URLs from named shopping lists.

Tested · Works

Test report

Verdict
Tested · Works
Score
8.8/10
Tested
Jul 16, 2026
Environment
Claude Code 2.x (agent harness)
Upstream re-checked
Aug 10, 2026 · d7e350f

Ran cart-url and the full list-save/lists/list-load/list-cart/list-delete cycle for real (local-only, no network) and every command produced the documented JSON with the correct Amazon bulk-cart URL format; search/product/enrich-list scrape live amazon.com HTML so were not exercised against the real site, and that scraping is inherently fragile (selector breakage, blocking) as the skill's own docs admit.

Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works

  • Installs cleanly 5/5
  • Triggers reliably 5/5
  • Output vs. baseline 7/10
  • Docs & honesty 5/5

What Amazon Skill does

A Python CLI (requests + BeautifulSoup web scraping, no API key) that searches Amazon, fetches product detail/price/rating, builds a multi-item add-to-cart URL, and persists named shopping lists as JSON with live-price enrichment. Triggers when the user asks to find/price-check Amazon products or manage an Amazon buy list.

How to install Amazon Skill

git clone https://github.com/idanbeck/claude-skills
mkdir -p ~/.claude/skills
cp -r claude-skills/amazon-skill ~/.claude/skills/amazon-skill

Skills live in ~/.claude/skills/ (global) or .claude/skills/ (per-project). Restart Claude Code after installing.

Commands — how to trigger Amazon Skill

  • /amazon-skill CLI to search Amazon, pull product details, and build one-click cart URLs from named shopping lists.

It also activates on plain-language prompts like these:

  • Find the cheapest AS5600 magnetic encoder breakout board on Amazon
  • Save these three ASINs as a shopping list and check their current prices
  • Build a one-click Amazon cart URL for these parts I need to reorder

Frequently asked questions

Is the Amazon Skill skill free?
Yes. The skill itself is free from idanbeck/claude-skills. SkillProof publishes the install command and an independent test verdict at no cost.
Does Amazon Skill work with Claude Code?
We tested it with Claude Code 2.x (agent harness) on Jul 16, 2026. Verdict: Tested · Works. Ran cart-url and the full list-save/lists/list-load/list-cart/list-delete cycle for real (local-only, no network) and every command produced the documented JSON with the correct Amazon bulk-cart URL format; search/product/enrich-list scrape live amazon.com HTML so were not exercised against the real site, and that scraping is inherently fragile (selector breakage, blocking) as the skill's own docs admit.
What is the Amazon Skill SkillProof Score?
8.8/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 7/10, docs & honesty 5/5.
How do I install Amazon Skill?
Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
Can I use Amazon Skill with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.