DeepSeek Harness 桌面管理工具 — 像 ccswitch 一样,简单、直观、强大
🌐 官网: https://dsh.linhut.cn/
| 平台 | 地址 |
|---|---|
| 🐙 GitHub | github.com/linhut/dsh-manager |
| 🔵 GitCode | gitcode.com/linhut/dsh-manager |
| 🟢 AtomGit | atomgit.com/linhut/dsh-manager |
从 GitHub Releases 下载最新版本:
| 平台 | 安装包 | 说明 |
|---|---|---|
| 🪟 Windows | .exe |
NSIS 安装程序,双击安装 |
| 🍎 macOS | .dmg |
磁盘映像,拖到 Applications |
| 🐧 Linux | .AppImage |
添加执行权限后运行 |
- 安装后自动打开 DSH Web 界面
- 集成浏览器视图,直接在工具中管理 DSH
- 一键启动/停止 DSH 服务
- 一键安装 DeepSeek Harness
- 自动检测 Node.js 环境
- 检查更新,一键升级
- 安全卸载
- 插件市场:自动搜索 GitHub 上
dsh-plugin标签的仓库 - 一键安装/卸载插件
- 插件更新检测
- 查看当前 DSH 版本
- 浏览所有可用版本
- 检查更新
- 查看 DSH 配置
- 管理 LLM 提供商
- 自动启动设置
- 桌面框架: Electron 33
- 前端: 原生 HTML + CSS + JavaScript
- 核心逻辑: Node.js (ESM)
- 打包: electron-builder
- CI/CD: GitHub Actions (自动构建 Windows/macOS/Linux)
# 克隆仓库
git clone https://github.com/linhut/dsh-manager.git
cd dsh-manager
# 安装依赖
npm install
# 启动开发模式
npm run dev
# 构建当前平台安装包
npm run build:win # Windows
npm run build:mac # macOS
npm run build:linux # Linuxdsh-manager/
├── electron/ # Electron 主进程
│ ├── main.js # 主进程入口
│ ├── preload.js # 预加载脚本 (IPC 桥)
│ └── ipc-handlers.js # IPC 通信处理
├── src/ # 渲染进程 (GUI)
│ ├── index.html # 主页面
│ └── assets/
│ ├── css/style.css
│ └── js/app.js
├── packages/ # 核心逻辑
│ ├── core/ # DSH 安装、配置、版本管理
│ └── marketplace/ # 插件市场
├── build/ # 构建资源
└── package.json
欢迎提交 Issue 和 Pull Request!
MIT License