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.

Plugin Restart Desktop — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-plugin-restart-desktop

Plugin Restart Desktop

Adds a "重启Desktop" button beside Settings in the sidebar foot that restarts DSH Desktop.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:ExploringBB/dsh-plugin-restart-desktop#b304ec725e6502c162fee4a8fd93d65ec62bf55d
READMECompatibilityVersions
中文界面演示

Compatibility and provenance

Plugin Restart Desktop is published as dsh-plugin-restart-desktop and currently resolves to version 1.0.0. 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/21/2026

Versions

1.0.0stable
8/21/2026

Related plugins

Loading related plugins…

Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
Weekly downloads
0
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

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.

README

简体中文 | English

dsh-plugin-restart-desktop

一个极简的 DSH Desktop 插件:只做一件事——在侧边栏左下角添加一个「重启Desktop」按钮,点击后有序重启 DSH Desktop。

除此之外没有任何其他功能。代码量小、行为单一,非常适合:

  • 验证插件安装流程:profile 注册 → pnpm install → 重启生效,装完立刻能在界面上看到按钮;
  • 作为自研插件的最小示例:参考它的五件套包结构、cordis.patch.yml 的 insert 补丁、host/client 双侧与 Typert Remote 写法。

界面预览

中文界面演示

上图:中文语言下的按钮效果(位于左下角设置行、齿轮右侧,悬停显示「重启Desktop」提示)。 切换为 English 后的效果见 英文版 README 中的截图。

功能一览

  • 按钮注入在侧边栏底部设置行内(齿轮右侧),永远位于可视区,不会因脚部操作堆叠而被裁剪;
  • 点击弹二次确认框,确认后调用桌面主进程 desktopActions.requestRestart()(Electron relaunch)有序重启,并显示「正在重启…」等待层;
  • 文案接入 DSH 语言系统(设置 → 通用设置 → 语言),中文 / English 自动切换、切换立即生效;
  • 仅 desktop profile 生效;headless web profile 下返回 { ok: false } 并弹出友好错误提示。

安装(desktop profile)

本插件为桌面专用,只需注册进 desktop profile:

  1. 把本目录加入 desktop profile 的 dependencies 与 dsh.profile.bundles:

    // ~/.dsh/profiles/desktop/package.json
    "dependencies": { "dsh-plugin-restart-desktop": "file:F:/path/to/dsh-plugin-restart-desktop" },
    "dsh": { "profile": { "bundles": [ "@deepseek-ai/dsh-base", "@deepseek-ai/dsh-web-app", "dsh-plugin-restart-desktop" ] } }
    
  2. 在 profile 目录执行 pnpm install;

  3. 重启 DSH Desktop,左下角设置行即可看到「重启Desktop」按钮。

License

MIT。见 LICENSE。English docs: README.en.md。