npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

dsh-voice-studio

v0.2.0

Published

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).

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

| Field | Default | Meaning | | --- | --- | --- | | backend | local | local or api (ElevenLabs). | | ttsEngine | xtts | xtts (quality + cloning) or piper (fast). | | language | cs | cs 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