Best use case
SKILL.md - 部署 WeWe RSS 微信公众号 RSS 服务 is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
## 触发条件
Teams using SKILL.md - 部署 WeWe RSS 微信公众号 RSS 服务 should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/wewe-rss-deploy/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How SKILL.md - 部署 WeWe RSS 微信公众号 RSS 服务 Compares
| Feature / Agent | SKILL.md - 部署 WeWe RSS 微信公众号 RSS 服务 | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
## 触发条件
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
SKILL.md Source
# SKILL.md - 部署 WeWe RSS 微信公众号 RSS 服务
## 触发条件
当 WeWe RSS 服务未运行(端口 4000 无响应),或用户要求部署 WeWe RSS 项目时激活。
## 功能概述
部署 WeWe RSS 服务,通过微信读书获取微信公众号文章,生成 RSS 订阅源。
## 前置条件
- Node.js >= 16
- pnpm 已安装
- Python 3.x
## 项目信息
- GitHub:https://github.com/cooderl/wewe-rss
- 安装后路径:`~/.openclaw/workspace/wewe-rss-main`
---
## 部署步骤
### Step 1:克隆项目
```bash
# 克隆到 workspace
git clone https://github.com/cooderl/wewe-rss.git ~/.openclaw/workspace/wewe-rss-main
```
如果 Git 克隆失败,使用 curl 下载压缩包:
```bash
# 下载
curl -L "https://github.com/cooderl/wewe-rss/archive/refs/heads/main.zip" -o /tmp/wewe-rss.zip
# 解压(自动生成 wewe-rss-main 目录)
unzip -o /tmp/wewe-rss.zip -d ~/.openclaw/workspace/
# 清理
rm /tmp/wewe-rss.zip
```
### Step 2:安装依赖
```bash
cd ~/.openclaw/workspace/wewe-rss-main
pnpm install
```
### Step 3:配置 SQLite 数据库
**切换 Prisma schema(项目默认是 MySQL,需要改为 SQLite):**
```bash
# 进入 server 目录
cd ~/.openclaw/workspace/wewe-rss-main/apps/server
# 检查当前 prisma 目录
ls prisma/
# 删除 MySQL schema(如果存在)
rm -rf prisma/
# 重命名 SQLite schema
mv prisma-sqlite prisma
```
**创建数据目录:**
```bash
mkdir -p ~/.openclaw/workspace/wewe-rss-main/apps/server/data
mkdir -p ~/.openclaw/workspace/wewe-rss-main/apps/data
```
### Step 4:配置环境变量
创建配置文件 `~/.openclaw/workspace/wewe-rss-main/apps/server/.env`:
```env
HOST=0.0.0.0
PORT=4000
# 使用 SQLite
DATABASE_URL="file:../data/wewe-rss.db"
DATABASE_TYPE="sqlite"
# 访问授权码(自定义,建议设置复杂密码)
AUTH_CODE=your-secret-code-here
# 自动提取全文内容
FEED_MODE="fulltext"
# 服务地址
SERVER_ORIGIN_URL=http://localhost:4000
# 定时更新 Cron(每天 5:35 和 17:35 更新)
CRON_EXPRESSION="35 5,17 * * *"
# 微信读书转发服务(公共可用)
PLATFORM_URL="https://weread.111965.xyz"
# 关闭 HTML 清理(保留完整内容)
ENABLE_CLEAN_HTML=false
# 更新延迟(秒)
UPDATE_DELAY_TIME=60
# 每分钟最大请求数
MAX_REQUEST_PER_MINUTE=60
```
### Step 5:初始化数据库
```bash
cd ~/.openclaw/workspace/wewe-rss-main/apps/server
# 设置环境变量
export DATABASE_URL="file:../data/wewe-rss.db"
export DATABASE_TYPE="sqlite"
# 生成 Prisma Client
npx prisma generate
# 初始化数据库
npx prisma migrate deploy
```
### Step 6:构建项目
```bash
cd ~/.openclaw/workspace/wewe-rss-main
pnpm run -r build
```
如果构建时出现 MySQL 相关错误,重新检查 Step 3:
```bash
# 确认 prisma 目录是 sqlite 版本
cat ~/.openclaw/workspace/wewe-rss-main/apps/server/prisma/schema.prisma | grep provider
# 应该显示:provider = "sqlite"
```
### Step 7:启动服务
**直接运行(当前 session):**
```bash
cd ~/.openclaw/workspace/wewe-rss-main
pnpm run start:server
```
**后台运行(PM2):**
```bash
# 安装 PM2(如果未安装)
npm install -g pm2
# 启动服务
cd ~/.openclaw/workspace/wewe-rss-main
pm2 start apps/server/dist/main.js --name wewe-rss
# 开机自启
pm2 save
pm2 startup
```
### Step 8:保存安装路径
为了后续 Skill 能够找到项目,将路径写入配置:
```bash
mkdir -p ~/.openclaw/workspace/tools/
echo "~/.openclaw/workspace/wewe-rss-main" > ~/.openclaw/workspace/tools/wewe-rss-config.txt
```
### Step 9:验证部署
**检查服务是否运行:**
```bash
# Windows
netstat -ano | findstr ":4000"
# Mac/Linux
lsof -i :4000
```
**访问 Web UI:**`http://localhost:4000`
---
## 使用流程
1. 打开 `http://localhost:4000`
2. 点击「账号管理」→「添加账号」→ 微信读书扫码登录
3. 进入「公众号源」→「添加」→ 粘贴公众号分享链接
4. 订阅后返回文章列表
---
## API 接口
| 接口 | 说明 |
|------|------|
| `GET /feeds/{mp_id}.json?limit=10` | 获取公众号文章列表 |
| `GET /feeds/{mp_id}/{index}.json` | 获取指定文章正文 |
| `GET /api/v1/feeds` | 列出所有已订阅公众号 |
---
## 项目结构
```
~/.openclaw/workspace/wewe-rss-main/
├── apps/
│ ├── server/
│ │ ├── data/ # SQLite 数据库目录
│ │ │ └── wewe-rss.db
│ │ ├── dist/ # 构建输出
│ │ ├── prisma/ # 数据库 schema
│ │ └── .env # 环境配置
│ └── data/ # 数据文件软链接
└── package.json
```
---
## 常见问题
| 问题 | 解决方案 |
|------|----------|
| `pnpm install` 失败 | 检查 Node.js 版本,确保 >= 16 |
| 构建报错 schema 相关 | 确认已切换到 SQLite schema(Step 3) |
| 数据库未创建 | 运行 `npx prisma migrate deploy` |
| 服务无法访问 | 检查防火墙,确保 4000 端口开放 |
| 微信读书登录失败 | 使用推荐 PLATFORM_URL,或检查网络 |
| 重启后服务消失 | 使用 PM2 后台运行(Step 7) |
---
## 卸载
```bash
# 停止服务
pm2 delete wewe-rss
# 删除项目
rm -rf ~/.openclaw/workspace/wewe-rss-main
# 清理配置
rm -f ~/.openclaw/workspace/tools/wewe-rss-config.txt
```
---
> 娆㈣繋鍏虫敞浣滆€呭井淇″叕浼楀彿锛?*寮€璁板仛浜у搧**Related Skills
wewe-rss-reader
微信公众号文章阅读技能。当用户发来公众号文章链接、需要阅读理解文章内容时使用。通过本地部署的 WeWe RSS 服务获取文章全文并转为纯文本。Requires: 无(调用本地 REST API,首次部署见 references/deployment.md)。
---
name: article-factory-wechat
humanizer
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
find-skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
tavily-search
Use Tavily API for real-time web search and content extraction. Use when: user needs real-time web search results, research, or current information from the web. Requires Tavily API key.
baidu-search
Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
agent-autonomy-kit
Stop waiting for prompts. Keep working.
Meeting Prep
Never walk into a meeting unprepared again. Your agent researches all attendees before calendar events—pulling LinkedIn profiles, recent company news, mutual connections, and conversation starters. Generates a briefing doc with talking points, icebreakers, and context so you show up informed and confident. Triggered automatically before meetings or on-demand. Configure research depth, advance timing, and output format. Walking into meetings blind is amateur hour—missed connections, generic small talk, zero leverage. Use when setting up meeting intelligence, researching specific attendees, generating pre-meeting briefs, or automating your prep workflow.
self-improvement
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Claude ('No, that's wrong...', 'Actually...'), (3) User requests a capability that doesn't exist, (4) An external API or tool fails, (5) Claude realizes its knowledge is outdated or incorrect, (6) A better approach is discovered for a recurring task. Also review learnings before major tasks.
botlearn-healthcheck
botlearn-healthcheck — BotLearn autonomous health inspector for OpenClaw instances across 5 domains (hardware, config, security, skills, autonomy); triggers on system check, health report, diagnostics, or scheduled heartbeat inspection.
linkedin-cli
A bird-like LinkedIn CLI for searching profiles, checking messages, and summarizing your feed using session cookies.
notebooklm
Google NotebookLM 非官方 Python API 的 OpenClaw Skill。支持内容生成(播客、视频、幻灯片、测验、思维导图等)、文档管理和研究自动化。当用户需要使用 NotebookLM 生成音频概述、视频、学习材料或管理知识库时触发。