DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Vidfetch — DSH Plugin for DeepSeek Harness
← Plugins
V

dsh-vidfetch

Vidfetch

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

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:anaksunamu/dsh-vidfetch#b836f458fe67456917e2a4df5511390a2a06a7ee
READMECompatibilityVersions

Compatibility and provenance

Vidfetch is published as dsh-vidfetch and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/24/2026

Versions

0.1.0stable
8/24/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/24/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in search-research.

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-pluginDeepSeek Harness tool plugin that exposes BrowserSkill browser automation (browser_* tools) to the modelWeknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Free Searchdsh-free-searchFree web search for DeepSeek Harness: 13 engines (Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl keyless; Parallel/Perplexity/SerpBase/DeepSeek with key) + time filtering + platform search + web_fetch, with web settings UI.Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

README

dsh-vidfetch

Give your DeepSeek Harness agent the ability to download a video straight from a URL.

What it does

Registers a single tool, fetch_video, that the model can call to download the main video from any URL.

  • Downloads the best available audio+video stream into the directory the agent specifies.
  • Returns ok plus the list of files it wrote. Or a short error cause if the URL is unsupported.
  • No configuration file or extra setup on the agent side: just point dir somewhere writable.

Installation

dsh plugin --profile web add dsh-vidfetch

From this repository:

git clone https://github.com/anaksunamu/dsh-vidfetch.git 
npm install --prefix ./dsh-vidfetch
npm run build --prefix ./dsh-vidfetc
dsh plugin --profile web add ./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": [] }

Requirements

  • DSH: tested against the 0.1.1-rc.x line.
  • Node: ^22.19.0 || >=24.0.0.
  • yt-dlp: provided by dependency.

Permissions & network

Clear the risk explicitly before trusting an agent tool:

  • Outbound network: each call fetches whatever URL the model passes. The plugin sends no telemetry and contacts no external service of its own.
  • Filesystem write: files land in the dir the model supplies (default: current working directory if empty). The model decides the path — point dir at a sandboxed or scratch folder if you don't want arbitrary writes.
  • Subprocess: runs a yt-dlp process per call; it inherits the host's environment.
  • Untrusted content warning: videos fetched from random URLs are untrusted files. Don't pipe them straight into execution pipelines.
  • No API key required by this plugin.

License & listing

  • License: MIT.
  • Not affiliated with DeepSeek AI.
  • Compatibility notes above are for DSH preview 0.1.1-rc.x.