← 返回 Skills 市场
1596
总下载
0
收藏
9
当前安装
4
版本数
在 OpenClaw 中安装
/install douyin-video
功能描述
抖音视频下载工具 - 解析抖音链接,下载视频并发送
使用说明 (SKILL.md)
抖音下载器
功能
- 🎬 解析抖音分享链接
- 📥 下载抖音视频到本地
- 💾 返回视频文件路径
使用方法
在 OpenClaw 中调用
node ~/.openclaw/workspace/skills/douyin-downloader/scripts/douyin.js "抖音分享链接"
输出
返回视频信息和本地文件路径:
- 视频标题
- 作者
- 点赞数
- 收藏数
- 分享数
- 本地文件路径(
~/.openclaw/workspace/douyin-downloads/douyin_last.mp4)
注意:
- 视频文件保存在工作区目录,不会被系统自动清理
- 自动清理: 下载新视频时,会自动删除上一个视频
- 只保留一个视频: 始终使用固定文件名
douyin_last.mp4 - 节省空间: 不会累积多个视频文件
- 如需保留某个视频,请在下载后手动复制到其他目录
环境变量
无需配置,直接使用!
示例
输入:
https://v.douyin.com/FSfWiKriBuY/
输出:
{
"title": "这就是大大阮迪慧中的大大吗",
"author": "香菇菇",
"video_id": "7616783829047129778",
"file_path": "~/.openclaw/workspace/douyin-downloads/douyin_last.mp4",
"file_size": "3.73MB",
"statistics": {
"digg_count": 285756,
"share_count": 180347,
"collect_count": 40346
}
}
安全使用建议
This skill appears to implement a Douyin video downloader and mostly matches its description, but it will follow redirects and fetch whatever play_url it finds, then save a file under ~/.openclaw/workspace/douyin-downloads/douyin_last.mp4. Consider these precautions before installing: 1) Only run it in a restricted environment (sandbox or non-production account) because a malicious share URL could cause requests to internal services (SSRF) or arbitrary hosts. 2) Inspect and/or vendor the script locally rather than running unknown code directly. 3) Run as an unprivileged user and ensure network egress controls (block access to sensitive metadata or internal endpoints like 169.254.169.254). 4) Be aware it will overwrite the previous download and store files in your home directory; copy any video you want to keep. If you need higher assurance, ask the author for input validation (restrict hostnames, validate URL patterns) or add size/time limits on downloads.
功能分析
Type: OpenClaw Skill
Name: douyin-video
Version: 1.0.3
The skill is a legitimate Douyin video downloader that parses shared links and saves the video to a local workspace directory. The code in `scripts/douyin.js` uses standard Node.js built-in modules (http/https/fs) to fetch data and manage files, with no evidence of data exfiltration, malicious execution, or prompt injection.
能力评估
Purpose & Capability
Name/description, required binary (node), SKILL.md, and included script align with a Douyin downloader. Minor mismatch: SKILL.md claims 'no environment variables needed', but the script reads HOME to build a path (normal but not declared). Overall capability requested (network fetch + write) is expected for a downloader.
Instruction Scope
The runtime instructions and script accept an arbitrary share URL and perform network requests (follow redirects) and then download the extracted play_url. There is no validation of hostname/URL, so a maliciously-crafted share page or redirect could cause the agent to request internal services (SSRF risk) or arbitrary external hosts. The script writes a fixed file under ~/.openclaw/workspace/douyin-downloads and deletes the previous file (no sandboxing or size limits).
Install Mechanism
Instruction-only skill with no install spec; only requires node to run. No downloads or archive extraction during install, which is low-risk.
Credentials
The skill requests no credentials or env vars. It does read process.env.HOME to construct paths (expected). No other sensitive environment access is requested. Proportional to purpose, but HOME usage should be noted in the README (it currently says '无需配置').
Persistence & Privilege
always:false and no special privileges or persistence. The skill writes files to the user's workspace directory but does not modify other skills or system-wide settings. Autonomous invocation is allowed by default (platform normal) — combine with the network concerns above when deciding to install.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install douyin-video - 安装完成后,直接呼叫该 Skill 的名称或使用
/douyin-video触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.3
- Updates file save location: Videos are now saved to a fixed path `~/.openclaw/workspace/douyin-downloads/douyin_last.mp4`.
- Keeps storage clean: Only one video file is retained; downloading a new video deletes the previous one automatically.
- No system auto-cleanup: Video files will not be automatically deleted by the system.
- Users must manually copy videos they wish to keep before downloading a new one.
v1.0.2
- Output details expanded: now includes 收藏数 (collect count) and 分享数 (share count) in video statistics.
- Output JSON fields updated for clarity: 文件路径 now named file_path, 文件大小 named file_size, and statistics grouped.
- Sample output and example values improved for greater accuracy.
- Documentation wording refined for clearer usage instructions.
v1.0.1
- Updated description for clarity; removed "无水印" to focus on general video downloads.
- Updated required system dependency from "curl" to "node".
- Reworded feature list to reflect downloads of Douyin videos.
- No functional or code changes detected.
v1.0.0
- Initial release of douyin-video tool for downloading Douyin videos without watermark
- Parses Douyin share links and downloads the video file
- Returns video title, author, like count, and local file path
- Requires curl; no environment configuration needed
- Easily callable from OpenClaw with a single command
元数据
常见问题
douyin-video 是什么?
抖音视频下载工具 - 解析抖音链接,下载视频并发送. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1596 次。
如何安装 douyin-video?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install douyin-video」即可一键安装,无需额外配置。
douyin-video 是免费的吗?
是的,douyin-video 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
douyin-video 支持哪些平台?
douyin-video 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 douyin-video?
由 andjie98(@andjie98)开发并维护,当前版本 v1.0.3。
推荐 Skills