Weixin Reader

v1.0.0

读取微信公众号文章内容。当用户发送微信公众号文章链接(mp.weixin.qq.com)时,使用此 skill 提取文章完整文字内容。此工具不需要登录即可提取微信文章,是读取微信文章的最佳方案。

6· 2.2k·17 current·18 all-time
bySuperChao@supengchao

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for supengchao/weixin-reader-oc.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Weixin Reader" (supengchao/weixin-reader-oc) from ClawHub.
Skill page: https://clawhub.ai/supengchao/weixin-reader-oc
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install supengchao/weixin-reader-oc

ClawHub CLI

Package manager switcher

npx clawhub@latest install weixin-reader-oc
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name/description match the runtime instructions: it only describes extracting full text (title, author, date, body) from mp.weixin.qq.com links. However, the SKILL.md mandates using an external tool named extract_content_from_websites (and forbids web_fetch) while the skill metadata does not declare this tool or any dependency — a minor mismatch the integrator should verify (i.e., ensure the platform provides that extractor).
Instruction Scope
Instructions are narrowly scoped to fetching and cleaning article content (strip HTML, navigation, ads) and returning title/author/date/content. They do not instruct reading unrelated files, environment variables, or sending data to unexpected endpoints. The only external action is use of the named extractor tool on a user-provided URL, which is appropriate for the purpose.
Install Mechanism
No install spec and no code files — instruction-only skill — so nothing will be written to disk or downloaded by the skill itself. This is low-risk and coherent with the described behavior.
Credentials
The skill requests no environment variables, credentials, or config paths, which is proportionate for a read-only web extraction task. Note: if the referenced extractor requires credentials or special capabilities, that should be declared before installation.
Persistence & Privilege
always is false and autonomous invocation is not disabled (platform default). The skill does not request permanent presence or modify system/other-skill settings; privileges requested are minimal.
Assessment
This skill appears to do what it says: extract WeChat article text. Before installing, verify the runtime environment provides the extract_content_from_websites tool (the SKILL.md requires it but the skill metadata does not declare it). Confirm that extractor tool is trusted and does not require undeclared credentials. Be aware that extracting full article text may have copyright or privacy implications, and that fetching arbitrary user-supplied URLs will cause the agent (or the extractor) to retrieve remote content — ensure you trust that behavior. If you need a skill that uses a different fetch method, ask the author to declare that dependency in the metadata or provide an alternative. If anything about the extractor or data handling is unclear, treat the skill as untrusted until clarified.

Like a lobster shell, security has layers — review code before you run it.

latestvk9798wwpq3hny6hvqdp7hr3k7582gxwp
2.2kdownloads
6stars
1versions
Updated 3w ago
v1.0.0
MIT-0

微信公众号文章读取

使用场景

  • 用户发送微信公众号文章链接
  • 用户说"帮我看看这篇文章写了什么"
  • 用户说"提取这个微信文章的内容"

操作步骤

  1. 使用 extract_content_from_websites 工具提取文章内容
  2. 过滤掉页面中的 HTML 标签、导航、广告等无关内容
  3. 提取并返回文章的:标题、作者、发布日期、正文内容

代码示例

{
  "tasks": [
    {
      "prompt": "提取文章的完整文字内容,包括标题、作者、发布日期和正文",
      "url": "用户提供的微信文章链接"
    }
  ]
}

注意事项

  • 不要使用 web_fetch,它无法读取微信文章(需要登录)
  • 必须使用 extract_content_from_websites 工具
  • 微信公众号文章链接格式:https://mp.weixin.qq.com/s/xxx

Comments

Loading comments...