Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
idanbeck avatar

Amazon Skill

  • 14 installs
  • 12 repo stars
  • Updated August 4, 2026
  • idanbeck/claude-skills

Search Amazon products, check prices, build multi-item carts, and manage shopping lists from the command line via web scraping.

About

A CLI skill that searches Amazon, checks prices, builds carts, and manages shopping lists using requests and BeautifulSoup with no API key. A developer uses it to automate product research and cart-building from the terminal.

  • No API keys; scrapes with requests + BeautifulSoup
  • Search, price checks, multi-item carts, and buy lists

Amazon Skill by the numbers

  • 14 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #1,417 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/idanbeck/claude-skills --skill amazon-skill

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs14
repo stars12
Last updatedAugust 4, 2026
Repositoryidanbeck/claude-skills

What it does

Search Amazon products, check prices, build multi-item carts, and manage shopping lists from the command line via web scraping.

Files

SKILL.mdMarkdownGitHub ↗

Amazon Skill

Search products, check prices, build carts, and manage shopping lists on Amazon.

Setup

No API keys needed. Uses web scraping with requests + BeautifulSoup.

Requirements (likely already installed):

pip install requests beautifulsoup4

Commands

Search

python3 ~/.claude/skills/amazon-skill/amazon_skill.py search "query" [--limit N] [--sort price-asc|price-desc|reviews|newest]

Product Details

python3 ~/.claude/skills/amazon-skill/amazon_skill.py product ASIN_OR_URL

Accepts an ASIN (e.g., B0BSHF7WHW) or a full Amazon URL.

Build Cart URL

Generate a single URL that adds multiple items to an Amazon cart when opened in a browser:

python3 ~/.claude/skills/amazon-skill/amazon_skill.py cart-url ASIN1[:QTY] ASIN2[:QTY] ...

Example:

python3 ~/.claude/skills/amazon-skill/amazon_skill.py cart-url B0BSHF7WHW:2 B07WDPT9JZ:1 B09N3XKQLH:3

Shopping Lists

Save, load, and manage named shopping lists:

# Save a list
python3 ~/.claude/skills/amazon-skill/amazon_skill.py list-save "actuator-parts" B0BSHF7WHW:2 B07WDPT9JZ:1

# Show all lists
python3 ~/.claude/skills/amazon-skill/amazon_skill.py lists

# Load a list
python3 ~/.claude/skills/amazon-skill/amazon_skill.py list-load "actuator-parts"

# Fetch current prices for all items in a list
python3 ~/.claude/skills/amazon-skill/amazon_skill.py enrich-list "actuator-parts"

# Generate cart URL from a saved list
python3 ~/.claude/skills/amazon-skill/amazon_skill.py list-cart "actuator-parts"

# Delete a list
python3 ~/.claude/skills/amazon-skill/amazon_skill.py list-delete "actuator-parts"

Workflow Example

# 1. Search for parts
python3 ~/.claude/skills/amazon-skill/amazon_skill.py search "AS5600 magnetic encoder breakout" --limit 5

# 2. Check a specific product
python3 ~/.claude/skills/amazon-skill/amazon_skill.py product B0BSHF7WHW

# 3. Save items to a list
python3 ~/.claude/skills/amazon-skill/amazon_skill.py list-save "phase-1" B0BSHF7WHW:3 B07WDPT9JZ:1

# 4. Get current prices for all items
python3 ~/.claude/skills/amazon-skill/amazon_skill.py enrich-list "phase-1"

# 5. Generate one-click cart URL
python3 ~/.claude/skills/amazon-skill/amazon_skill.py list-cart "phase-1"

Output

All commands output JSON.

Notes

  • Amazon occasionally blocks automated requests. If you get empty results, wait a minute and retry.
  • Cart URLs work by opening in your browser — they add items directly to your Amazon cart.
  • Shopping lists are saved as JSON in ~/.claude/skills/amazon-skill/lists/.
  • The enrich-list command fetches live prices and saves them back to the list file.
  • Use ASIN:QTY format to specify quantities (e.g., B0BSHF7WHW:3 for 3 units). Default quantity is 1.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.