Install
openclaw skills install popmart-stock-monitorMonitor PopMart product restock status across multiple channels including WeChat Mini Programs, Taobao, JD.com, and Tmall. Use when user wants to track availability of specific PopMart products and receive notifications when items are back in stock.
openclaw skills install popmart-stock-monitorThis skill monitors PopMart product availability across major Chinese e-commerce platforms:
# Install required dependencies
pip install requests beautifulsoup4 selenium playwright
Monitor PopMart "Molly Ocean" series on all platforms
Check PopMart Labubu blind box stock status
Track availability of PopMart Dimoo Space series
Monitor PopMart product ID 12345 every 30 minutes
Check PopMart stock with priority: JD > Tmall > Taobao
Alert me via Feishu when PopMart Molly is back in stock
🚨 POPMART RESTOCK ALERT 🚨
Product: {product_name}
Platform: {platform}
Status: Back in Stock!
Link: {product_url}
Price: {price}
Last Checked: {timestamp}
Create popmart_config.json in your workspace:
{
"products": [
{
"name": "Molly Ocean Series",
"sku": "PM-MLY-OCEAN-2026",
"platforms": ["wechat", "taobao", "jd", "tmall"],
"priority": ["jd", "tmall", "taobao", "wechat"]
}
],
"check_interval_minutes": 30,
"notification": {
"channel": "feishu",
"webhook_url": "YOUR_FEISHU_WEBHOOK_URL"
},
"api_keys": {
"taobao_app_key": "YOUR_TAOBAO_APP_KEY",
"taobao_app_secret": "YOUR_TAOBAO_APP_SECRET",
"jd_app_key": "YOUR_JD_APP_KEY",
"jd_app_secret": "YOUR_JD_APP_SECRET"
}
}
stock_detection.pyEnable debug logging by setting DEBUG=true in environment:
DEBUG=true python popmart_monitor.py