ReelTalkReelTalk
v1.0.1ReelTalk——粘贴任意 Instagram 链接即可开聊。本地提取音频、Whisper 转录、生成摘要,并持续对话。
0· 0·0 当前·0 累计
安全扫描
OpenClaw
安全
high confidence该技能所请求的工具、说明与安装步骤均与其声明用途相符(下载 Instagram 音频、本地使用 Whisper 转录、总结与对话),并未索取无关密钥或系统级权限。
评估建议
This 技能 应用ears to do what it says — 下载 audio with yt-dlp, transcribe locally with Whisper, summarize, and chat. Before 安装ing, consider: 1) 验证 the whisper and yt-dlp Homebrew formulas you will 安装 (ensure they come from trusted taps). 2) Confirm the Whisper 命令行工具 you 安装 truly 运行s locally and does not proxy audio to an external API if you require offline processing. 3) Be aware the first Whisper 模型 下载 is large (~461MB) and will be stored locally. 4) yt-dlp may need cookies or 记录in to 访问 private/res...详细分析 ▾
✓ 用途与能力
The name/description (transcribe Instagram audio locally) match the declared requirements: yt-dlp to fetch media and a local Whisper 命令行工具 to transcribe. Required binaries and brew 安装s are proportionate to this functionality.
✓ 指令范围
技能.md only instructs 运行ning yt-dlp and whisper on a user-supplied Instagram URL, storing temp audio in /tmp, transcribing, summarizing, and removing the temp file. It does not ask to read unrelated files, 环境 variables, or 发送 结果s to unknown external 端点s. Note: it mentions yt-dlp can handle 会话 设置up for restricted content — that may involve user-provided cookies/凭证s outside the 技能 but the 技能 itself doesn't 请求 them.
✓ 安装机制
安装 spec uses Homebrew formulas for yt-dlp and whisper (low-risk, typical for 命令行工具 工具s). As with any package 安装, 验证 the formula's provenance (third-party taps can exist); the 安装 mechanism itself is coherent with the 技能's needs and does not use arbitrary 下载 URLs.
✓ 凭证需求
The 技能 declares no 环境 variables or 凭证s, which is 应用ropriate. One caveat: 访问ing private Instagram content may require user-supplied cookies or 记录in handled by yt-dlp, but that is a delegated/optional requirement and is not 请求ed by the 技能 itself.
✓ 持久化与权限
always is false and the 技能 does not 请求 to modify other 技能s or 系统 设置tings. It 运行s ephemeral 下载s to /tmp and 清理s up, so it does not demand persistent elevated presence.
安全有层次,运行前请审查代码。
运行时依赖
OSmacOS · Linux
安装命令
点击复制官方npx clawhub@latest install reeltalk
镜像加速npx clawhub@latest install reeltalk --registry https://cn.longxiaskill.com 镜像可用
技能文档
ReelTalk 接收任意 Instagram 链接(reels、posts、stories、videos),即可获得完整转录、通俗英文摘要,并可继续追问内容相关问题——全程本地处理。
功能 接收用户提供的 Instagram 链接。 用 yt-dlp 提取音轨。 本地运行 OpenAI Whisper 转录(无云端 API)。 用通俗英文总结内容。 支持连续对话:用户可追问、索取食谱、学习技巧或展开讨论。
触发条件 用户分享 Instagram 链接(reel、post、story 或 video)。
工作流
- 运行 yt-dlp --list-formats ,找到仅音频格式 ID(audio only / m4a)。
- 下载:yt-dlp -f -o "/tmp/ig_audio.%(ext)s" ""
- 转录:whisper /tmp/ig_audio.m4a --model small --language en --task transcribe
- 返回完整转录 + 可读摘要,并邀请继续讨论。
- 清理:rm /tmp/ig_audio.m4a
依赖 yt-dlp(Homebrew: brew install yt-dlp) whisper(OpenAI Whisper,Homebrew: brew install whisper 或 pip install openai-whisper)
备注 Instagram 封锁未认证 API——yt-dlp 自动完成 session 设置。 Whisper small 英文模型在 CPU 上兼顾速度与精度。 首次运行会下载模型(约 461MB),之后缓存。 全部本地处理,无外部 API 上传。
标签 instagram, reel, audio, transcription, whisper, speech-to-text, yt-dlp, media, summarization, video