anaksunamu/dsh-vidfetch0

dsh-vidfetch

dsh-vidfetch — a DeepSeek Harness plugin to download videos.

包名
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": [] }