anaksunamu/dsh-vidfetch0

dsh-vidfetch

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

AI 分析

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

パッケージ
dsh-vidfetch
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/08/24

インストール

$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:

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