dsh-vidfetch
dsh-vidfetch —— 用于下载视频的 DeepSeek Harness 插件。
AI 分析
核心用途是让 Agent 具备视频下载能力。适合需要让 AI 自动根据 URL 提取并下载视频到指定本地目录的任务场景。
安裝
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:anaksunamu/dsh-vidfetch說明文件
閱讀完整 README ↗Usage
The model calls fetch_video with two required parameters:
| Parameter | Type | Description |
|---|---|---|
url | string | The URL where the video is located. |
dir | string | Output 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": [] }