DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-vox-input

Vox Input

通过浏览器 Web Speech API 为 DSH Web 编辑器提供语音(语音转文字)输入:点击麦克风,说话,转录文本会填入输入框。无需服务器,无需 API key,内容不会离开设备。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:promisez322-prog/dsh-vox-input#d86b726617baf9db172135160247b0fc75d4c41d
README兼容性版本

说明

通过浏览器 Web Speech API 为 DSH Web 编辑器提供语音(语音转文字)输入:点击麦克风,说话,转录文本会填入输入框。无需服务器,无需 API key,内容不会离开设备。(Chrome/Edge)

兼容性与来源证明

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

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

版本

0.2.0stable
2026/9/1
0.1.7stable
2026/8/31
0.1.6stable
2026/8/30

相关插件

正在加载相关插件…

最新版
0.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 1
周下载
0
最近提交
2026/9/1
查看源码 ↗
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 对话视图呈现。Image Gendsh-image-gen将类似 ChatGPT 的图像生成功能带到 DeepSeek Harness——支持 Gemini、OpenAI、Seedream、DashScope、本地 ComfyUI 等。

README

dsh-vox-input

Voice (speech-to-text) input for the DSH Web composer via the browser Web Speech API (Chrome/Edge). Tap the mic, speak, and the transcript fills the input box — editable before send. Zero server, zero API keys, zero model downloads; nothing leaves the machine.

Install

# symlink the package into the web profile (local dev), then add the row:
ln -s <this-dir> "$DSH_HOME/profiles/web/node_modules/dsh-vox-input"
# append to $DSH_HOME/profiles/web/cordis.patch.yml:
#   - insert:
#       - id: dsh-voice-input
#         name: dsh-vox-input
#
# IMPORTANT: the short `id: dsh-voice-input` above is only the host patch-row
# identifier. In client.js, the module registration MUST use the exact package
# name:
#   window.__ModuleLoader__.load({ id: "dsh-vox-input", factory })
# Never replace that client registration with the short row id.
# restart: node <dsh>/lib/bin.js web

Use

A waveform 🎙️ control appears in the composer tool row. Tap to listen (Chinese by default; the tiny chip cycles zh-CN / en-US / auto). Interim text streams in a live caption above the composer; final text is appended into the draft sentence by sentence (pause ~1s between sentences — the session stays open, and auto-ends after ~4s of silence). Non-Chromium browsers show a muted badge.

Notes

  • Client UI (dual-face) plugin: the host half is an empty shell; all logic lives in client.js via window.__ModuleLoader__.load. The registration ID must equal package.json.name exactly (dsh-vox-input). See AGENTS.md.
  • MIT licensed. Conventions follow the ecosystem references (dsh-mic-input, dsh-voice-input-web); implementation is original.