with one click
download-video
**下载视频或音频**。使用内置下载脚本抓取在线视频并返回落盘路径。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
**下载视频或音频**。使用内置下载脚本抓取在线视频并返回落盘路径。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
生成长文或图文发布稿,也支持直接基于本地 md/txt 素材写作;可自动搜索资料、生成配图,并支持多渠道发布,当前已支持微信公众号和小红书发布通道。支持按阶段(search/write/illustrate/publish)单独执行或全流程编排。
**自选股助手**。通过内置股票服务管理当前用户的自选股,并查询实时行情。
管理周期性定时任务(Cron),支持添加、查看、删除任务。
提供日常基础查询能力,支持天气、时间、加密货币价格和法币汇率。
**文生图**。根据提示词生成图片并返回图片文件。
Ikaros-side unfinished-task tracker for listing open tasks, inspecting closure contracts, updating task follow-up state, and explicitly closing tasks (completed/failed).
| api_version | v3 |
| name | download_video |
| description | **下载视频或音频**。使用内置下载脚本抓取在线视频并返回落盘路径。 |
| triggers | ["下载","download","save","保存视频","视频下载","get video"] |
| policy_groups | ["media"] |
| platform_handlers | true |
| input_schema | {"type":"object","properties":{}} |
| permissions | {"filesystem":"workspace","shell":true,"network":"limited"} |
| entrypoint | scripts/execute.py |
此技能已经自带完整下载能力,入口是 scripts/execute.py,底层由 scripts/services/download_service.py 负责下载、路径管理与大文件判断。
downloads/。download_dir=<绝对目录>saved_path=<绝对文件路径>is_too_large=true|falseis_too_large=true,文件依然保留在同一个 downloads/ 目录里,供后续处理。通过 bash 在技能目录执行:
cd skills/builtin/download_video
python scripts/execute.py <url> [--format video|audio]
<url>
必填,目标视频地址。--format video
默认值,下载最佳可用视频。--format audio
只提取音频,输出 mp3。--format video。--format audio。saved_path,再告诉用户真实落盘位置。yt-dlp 命令,不要自定义输出目录,不要绕过脚本。cd skills/builtin/download_video
python scripts/execute.py "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
python scripts/execute.py "https://www.bilibili.com/video/BV1xx411c7mD" --format audio
-o 或额外输出目录。