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 Input — DSH Plugin for DeepSeek Harness
← Plugins
V

dsh-voice-input

Voice Input

Voice dictation and transcript cleanup for DeepSeek Harness, using the current session model.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:lhenlihai-hub/dsh-voice-input#698f1294d154e73b6a56d75bc838d1a772fd4619
READMECompatibilityVersions

Compatibility and provenance

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

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/25/2026

Versions

0.3.1stable
8/25/2026

Related plugins

Loading related plugins…

Latest
0.3.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/25/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
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.Image Gendsh-image-genBring ChatGPT-like image generation to DeepSeek Harness — Gemini, OpenAI, Seedream, DashScope, local ComfyUI & more.

README

dsh-voice-input

English | 简体中文

An open-source voice input plugin for DeepSeek Harness. It transcribes speech, makes a narrowly constrained cleanup pass with the model already selected in the current Harness Session, and inserts the result into the composer.

It does two things:

  1. voice dictation;
  2. removal of meaningless filler, speech-error repetition, and explicit self-corrections, plus reliable punctuation and sentence breaks.

It does not translate or answer dictated content. It has no API-key setting because model routing and credentials remain entirely within Harness.

Current version: 0.3.1, built against the DeepSeek Harness 0.1.0-rc.6 Host, Client Modules, Slot, and Typert interfaces.

Features

  • Adds microphone and settings controls to the official conversation.input.left slot.
  • Uses SpeechRecognition / webkitSpeechRecognition where available.
  • Falls back to OS dictation when browser recognition is unavailable: Fn×2 on macOS or Win+H on Windows.
  • Uses Ctrl+Alt+V by default and supports custom modified shortcuts or F1–F24.
  • Supports automatic language detection plus Mandarin, Traditional Chinese, Cantonese, English, Japanese, and Korean recognition modes.
  • Reads the selected model immediately before every cleanup call and uses Harness routing and credentials.
  • Keeps raw text if cleanup fails and avoids overwriting edits made during cleanup.
  • Provides Chinese or English UI automatically from the browser language.
  • Provides a confirmed, one-click uninstall from the current profile.

Browser plugins cannot register OS-wide global shortcuts. The custom shortcut works while the Harness page has focus.

Install

Remove any older or broken build first if it is still present:

dsh plugin --profile <profile> remove dsh-voice-input

Install the latest GitHub version:

dsh plugin --profile <profile> add github:lhenlihai-hub/dsh-voice-input

Then fully quit and restart that Harness profile. Replace <profile> with the profile you use, commonly web.

For local development:

git clone https://github.com/lhenlihai-hub/dsh-voice-input.git
cd dsh-voice-input
npm install
npm test
cd ..
dsh plugin --profile <profile> add ./dsh-voice-input

To install a tarball:

npm run pack:plugin
dsh plugin --profile <profile> add ./dsh-voice-input-0.3.1.tgz

Use

  1. Click the microphone or press Ctrl+Alt+V.
  2. Speak, then click or press the shortcut again to stop.
  3. The current Session model cleans the transcript and the plugin inserts it into the composer.
  4. Open the adjacent settings button to change the shortcut or recognition language.

In OS-dictation fallback mode, the composer is focused automatically. Start the OS dictation shortcut and speak; cleanup begins after about 1.2 seconds without a draft change.

Cleanup contract

Version 0.3.0 replaces the previous prompt instead of layering exceptions onto it. The model receives one exhaustive set of allowed edits:

  • preserve information, subject, person, word order, wording, tone, tense, language, and mixed-language text;
  • remove meaningless filler, speech-error repetition, and content explicitly replaced by a self-correction;
  • correct only recognition errors that are unambiguous from context;
  • add sentence punctuation and break separate ideas into sentences or paragraphs;
  • use Markdown only when the speaker clearly dictates a list, steps, or a heading.

For example:

Input:  我们现在对软件进行重新的review
Output: 我们现在对软件进行重新的review。

The Host requests a strict {"text":"..."} JSON envelope. Only its validated text field reaches the composer. Empty, malformed, excessively expanded, failed, or tool-call output falls back to the recognized source text.

This behavior is independently implemented. It follows public dictation-product principles such as removing filler, repetition, and explicit self-corrections; it is not affiliated with Typeless.

Privacy and model use

  • Audio is processed by the browser recognition implementation or OS dictation, not by the Harness model.
  • Only recognized text is sent to the current Session model for cleanup.
  • Provider, model ID, reasoning effort, routing, and credentials remain managed by Harness.
  • Plugin settings are stored only in browser localStorage.

Whether browser recognition sends audio to its vendor depends on that browser's implementation and privacy policy. Use OS dictation fallback if that matters for your environment.

Safe uninstall

Choose Uninstall plugin in settings and confirm. The Host calls the official fixed command for the current profile, clears this plugin's browser settings, returns success to the page, and then requests a graceful Harness exit. Restart Harness afterward; the plugin is no longer part of that profile.

For GUI-launched Harness processes with a minimal PATH, the uninstall child process also exposes the active DSH, configured pnpm, and Node executable directories so the official DSH command can find the matching pnpm toolchain.

The button removes the installed profile dependency and bundle registration. It does not delete a separate source checkout you cloned for development or purge pnpm's shared content-addressed cache.

Manual fallback:

dsh plugin --profile <profile> remove dsh-voice-input

Official plugin structure

  • Host: VoiceInputService injects the official llm and appExit services.
  • RPC: strict Host/Client descriptors are generated by @deepseek-ai/dsh-typert-generator.
  • Client: the browser bundle uses the official window.__ModuleLoader__.load(...) wrapper.
  • UI: controls are registered through the official conversation.input.left Slot.
  • Installation: dsh.bundle.patch adds the Host row to the selected profile.

The source package lives in packages/dsh-voice-input; the root package is the GitHub installation and build entry point.

Development

Node.js 22 or newer is required.

npm install
npm test
npm pack --dry-run

The test command builds both plugin halves, generates the Typert protocol, checks strict schemas and fixed uninstall arguments, loads the Client factory, and verifies distributable artifacts.

License

MIT