抓取微信公众号文章、搜索公众号、文章列表、爆款查询与分析。触发场景:mp.weixin.qq.com 链接、微信公众号文章、公众号文章分析。
编程
Weixin Article Reader
试用Extract the title, author, publish date, and full body text from Weixin official account article links on mp.weixin.qq.com. Use this skill when a user wants...
它能做什么
Extract the title, author, publish date, and full body text from Weixin official account article links on mp.weixin.qq.com. Use this skill when a user wants...
技能文档
Weixin Article Reader
Use this skill when the user provides a mp.weixin.qq.com article URL and wants the raw article text, or when article content must be extracted before summarization.
Usage
Prefer the bundled script:
python3 scripts/extract_wechat_article.py "https://mp.weixin.qq.com/s/xxxx"
If the current working directory is not the skill root, first locate the installed weixin-article-reader skill directory and run scripts/extract_wechat_article.py from there.
The script returns JSON with:
titleauthorpublish_datecontentsource_url
Workflow
- Detect a
mp.weixin.qq.comarticle URL. - Run the bundled extraction script.
- If the user wants the full article, return title, author, publish date, and body text.
- If the user wants a summary, first confirm the extracted
contentis non-empty, then summarize it.
Response Guidance
- For full-text requests, return the title, author, publish date, and then the article body.
- For summaries, summarize the extracted
contentand include the title plus source URL. - If
publish_dateis empty, do not invent a date. State that the page did not expose a publish date in a reliably parsed form.
Notes
- Do not use
pip install. - Do not require
beautifulsoup4orrequests. - Prefer the bundled script instead of relying on unavailable generic web-extraction helpers.
- If the script returns empty content, explain that the article may use a special page structure or access restriction.
- This skill only applies to
mp.weixin.qq.comarticle pages. If the URL is from another domain, say the skill does not apply.
相关技能
Extract, summarize, and synthesize WeChat public account articles into structured knowledge cards
从微信公众号抓取文章并保存为本地 Markdown 文件。当用户提到"抓取公众号"、"获取公众号文章"、"下载微信文章"、"爬公众号"、"保存公众号内容",或指定公众号名称和日期范围想要获取文章时,使用此 skill。抓取完成后记录所有保存的 md 文件路径,方便用户后续问答。
Extract public WeChat Official Account articles from mp.weixin.qq.com links or saved HTML into clean Markdown or structured JSON, including title, account na...
AI-powered WeChat Official Account (公众号) content generator. Creates viral articles, product reviews, and monetized content optimized for the WeChat ecosystem...
使用 Playwright headed 模式 + 真实系统浏览器抓取微信公众号文章。 当用户给出 mp.weixin.qq.com 链接、说要抓取/下载公众号文章、 或遇到"环境异常"验证页时,必须使用本技能。 本技能会弹出真实浏览器窗口绕过微信反爬,提取文章标题、作者、正文, 并同时保存 .md 和 .htm...