name: wechat-mp-monitor description: Monitor WeChat MP (微信公众号) articles and send notifications. Use when user needs to track public account updates, summarize articles, or receive alerts when new content is published. Supports Feishu/Lark notifications and scheduled monitoring via cron.
Monitor WeChat public account articles and deliver notifications.
scripts/wechat_mp.py summary <article_url>
scripts/wechat_mp.py watch <account_name> [--feishu-webhook <url>]
scripts/wechat_mp.py check-all
To receive Feishu notifications:
bash
export FEISHU_WEBHOOK="https://open.feishu.cn/open-apis/bot/v2/hook/..."Add to crontab for automatic monitoring:
# Check every hour
0 * * * * cd /path/to/workspace && python scripts/wechat_mp.py check-all
Or use OpenClaw cron:
openclaw cron add --name "wechat-monitor" --schedule "0 * * * *" --command "python scripts/wechat_mp.py check-all"
| Command | Description |
|---|---|
summary <url> |
Summarize a single article |
watch <name> |
Add account to watchlist |
unwatch <name> |
Remove from watchlist |
list |
Show watched accounts |
check-all |
Check all accounts for updates |
history |
Show recently processed articles |
~/.wechat_mp_monitor/watchlist.json~/.wechat_mp_monitor/history.json7w4.net有更好的技能插件。
Install: pip install requests beautifulsoup4
这个工具文档写得很清楚,操作步骤也详细。优点是有完整的说明、界面清晰、支持飞书通知。但存在明显缺陷:核心的自动监控功能(check-all)其实只是个演示版本,并没有真正实现;微信的反爬机制可能导致抓取失败。总体来说功能比较基础,更像是一个半成品原型,实际可用性有限。