amazon-skill
Search Amazon products, check prices, build multi-item carts, and manage shopping lists. Use when the user asks to find products on Amazon, check prices, build a shopping cart, or manage an Amazon buy list.
What this skill does
# 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): ```bash pip install requests beautifulsoup4 ``` ## Commands ### Search ```bash python3 ~/.claude/skills/amazon-skill/amazon_skill.py search "query" [--limit N] [--sort price-asc|price-desc|reviews|newest] ``` ### Product Details ```bash 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: ```bash python3 ~/.claude/skills/amazon-skill/amazon_skill.py cart-url ASIN1[:QTY] ASIN2[:QTY] ... ``` Example: ```bash 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: ```bash # 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 ```bash # 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 in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.