wechat-articles

搜索和读取微信公众号文章的完整工具,支持关键词搜索与全文提取。 **只要用户提到以下任何场景,必须使用此 skill:** (1) 搜索公众号文章、按关键词查找微信内容 (2) 读取、摘要、分析、翻译 mp.weixin.qq.com 链接的内容 (3) 用户说"帮我找公众号文章"、"读这篇微信文章"、"搜索公众号"、"抓取公众号" (4) 用户粘贴了微信文章 URL 并要求提取或处理内容 (5) 需要从微信生态获取资讯、报告、行业信息 即使用户没有明确说"微信",只要涉及公众号内容获取或提取,也应触发此 skill。 Triggers: 搜索公众号, 微信文章, 读这篇公众号, 抓取公众号, wechat article, mp.weixin.qq.com, 公众号内容, 微信链接

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "wechat-articles" with this command: npx skills add johan-oilman/wechat-articles

微信公众号文章搜索与读取 (v1.0)

搜索和读取微信公众号文章的完整工具,支持 simple(快速)和 playwright(稳定)双模式 + auto 自动切换。

快速开始

搜索文章

python3 scripts/search.py "关键词" [数量]

示例:

python3 scripts/search.py "绿电直连政策" 10

读取文章

python3 scripts/read.py "微信文章URL" [--mode MODE] [--screenshot PATH]

模式选择:

  • --mode=simple - 快速模式(requests + BeautifulSoup)
  • --mode=playwright - 稳定模式(真实浏览器)
  • --mode=auto - 自动切换(默认,推荐)

Python API 使用(推荐)

import sys
sys.path.append('scripts')

from wechat_articles import search_articles, read_article

# 搜索文章
articles = search_articles("绿电直连政策", top_num=5)

# 读取文章(建议加错误处理)
try:
    content = read_article(articles[0]['url'], mode='auto')
    print(f"标题: {content['title']}")
    print(f"公众号: {content['author']}")
    print(f"发布时间: {content['publish_time']}")  # 若有
    print(f"读取模式: {content['mode']}")
    for p in content['paragraphs'][:10]:
        print(p)
except Exception as e:
    print(f"读取失败: {e}")
    # auto 模式失败时会抛出异常,建议捕获后降级处理或提示用户

返回数据结构说明

read_article() 返回一个字典,包含以下字段:

字段类型说明
titlestr文章标题
authorstr公众号名称
publish_timestr发布时间(部分文章可能为空)
paragraphslist[str]正文段落列表
modestr实际使用的读取模式(simpleplaywright

search_articles() 返回列表,每项包含:

字段类型说明
titlestr文章标题
urlstr文章链接(有时效性,建议尽快读取)
authorstr公众号名称
digeststr文章摘要

模式对比

模式速度资源稳定性适用场景
simple快 (0.5-1s)轻量一般简单页面,频繁调用
playwright慢 (3-5s)较重很高复杂页面,稳定优先
auto自适应自适应最佳默认推荐

安装依赖

Simple 模式(默认,轻量快速)

pip install beautifulsoup4 requests miku-ai

这些包通常已随 agent-reach 安装。

Playwright 模式(可选,推荐稳定读取)

pip install playwright
playwright install chromium --with-deps

--with-deps 会自动安装 Linux 系统依赖(如 libnss3、libgbm 等),首次运行需几分钟。

注意事项

  • 搜索结果 URL 有时效性,建议尽快读取
  • 避免高频请求防止触发反爬
  • auto 模式优先尝试 simple,失败后自动切换 playwright;若两者均失败则抛出异常
  • Playwright 首次运行需安装 Chromium(约几分钟)

欢迎反馈 & PR!GitHub: https://github.com/johan-oilman/wechat-articles

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Fast Douyin Publish

抖音视频自动发布助手。一键上传视频到抖音,支持自动文案生成和标签优化。

Registry SourceRecently Updated
General

Skills Finder

Intelligent skill matcher that searches multiple skill marketplaces (ClawHub & Skills.sh) in real-time. Supports ANY language for user input, multi-step skil...

Registry SourceRecently Updated
General

Claw Self Improving Plus

Turn raw mistakes, corrections, discoveries, and repeated decisions into structured learnings and promotion candidates. Use when the user wants a conservativ...

Registry SourceRecently Updated