js-wechat-ops-skill · v1.0.0 · 2026-04-11 · sha256 fb5a97f4829c90ed

js-wechat-ops-skill v1.0.0A

Immutable. This exact content is served forever at /api/v1/blob/fb5a97f4829c90ed.

---
name: js-wechat-ops-skill
description: 微信公众号内容读取 skill,基于 JS-Eyes 浏览器自动化获取文章标题、作者、正文、封面和图片列表。
version: 1.0.0
metadata:
  openclaw:
    emoji: "\U0001F4F0"
    homepage: https://github.com/imjszhang/js-eyes
    requires:
      bins:
        - node
---

# js-wechat-ops-skill

面向微信公众号文章详情读取的 skill。首版聚焦单篇文章,不做搜索、历史文章列表和评论区。

## 前置条件

1. JS-Eyes Server 已运行
2. 浏览器已安装 JS-Eyes 扩展并连接到服务器
3. 浏览器可正常访问微信公众号文章页面

## 提供的 AI 工具

| 工具 | 说明 |
|------|------|
| `wechat_get_article` | 读取微信公众号文章详情,返回标题、作者、摘要、正文、封面图和图片列表 |

## CLI

```bash
node skills/js-wechat-ops-skill/index.js article "https://mp.weixin.qq.com/s/xxxx" --pretty
```

## 编程 API

```javascript
const { BrowserAutomation } = require('./lib/js-eyes-client');
const { getArticle } = require('./lib/api');

const browser = new BrowserAutomation('ws://localhost:18080');
const result = await getArticle(browser, 'https://mp.weixin.qq.com/s/xxxx');
```