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.

Video To Notes — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-video-to-notes

Video To Notes

Opt-in DeepSeek Harness skill bundle that turns course, lecture, tutorial, documentary, meeting, and talk videos into structured study notes.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-video-to-notes@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Video To Notes is published as dsh-video-to-notes 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
npm
Registry updated
9/21/2026

Versions

0.1.0stable
9/21/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
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/21/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

Related plugins

More verified plugins in vision-media.

Tool Describe Image@linxin666/dsh-tool-describe-imageModel-facing describe_image tool for the dsh web GUI: gives a text-only model image understanding by asking a vision-language model at an OpenAI-compatible endpoint to describe one image (local path, http(s) URL, or attachment reference). Hot-pluggable — Vision Routerdsh-vision-routerEyes for text-only DeepSeek Harness agents: built-in free vision chain (no key) + pixel-level vision tools (Q&A, grounding, crop, pixel diff, colors, OCR, SVG trace, cutout, screenshots). One-command install, no Python, image turns work like ordinary toolVision Toolkit@anionex/dsh-vision-toolkitDeepSeek Harness-native integration for agent-vision-toolkit: image Q&A, OCR, grounding, UI restoration, pixel diff, Artifacts, and Web UI.Deepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio and 27 editable video templates as a native DeepSeek Harness conversation view.

README

dsh-video-to-notes

Turn course, lecture, tutorial, documentary, meeting, and talk videos into structured study notes, inside DeepSeek Harness.

将视频(课程 / 讲座 / 教程 / 纪录片 / 会议 / 演讲等)自动转为高质量结构化学习笔记的 DSH 技能包。

看视频 ≠ 学会。笔记才是真正属于你的知识。

Install

dsh plugin --profile web add dsh-video-to-notes

Restart DSH afterwards. The bundle applies one patch row and changes nothing else.

What the bundle does

This package ships no runtime plugin logic. Its substance is a single Skill:

skills/video-to-notes/
├── SKILL.md                  skill instructions and routing description
├── scripts/transcribe.py     ffmpeg + Whisper speech-to-text
├── scripts/download_video.py yt-dlp network download
└── references/               note templates and the detailed workflow

cordis.patch.yml inserts one @deepseek-ai/dsh-skill-filesystem row that mounts the packaged skills/ directory as an isolated provider (includeDefaultRoots: false), so this bundle contributes the video-to-notes skill without touching the project or user skill roots. The skill root resolves from the profile's own module resolution — the installed npm identity — never from a path concatenated onto baseUrl.

Requirements

The skill drives local tools; DSH does not install them for you.

ToolRoleInstall
python3runs the bundled scriptsbrew install python3
ffmpeg / ffprobeaudio extraction, silence trimming, speed changebrew install ffmpeg
openai-whisperspeech recognitionpip3 install openai-whisper
yt-dlpoptional, only for video URLspip3 install yt-dlp

The skill instructs the agent to detect missing dependencies, name them, and wait for your explicit confirmation before installing anything.

What the skill does

  1. Detect dependencies — reports exactly what is missing and asks before installing.
  2. Acquire the video — a local path, or a URL downloaded with yt-dlp after you confirm the output directory.
  3. Transcribe — Whisper with per-scenario defaults (base for ordinary videos, turbo for long ones, --language zh for Chinese, optional --strip-silence and --speed acceleration).
  4. Write the notes — semantic chunking into a chapter outline, an optional Mermaid knowledge map for long content, ⭐/🔧/⚠️ emphasis markers, a closing quick-reference card, and a style matched to the content type (technical tutorial, classroom, talk, documentary).

Model choice, device selection (CUDA / Apple MPS / CPU), speed, and the note format are all decided by the skill; you only supply the video and any preferences.

Privacy and copyright

Transcripts and notes can contain sensitive material — review and delete them when they are no longer needed. Downloading third-party video must respect the source platform's terms; use it for personal study.

License

MIT