DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Reelsmaker — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
R

dsh-reelsmaker

Reelsmaker

DeepSeek Harness 插件:将主题制作成完整的竖屏短视频。免费神经语音旁白、烧录字幕,无需 API 密钥。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:aayan-cloud/dsh-reelsmaker#1e3b7060799b5d9104e6eb48ff4523de74dc7825
README兼容性版本

兼容性与来源证明

Reelsmaker 以 dsh-reelsmaker 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/9/20

版本

0.1.0stable
2026/9/4

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
73
最近提交
2026/9/4
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 vision-media 分类下经过校验的插件。

Tool Describe Image@linxin666/dsh-tool-describe-image面向模型的 describe_image 工具,用于 dsh Web GUI:通过在兼容 OpenAI 的端点调用视觉语言模型,为文本模型提供图像理解能力,以描述一张图像(本地路径、http(s) URL 或附件引用)。可热插拔 —Modlens@liustack/modlens面向仅支持文本的 LLM 的插件视觉能力,由免费的 Antigravity CLI 提供支持Deepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio,以及 27 个可编辑视频模板,以原生 DeepSeek Harness 对话视图呈现。Imagegen@dickpy/dsh-imagegendsh Web GUI 的 AI 图像生成插件:通过可配置的提供商渠道实现文生图和图生图(gpt-image-2 / grok-imagine-image / nanobanana series / seedream-5.0-pro / dall-e-3,支持原生 xAI Grok Imagine、Google Nano Banana a

README

dsh-reelsmaker

A DeepSeek Harness plugin that turns lines of narration into a finished vertical reel — spoken, captioned, 1080×1920, ready to upload.

No API key. No account. No ffmpeg.

you:  make a reel about why my tool needs no API key
dsh:  [make_reel] Rendering a 5-beat reel…
      Rendered 16.4s reel (5 beats): out/why-my-tool-needs-no-api-key.mp4

Install

dsh plugin add dsh-reelsmaker

Or try it without the harness at all:

git clone https://github.com/aayan-cloud/dsh-reelsmaker
cd dsh-reelsmaker && npm install
node lib/make-reel.js "Every reel here is just a text file." "No editor, and nothing dragged onto a timeline." "Free, and open source."

Why this exists

Every voice plugin in the harness ecosystem today either wants an API key or falls back to browser speech, and the video plugins render one fixed style.

This uses Microsoft Edge's neural TTS — the engine behind Edge's Read Aloud — which is free and needs no account, and renders with Remotion, so the whole chain runs on hardware you already own.

The agent writes the words. This makes the video. The tool takes finished narration lines rather than a topic on purpose: the harness already has a model that writes better copy than any template would, so generating the script internally would replace a good writer with a worse one.


The tool

make_reel — each line becomes one beat, spoken and shown on screen.

parameter
linesrequired4–6 narration lines, under ~12 words each
titleoutput filename, defaults to the first line
outDirwhere the MP4 lands
voiceEdge voice id, e.g. en-US-AriaNeural
ratespeaking rate, e.g. +12%

Returns { path, seconds, beats }.


Two decisions worth knowing about

Beat lengths are measured, never estimated. A beat has to be exactly as long as the line spoken over it. Guessing from character count is close, and close compounds — across six beats the captions end up a third of a second off the voice, which reads as broken rather than as a small error. So the pipeline speaks first, counts the MPEG frames in each MP3 to get an exact duration, and only then times the beats. There is no ffmpeg anywhere; the frame headers are parsed directly.

Captions are burned in, not optional. Short-form is watched muted by default, so a reel whose story lives only in the voice track is a reel most viewers never receive. Every line is spoken and shown. The audio is an upgrade for people who turn it on, never a dependency.


Loading it from source on Windows

The harness tutorial says a local plugin path "must be absolute". That is true on Unix and not sufficient on Windows: a bare C:/... path reaches Node's ESM loader as protocol c: and throws ERR_UNSUPPORTED_ESM_URL_SCHEME before the plugin loads. Use a file:// URL:

- insert:
    - id: reelsmaker
      name: 'file:///C:/path/to/dsh-reelsmaker/index.js'
dsh web --patch ./dev-patch.yml

Set REELSMAKER_PROBE=1 to print a line when the plugin registers, which is how you tell "loaded and registered" apart from "the config composed but nothing ran".

Known limits

  • The render is foreground. It takes 30s–3min depending on length, and the call blocks for that time. Moving it to ctx.jobs.start() as a background job is the obvious upgrade; it is not done yet.
  • One visual style. Narrated statements on a drifting gradient. It suits explainer and announcement reels; it is not a product-video tool. For cinematic product work see video-shotcraft.
  • DeepSeek Harness is in developer preview and promises compatibility-breaking changes, so this will need maintenance.

Licence

MIT for the code here. Remotion is not MIT — it is free for individuals and companies of up to three people, and larger companies need a paid company licence. See https://remotion.dev/license.