install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/ahsbnb/wechat-channel-live-replay" ~/.claude/skills/clawdbot-skills-wechat-channel-live-replay && rm -rf "$T"
manifest:
skills/ahsbnb/wechat-channel-live-replay/SKILL.mdsource content
SKILL.md for wechat-channel-live-replay
Description
这是一个专业的微信视频号直播回放下载工具。它通过调用 TikHub API 搜索视频号用户,获取其直播历史记录,并按指定日期筛选和下载回放视频。
该技能支持自动将下载的直播视频转写为文字稿,并保存到
live-replay-analyzer 技能的输入目录中,作为直播复盘的前置数据准备工具。
⚠️ Prerequisites (前置条件)
在使用本技能前,您必须在您的系统上完成以下配置:
-
配置 TikHub Token: 请在
中添加~/.openclaw/config.json
。tikhub_api_token{ "tikhub_api_token": "YOUR_TIKHUB_API_TOKEN" } -
安装 ffmpeg: 本技能需要使用
从视频中提取音频。ffmpeg- 请从 ffmpeg 官网 下载。
- 安装后,必须将
的可执行文件路径添加到系统的ffmpeg
环境变量中。PATH
How to Use
Parameters
(必填): 视频号名称(搜索关键词)。--keywords
(可选): 指定日期,格式--date
。不指定则下载最新一次直播回放。YYYY-MM-DD
(可选): 输出目录,默认为--output-dir
。workspace/data
(可选): 跳过语音转文字步骤,只下载视频。--no-transcribe
Example Invocation
下载最新回放并转写:
# AI 应动态查找 python 路径 python path/to/export.py --keywords "视频号名称"
下载指定日期的回放:
# AI 应动态查找 python 路径 python path/to/export.py --keywords "视频号名称" --date "2026-03-19"
只下载视频,不转写:
# AI 应动态查找 python 路径 python path/to/export.py --keywords "视频号名称" --no-transcribe
Output
- 视频文件:
,保存在输出目录中。{昵称}_{日期}_{时间戳}.mp4 - 文字稿:
,保存在script.txt
目录中。skills/live-replay-analyzer/input/{视频号名称}/{日期}/ - 汇总报告:
,包含任务执行的所有详细信息。wechat_replay_{关键词}_{时间戳}.json
Integration
本技能与
live-replay-analyzer 技能紧密集成:
- 本技能下载的直播视频会被转写为
。script.txt
会自动保存到script.txt
的输入目录中。live-replay-analyzer- 用户可以直接调用
技能,使用本技能生成的文字稿来生成复盘报告。live-replay-analyzer