anaksunamu/dsh-vidfetch0

dsh-vidfetch

dsh-vidfetch —— 用于下载视频的 DeepSeek Harness 插件。

AI 分析

核心用途是让 Agent 具备视频下载能力。适合需要让 AI 自动根据 URL 提取并下载视频到指定本地目录的任务场景。

包名
dsh-vidfetch
版本
0.1.0
许可证
MIT
最近更新
2026年8月24日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:anaksunamu/dsh-vidfetch

Usage

The model calls fetch_video with two required parameters:

ParameterTypeDescription
urlstringThe URL where the video is located.
dirstringOutput directory for the downloaded file.

Example call the agent makes:

{ "url": "https://example.com/watch/abc123", "dir": "~/downloads" }

Output:

{ "message": "ok", "files": ["downloads/video.mp4"] }

On failure, message contains a short error cause and files is empty:

{ "message": "Unsupported URL", "files": [] }