Research products, analyze competitors, and monitor prices across e-commerce platforms. Supports Amazon product data, Shopify store analysis, and price trend tracking.
📦 GitHub Demo: https://github.com/lhldolike/ecommerce-assistant-demo
# Search Amazon products
python3 scripts/amazon_search.py "wireless headphones" --limit 10
# Get product details
python3 scripts/amazon_product.py B08HMWZBXC
# Track price history
python3 scripts/price_tracker.py --asin B08HMWZBXC --notify
# Analyze a Shopify store
python3 scripts/shopify_analyzer.py https://store-name.myshopify.com
# Compare multiple stores
python3 scripts/shopify_analyzer.py --compare store1.com store2.com
# Add product to watchlist
python3 scripts/price_tracker.py --add B08HMWZBXC --target-price 50
# Check all tracked products
python3 scripts/price_tracker.py --list
# Generate price report
python3 scripts/price_tracker.py --report weekly
This skill uses multiple data sources:
See references/ for detailed API documentation:
All scripts are in scripts/ directory:
amazon_search.py - Search Amazon productsamazon_product.py - Get product detailsshopify_analyzer.py - Analyze Shopify storesprice_tracker.py - Price monitoring systemproduct_reporter.py - Generate reportsResults can be exported as:
python3 scripts/amazon_search.py "yoga mat" --min-price 20 --max-price 50 --min-rating 4.0
python3 scripts/shopify_analyzer.py https://competitor-store.com --track-prices --output competitor.json
python3 scripts/product_reporter.py --type weekly --email report@example.com
共 1 个版本