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.

Voice Studio — DSH Plugin for DeepSeek Harness
← Plugins

dsh-voice-studio

Voice Studio

DeepSeek Harness plugin: local TTS, voice cloning and best-effort dubbing with a settings GUI and a dsh_voice tool (XTTS v2 + Piper, faster-whisper, ElevenLabs API option).

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-voice-studio@0.2.0
READMECompatibilityVersions

Compatibility and provenance

Voice Studio is published as dsh-voice-studio and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

0.2.0stable
9/1/2026
0.1.9stable
9/1/2026
0.1.8stable
8/31/2026
Show 8 more versionsCollapse versions
0.1.7stable
8/31/2026
0.1.6stable
8/31/2026
0.1.5stable
8/31/2026
0.1.4stable
8/31/2026
0.1.3stable
8/31/2026
0.1.2stable
8/31/2026
0.1.1stable
8/31/2026
0.1.0stable
8/31/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
60.6 kB
Files
11
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
66
Last push
8/31/2026
View source ↗Project homepage ↗
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 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-voice-studio

Language: English · Česky

DeepSeek Harness plugin for local text-to-speech, voice cloning and best-effort dubbing, with a settings GUI and a model-callable dsh_voice tool.

Features

  • TTS — local via XTTS v2 (quality + cloning) or Piper (fast), or the ElevenLabs API.
  • Voice cloning — clone a voice from a short or long sample and synthesize new speech.
  • Voice combination — experimental mixing (currently clones from the primary sample; full mixing is a roadmap item).
  • Dubbing — transcribe media with faster-whisper and re-synthesize the transcript locally.
  • Settings section "Voice Studio" — backend, engine, language, API key, sample path.
  • Cooperates with dsh-resource-guard (reserves memory before local synthesis).

Requirements (local backend)

  • python3 on PATH (creates ~/.dsh/voice-studio-venv automatically).
  • First run downloads XTTS v2 and faster-whisper models.
  • ffmpeg on PATH for dubbing video files.
  • For the Piper engine, a Piper voice model in ~/.local/share/piper/.

Install

dsh plugin --profile web add dsh-voice-studio

Then add dsh-voice-studio to dsh.profile.bundles and dependencies in ~/.dsh/profiles/web/package.json, and run dsh plugin --profile web install.

Usage

Ask the agent:

  • dsh_voice action=tts text="Ahoj světe" — synthesize.
  • dsh_voice action=clone text="Hello" sample=/abs/voice.wav — clone + synthesize.
  • dsh_voice action=dub media=/abs/video.mp4 — transcribe + re-synthesize.

Outputs are written to ~/.dsh/voice-studio-outputs/.

Settings

FieldDefaultMeaning
backendlocallocal or api (ElevenLabs).
ttsEnginexttsxtts (quality + cloning) or piper (fast).
languagecscs or en.
apiKey``ElevenLabs xi-api-key.
voiceId``ElevenLabs voice id (backend api).
samplePath``Default sample for cloning.

Architecture

  • Host (lib/index.js) — spawns worker/voice_worker.py (stdlib HTTP server on 127.0.0.1:7862) into ~/.dsh/voice-studio-venv, calls its /tts, /clone and /dub endpoints, and implements the ElevenLabs path.
  • Client (lib/client.js) — settings.section with configuration, text input, and Synthesize / Clone / Dub buttons.

License

MIT