详细分析 ▾
运行时依赖
版本
Initial release of WeChat Article Reader skill. - Enables reading and summarizing full WeChat public account articles (mp.weixin.qq.com), overcoming JS rendering and anti-scraping blocks. - Detects shared article links or user requests related to WeChat articles and public accounts. - Uses browser automation to extract complete article text and images (including captions/alt text). - Handles content removal messages and login-required scenarios, informing the user when access is blocked. - Supports reading and presenting very long articles by increasing snapshot limits or sequential snapshots.
安装命令
点击复制本土化适配说明
WeChat Article Reader — 技能工具 安装说明: 安装命令:npx clawhub@latest install wechat-reader 支持国内镜像加速,使用 --registry https://cn.longxiaskill.com 参数可加速下载 该技能用于微信相关操作,可能需要相应的平台账号或API密钥
技能文档
Why This Skill Exists
WeChat public account articles (mp.weixin.qq.com/s/...) are fully JS-rendered and have anti-scraping measures. web_fetch only returns the title. Browser automation is required to get the full content.
How to Read an Article
- Detect
mp.weixin.qq.comURLs in user messages - Open with browser tool:
browser(action="open", url="", profile="openclaw")
- Wait for render, then snapshot:
browser(action="snapshot", targetId=, maxChars=15000)
- Close the tab:
browser(action="close", targetId=)
- Present the content to the user (summarize or translate as requested)
Tips
- Articles may contain images — snapshot captures alt text and captions
- Very long articles: increase
maxCharsto 30000 or use multiple snapshots with scrolling - If the page shows "此内容因违规无法查看" (content removed), inform the user
- Some articles require WeChat login — if snapshot shows a login wall, inform the user
- For multiple articles, process sequentially to avoid resource waste