GTS Ecommerce Price Monitor
by @ericlooi504
Monitor competitor product prices on Shopee, Lazada, Amazon, and others with automated tracking, alerts, reports, and trend analysis for smarter pricing.
clawhub install gts-ecommerce-price-monitorπ About This Skill
name: GTS_ecommerce-price-monitor description: Monitor competitor product prices across major e-commerce platforms (Shopee, Lazada, Amazon, etc.). Use when the user wants to: (1) Set up automated price tracking for competitor products, (2) Generate price comparison reports, (3) Get alerts when prices drop or rise, (4) Analyze pricing trends over time, (5) Identify best times to adjust their own pricing. Best for e-commerce sellers, dropshippers, and small business owners who need competitive intelligence without manual checking. version: 1.0.0 metadata: openclaw: requires: bins: - python3 emoji: "π" homepage: https://clawhub.ai/p/GTS_ecommerce-price-monitor
E-commerce Competitor Price Monitor
Automatically track competitor product prices across Shopee, Lazada, Amazon, and other platforms. Get notified on price drops, generate weekly comparison reports, and make data-driven pricing decisions.
Quick Start
1. Configure targets: Tell the agent your competitor product URLs and tracking frequency.
2. Run a scan: scan prices now β the agent visits each URL, extracts the price, and logs it.
3. Get a report: price report or compare prices β generates a clean comparison table.
4. Set alerts: alert me when [product] drops below [price] β the agent checks on schedule and notifies you.
Workflow
Step 1: Add Products to Track
Tell the agent in natural language:
> "Track the price of this Shopee product: https://shopee.com.my/... every 6 hours" > "Add this Lazada link to my price monitor: https://www.lazada.com.my/..." > "Monitor these 5 Amazon products daily"
The agent should:
scripts/prices.jsonStep 2: Price Scanning
When the user asks to scan or on schedule, the agent:
1. Reads the product list from scripts/prices.json
2. For each URL:
- Visits the page using web browser
- Extracts: product name, current price, currency, stock status, seller name
- Handles platform-specific page structures (see PLATFORMS.md)
3. Logs results to scripts/price_history.jsonl (append-only)
4. Updates latest prices in scripts/prices.json
5. Checks alert conditions β if triggered, notifies the user
Step 3: Reports
On request, generate:
Quick comparison (inline Telegram-friendly):
π Price Watch β 3 products tracked
βββββββββββββββββββββββββββββββ
Product A β RM 89.90 βΌ 5% from last week
Product B β RM 245.00 β² 2% (new all-time high)
Product C β RM 59.90 β No change
Detailed CSV report: Run the Python script scripts/report.py to generate reports/price_report_YYYY-MM-DD.csv with full history.
Step 4: Alerts
The agent supports natural language alert setup:
> "Tell me if iPhone 15 drops below RM 4,000" > "Alert me when Product C goes on sale" > "Notify me if any tracked product drops more than 15%" > "Stop alerting me about Product A"
Alerts are stored in scripts/alerts.json. The agent checks them after each scan cycle.
Scripts
scripts/manage.py β Data management CLI
python3 scripts/manage.py products add --name "Product Name" --interval 6 --alert-price 89.90
python3 scripts/manage.py products list
python3 scripts/manage.py products remove
python3 scripts/manage.py alerts add --product --type below --value 100.00
python3 scripts/manage.py alerts list
python3 scripts/manage.py alerts remove
python3 scripts/manage.py history export --days 30
scripts/report.py β Generate reports
python3 scripts/report.py # Quick summary (stdout)
python3 scripts/report.py --csv # Full CSV to reports/
python3 scripts/report.py --product # Single product history
python3 scripts/report.py --trends # Price trend analysis
References
Tips for Best Results
.product-price or [data-testid="product-price"] elements..my (Malaysia), .sg (Singapore), etc.#corePriceDisplay_desktop_feature_div .a-price-whole. Watch for coupon discounts listed separately.π‘ Examples
1. Configure targets: Tell the agent your competitor product URLs and tracking frequency.
2. Run a scan: scan prices now β the agent visits each URL, extracts the price, and logs it.
3. Get a report: price report or compare prices β generates a clean comparison table.
4. Set alerts: alert me when [product] drops below [price] β the agent checks on schedule and notifies you.