精选
为什么选中它
待人工精选——以下事实来自源码仓库。
它能做什么
One-click restart button for the DeepSeek Harness Web UI: sidebar footer button, single click restarts the dsh web process. / DSH Web 界面一键重启按钮。
适合谁
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
风险提示
- 未发现明显风险信号;安装前仍建议查看源码。
One-click restart button for the DeepSeek Harness Web UI: sidebar footer button, single click restarts the dsh web process. / DSH Web 界面一键重启按钮。
待人工精选——以下事实来自源码仓库。
One-click restart button for the DeepSeek Harness Web UI: sidebar footer button, single click restarts the dsh web process. / DSH Web 界面一键重启按钮。
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
dsh plugin --profile web add github:1123762794/dsh-web-restart 作者没有声明支持的平台。
dsh web process — the page disconnects for ~15–20 seconds, then you refresh and everything is back (sessions are persisted on disk and recover automatically). The button is persistent: it survives the restart it triggers. > Windows-specific: the restart launches dsh web through an independent hidden PowerShell process, so the script keeps running after the harness process is killed. ## Features - Single-click restart — no confirmation step, no double-click dance. - Persistent: survives the DSH restart it triggers (installed as a bundle-layer plugin, not a dynamic session plugin). - Small footprint: sits beside the Settings trigger in the sidebar footer; icon-only in the 56px rail, icon + label in the wide sidebar. - In-flight feedback: the button turns red and shows "重启中…" → "已触发" while the request is being processed. - Re-entry guard: a second click while a restart is already in flight is rejected. - Online status dot: the button also shows DSH liveness — a green dot polls GET /dsh-health every 5s (red when the harness is unreachable/restarting). ## Install ### From GitHub (this repo) bash dsh plugin --profile web add github:YOUR_OWNER/dsh-web-restart Then restart dsh web once so the bundle layer loads. ### Manual (edit profile files) 1. Add the dependency: jsonc // ~/.dsh/profiles/web/package.json { "dependencies": { "dsh-web-restart": "github:YOUR_OWNER/dsh-web-restart" } } 2. Add the plugin row (this repo ships its own cordis.patch.yml — either merge its row into your profile's cordis.patch.yml, or install via the dsh plugin command above which does it for you): yaml # ~/.dsh/profiles/web/cordis.patch.yml - insert: - id: dsh-web-restart name: dsh-web-restart 3. pnpm install in the profile directory, then restart dsh web. ## How it works | Layer | File | What it does | | --- | --- | --- | | Host | lib/index.js | Registers an exact POST /restart-dsh route on the webServer; launches the restart script as an independent hidden PowerShell under danger-full-access sandbox policy | | Client | lib/client.js | Registers the sidebar footer button (slot sidebar.footer.action); single click fetches POST /restart-dsh; polls GET /dsh-health every 5s for the status dot | | Bundle | cordis.patch.yml | The loader row that mounts both halves | The host routes return before the restart happens (~1s host timer + 3s inner sleep), giving the browser time to render the "restarting" state before the page drops. ### Why not ctx.timeout in the route handler ctx.timeout is a Cordis mixin backed by ctx.effect(), which is scoped to the Cordis fiber lifecycle. A webServer route handler runs as a plain Node HTTP callback — outside any fiber — so ctx.effect-registered timers are silently dropped and the restart never fires. This plugin uses Node's native setTimeout in the handler instead. ## Compatibility - DeepSeek Harness 0.1.0-rc.6 (web profile). - The restart script path (D:\1\dsh-web-host.ps1) is hard-coded for this author's machine — fork and adjust it (or replace the command in lib/index.js) for your own environment. Contributions to make this configurable are welcome. ## Development The client bundle is hand-written in the exact wire format (window.__ModuleLoader__.load({ id, factory })), so no build step is required: bash node --check lib/index.js node --check lib/client.js ## License MIT不看 Star,人工一条条挑的。
把 DSH 的 settings.yaml 做成可视化看板:所有已注册的 settings namespace——包括官方界面从未覆盖的第三方插件配置——都渲染成可编辑表单。项目还早,但方向很对:告别手改 YAML。
给 DSH 的 DIY 轨迹可视化:把 agent 的计划与执行画成图,不用翻原始日志也能看清它在干嘛。项目还早,但补上了「一眼看懂 agent 在做什么」这个真实缺口。
从 Claude Code / Codex 把活派给 DSH:在宿主内拉起带分级预设的 DSH agent 会话,看原生子代理进度,还能借它的多模态桥给纯文本的 DSH 补上视觉和生图。编排型插件,把 DSH 变成其他编码 agent 的后端。