DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Iconic Launcher — DeepSeek Harness 插件(DSH Plugin)
← Plugins
I

dsh-iconic-launcher

Iconic Launcher

自定义桌面图标启动器:提供预设图标,并支持将任意图像转换为 .ico 以创建桌面快捷方式,配有托管设置卡片(主机端 + 浏览器端两部分)

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

npx -y @deepseek-ai/dsh plugin --profile web add github:SkyblueeeLabs/dsh-iconic-launcher#55a56948121b6d343e2ef72908f7fba1cab45855
README兼容性版本
Settings page · default groupLightblue group

兼容性与来源证明

Iconic Launcher 以 dsh-iconic-launcher 发布,当前版本为 0.1.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.1stable
2026/9/18
0.1.0stable
2026/9/17

相关插件

正在加载相关插件…

最新版
0.1.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/18
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

README

dsh-iconic-launcher

Portable launcher toolchain for DeepSeek Harness (deepseek-harness) on Windows. It turns the Web UI into a one-click desktop shortcut with a real icon, so you never have to type the long startup command again.

Preview / 预览

Settings page · default group
设置页首页(顶部项目信息 + 默认分组)
Lightblue group
浅蓝分组(16 个预设图标)

Why this exists / 初衷

DeepSeek Harness normally starts with a familiar but tedious ritual — open a terminal, cd into your checkout, then run a long command with the right flags and environment. That gets old fast, especially after a re-clone or on a new machine.

This project is deliberately not in the upstream repo. It is a small, separate, self-contained layer that only:

  • creates a desktop shortcut (with a real icon) that runs DeepSeek Harness;
  • regenerates that icon from an SVG when you need it;
  • restores everything after you re-clone the upstream repo.

It does not modify, patch, or rebuild DeepSeek Harness core code. The upstream stays untouched and upstream-clean — the launcher only wraps its startup. In short: one less thing to type, zero risk to the product.

Because it lives in its own repository (not inside the harness checkout), re-cloning the harness tree never wipes it: the moment you re-clone, you run deploy.ps1 and the shortcut (and its icon) are back in seconds.

Install / 安装

Needs a working DeepSeek Harness with the dsh CLI. The repo root is the plugin package, so either method installs the same thing. / 需要已装好 DeepSeek Harness 并有 dsh 命令。仓库根就是插件包,两种方式装的是同一个东西。

A. From GitHub — recommended; this is what the plugin market uses. Installs straight from source (the plugin has no build step). / 直接从源码安装 (插件无构建步骤),插件市场走的就是这条。

dsh plugin --profile <name> add github:SkyblueeeLabs/dsh-iconic-launcher

# Pin a release instead of tracking the default branch:
dsh plugin --profile <name> add github:SkyblueeeLabs/dsh-iconic-launcher#v0.1.1

B. From a prebuilt tarball — offline / air-gapped. Get dsh-iconic-launcher-<version>.tgz from the GitHub Releases page, or build your own with npm pack in a clone, then point dsh at the file. / 从 GitHub Releases 下载 .tgz,或在克隆里 npm pack 自己产出,再指向该文件。

dsh plugin --profile <name> add C:\path\to\dsh-iconic-launcher-0.1.1.tgz

After installing, restart the web app (dsh web) and open 设置 → 桌面图标 (or 插件 → 插件配置) to pick or upload a desktop icon. / 装完重启 dsh web,在 设置 → 桌面图标(或 插件 → 插件配置)里选图 / 上传。

Layout

PathPurpose
scripts/start-dsh-web.batPortable launcher. Locates node on PATH (or DSH_NODE_DIR) and runs dsh web via the tsx/esm entry (node --import tsx/esm .../apps/cli/src/bin.ts web). Logs every step to scripts/launcher.log.
scripts/dsh-icon.icoMulti-resolution icon shown on the desktop shortcut.
scripts/convert-svg-to-ico.mjsSVG → multi-size .ico writer (16–256), no build deps beyond sharp.
scripts/generate-icon.ps1Rebuilds dsh-icon.ico from an SVG (probes a sharp install).
scripts/create-desktop-shortcut.ps1Creates/refreshes the desktop .lnk pointing at start-dsh-web.bat with dsh-icon.ico.
scripts/SETUP-SHORTCUT.mdFull setup / troubleshooting notes.
deploy.ps1One-shot restore: copies scripts/ back into a DeepSeek Harness checkout and refreshes the shortcut.
install.ps1One-shot install for a new user: build a fresh deepseek-harness checkout, generate the icon, create the shortcut.
repo rootdsh-iconic-launcher — the DSH plugin itself (host half + browser settings card): pick or upload a desktop shortcut icon, auto backdrop-removal, multi-size ICO, one-click .lnk write.
data/PNG icon source material (also usable as extra presets via the plugin).

Quick use

Restore after re-cloning the upstream repo

# from anywhere, point at your harness checkout (auto-detected or -RepoRoot)
./deploy.ps1 -RepoRoot "C:\where\you\cloned\deepseek-harness"

First-time setup (new machine)

./install.ps1            # clone upstream + install icon + create shortcut

Rebuild just the icon

powershell -ExecutionPolicy Bypass -File ./scripts/generate-icon.ps1
powershell -ExecutionPolicy Bypass -File ./scripts/create-desktop-shortcut.ps1

Custom desktop shortcut icon plugin (web UI)

The plugin adds a "pick or upload a desktop shortcut icon" capability that runs inside the DeepSeek Harness web app. Install it either way shown in Install / 安装 above. See docs/plugin.md for routes, config, and current status. The scripts/ and data/ folders are development tooling and source material — they are not part of the installed package.

Requirements

  • Windows 10/11, PowerShell 5.1+ (or PowerShell 7).
  • Node.js on PATH (the launcher also probes %ProgramFiles%\nodejs and %LOCALAPPDATA%\Programs\nodejs; override with DSH_NODE_DIR).
  • sharp only if you need to rebuild the icon (optional).

License

MIT. The icon is derived from DeepSeek Harness's own favicon (MIT).

Notes / caveats

  • These files are intentionally not part of the upstream repository. Do not commit them there; keep them here and push to your own fork instead.
  • The desktop shortcut references the icon and the launcher by absolute path under your checkout; after re-cloning, re-run deploy.ps1 so the shortcut re-points correctly.

相关插件

继续浏览 ui-customization 分类下经过校验的插件。

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Remote Web Ui@linxin666/dsh-remote-web-ui通过扫码配对访问 dsh Web GUI,共享一个官方界面:设置按钮旁的二维码可将手机和 PC 配对到同一个 Web GUI(手机采用竖屏触控适配层,PC 使用完整桌面界面),通过一次性令牌和 rClient Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。