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.

Reelsmaker — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
R

dsh-reelsmaker

Reelsmaker

DeepSeek Harness plugin: turn a topic into a finished vertical reel. Free neural voice-over, burned-in captions, no API keys.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:aayan-cloud/dsh-reelsmaker#1e3b7060799b5d9104e6eb48ff4523de74dc7825
READMECompatibilityVersions

Compatibility and provenance

Reelsmaker is published as dsh-reelsmaker 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
9/20/2026

Versions

0.1.0stable
9/4/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
73
Last push
9/4/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 — Modlens@liustack/modlensPlug-in vision for text-only LLMs, powered by the free Antigravity CLIDeepseek Ivideodeepseek-ivideoiPolloWork HyperFrames Video Studio and 27 editable video templates as a native DeepSeek Harness conversation view.Imagegen@dickpy/dsh-imagegenAI image generation plugin for the dsh web GUI: text-to-image and image-to-image through configurable provider channels (gpt-image-2 / grok-imagine-image / nanobanana series / seedream-5.0-pro / dall-e-3, with native 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.