All-in-one bundle for DSH: the native Windows desktop window (WebView2), DeepEye vision (GLM-4V-Flash), and voice input (mic button) in a single install.
Install
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:ZichengGurrr/dsh-window#path:/kit
Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).
README
DeepSeek Harness 一条命令装齐三件事:
| 组件 | 作用 | 来源 |
|---|---|---|
桌面 dsh-window |
Windows 原生独立窗口(WebView2):自动从 GitHub Releases 安装 exe、创建快捷方式、注册 desktop_launch 工具 |
本套件内置(src/,与 ../plugin 同源) |
眼睛 dsh-plugin-deepeye |
视觉插件:为纯文本模型外挂看图能力(vision_describe / vision_ocr / vision_ask / vision_layout / vision_clipboard),默认智谱 GLM-4V-Flash | Favio8/dsh-plugin-deepeye |
嘴巴 @nn12138/dsh-voice |
语音输入:输入框麦克风按钮(或 Ctrl+Space)说话 → 文本进输入框,纯输入、与 agent preset 解耦 | 3274375092/dsh-voice |
安装(一条命令)
dsh plugin --profile web add github:ZichengGurrr/dsh-window#path:/kit
重启 dsh web(或刷新页面)后生效。
配置
1. GLM 视觉 API Key(必配)
在 ~/.dsh/.env 里设置(智谱开放平台 https://open.bigmodel.cn 的 API Key):
DEEPEYE_API_KEY=你的key
默认模型 glm-4v-flash。想换接口/模型,在 ~/.dsh/profiles/web/cordis.patch.yml 里覆盖:
- id: deepeye-vision
config:
baseUrl: https://open.bigmodel.cn/api/paas/v4
model: glm-4v-flash
pasteCompat: auto
maxTokens: 1024
2. 语音输入(开箱即用)
默认走浏览器 Web Speech(Edge=Azure / Chrome=Google),零配置。想要离线本地识别(隐私、国内网络更稳):
dsh plugin --profile web add sherpa-onnx-node
dsh-voice-models # 下载模型 ~100MB
并在 profile 的 cordis.patch.yml 里给 voice 配置模型目录:
- id: voice
config:
modelDir: './dsh-voice-models'
3. 桌面窗口(自动)
插件激活时自动从 GitHub Releases 安装应用并创建桌面快捷方式「DeepSeek Harness Window」,版本更新会自动升级;对话里说"打开桌面应用"即可拉起。
本套件已内置桌面安装器,无需再单独安装 dsh-window 插件(重复安装会冲突,若已装请先
dsh plugin --profile web remove dsh-window)。
卸载
dsh plugin --profile web remove dsh-window-kit
说明
- 本套件是聚合 bundle:本身不含业务代码,只负责安装三个插件并写入默认配置。
- 各组件均为 MIT 协议,由各自作者维护;本套件与 DeepSeek 公司无隶属关系。
- npm 发布后安装命令可简化为
dsh plugin --profile web add dsh-window-kit。
License
MIT(见仓库根 LICENSE)
Links
More in this category
zhu1090093659/dsh-web-ui#packages/dsh-web-ui-all★ 2263
Plugin and skin collection for the DSH Web UI: task board, Git graph, right-side panel, remote mobile UI, pet, live token stats, and a skin center.
ccch1mneyyy/dsh-TUI★ 1051
Claude Code-style full-screen terminal UI: pixel-whale header, live status line, and streaming thought expansion.
omdsh-dev/DSH-better-sidebar★ 920
Full sidebar workbench with file rendering and editing, terminal, Git, and subagents; third-party plugins can register new tabs.
omdsh-dev/dsh-at-file★ 171
Codex-style `@file` mentions: search workspace files in the composer and attach their contents to prompts.
huiliyi37/dsh-tianshu-tui★ 143
A terminal UI (TUI) for DeepSeek Harness.
Nagi-ovo/dsh-visualize★ 90
In-conversation generative UI: the model renders interactive HTML cards into the chat stream, with streaming preview and sandboxed rendering.