```bash
# Ubuntu/Debian
sudo apt install python3 nodejs npm
# macOS
brew install python node
# Windows
# 从 https://nodejs.org/ 下载 Node.js
# 从 https://python.org/ 下载 Python
```
```bash
openclaw skill install wechat-look-ocr
```
```bash
cd ~/.openclaw/skills/wechat-look-ocr/ocr_node
npm install
```
?scene=1参数绕过验证码在OpenClaw中直接使用:
读取微信文章 https://mp.weixin.qq.com/s/xxx
?scene=1scene=1 (覆盖重复参数)该技能采用 Python + Node.js 混合架构:
scene=1参数 requests - HTTP 请求库subprocess - 启动 Node.js 进程json - JSON 数据处理pathlib - 路径操作re - 正则表达式tesseract.js - OCR 识别引擎node-fetch - HTTP 请求库该技能在运行时会:
{
"title": "文章标题",
"author": "作者名",
"text_content": "提取的正文内容",
"image_count": 5,
"ocr_text": "[图片1] 识别的文字内容...",
"url": "规范化后的URL",
"status": "success"
}
scene=1共 1 个版本