Read WeChat Article
Quick Start
Given a WeChat article URL, extract the clean text content.
bash
python3 scripts/fetch_wechat.py "https://mp.weixin.qq.com/s/xxxxx"
Usage
When user provides a WeChat article URL, execute the fetch script and return the extracted text content.
Input: WeChat article URL (e.g., https://mp.weixin.qq.com/s/HsGLmyTttGGVCTVfmaaRHw)
Output: Clean article text, ready for further processing (summarization, analysis, script generation, etc.)
Implementation
The skill uses Playwright to:
- •Launch a headless Chromium browser
- •Navigate to the article URL
- •Extract content from
#js_contentelement - •Clean up script and style tags
- •Return plain text content
Resources
scripts/fetch_wechat.py
Core script for fetching article content. Run via Bash tool.