xiaohj233/dsh-keepalive
面向DSH Web进程的可选分离看门狗,支持基于快照校验的修复及显式补丁恢复。
Project Overview项目介绍
dsh-keepalive is a feature plugin for the DSH platform (DeepSeek Harness), targeting version 0.1.0-rc.6. It runs a detached Node watchdog that restarts the DSH Web process on exit, with an opt-in repair agent that inspects repeated boot failures, modifies the plugin workspace from a snapshot, and rolls back failed repairs; scope is limited to node_modules junctions in dev checkouts and minimal source fixes. Use it to keep the web UI available unattended. Caveat: watchdog supervision uses recorded PIDs and may kill unrelated processes after PID reuse; diagnostics may leak environment secrets; it is not a high-availability or service manager replacement.
dsh-keepalive 是 DSH 平台的功能插件,附带兼容性补丁,仅适配 0.1.0-rc.6。它运行独立的 Node 看门狗,启用后 DSH Web 进程退出时自动重启;可选的修复代理会分析反复启动失败,从快照中修改插件工作区并回滚,扩展范围仅限 dev-checkout 的 node_modules 连接与最小源码修复。用于无人值守时维持 Web 进程可用。注意:看门狗仅通过 PID 识别,PID 被回收可能误杀无关进程;诊断日志可能泄露环境变量;不是 HA 或服务管理器。
请帮我了解并安装插件:【dsh-keepalive】【https://github.com/xiaohj233/dsh-keepalive】
Send this message to DSH in your current session. CLI install commands may not be accurate across systems — DSH will figure it out for you.把上面这条消息直接发给当前会话里的 DSH,让它帮你了解并安装。安装命令不一定准确,发给 DSH 更稳。
Or use CLI install (for developers)或使用命令行安装(适合开发者)
CLI Install命令行安装
dsh plugin --profile web add "github:xiaohj233/dsh-keepalive#v0.1.0"
把 xiaohj233/dsh-keepalive 加入你的 DSH 配置(web profile)即可启用。
READMEREADME
dsh-keepalive
English | 中文
Status: Feature Plugin with Compatibility Patch. Tested only with DeepSeek Harness 0.1.0-rc.6.
dsh-keepalive runs a detached watchdog for the DSH Web process. When explicitly enabled, the watchdog restarts DSH after a process exit. An optional repair agent can inspect repeated startup failures, modify the plugin workspace, and retry from a snapshot.
Problem
A Web process that exits cannot restart itself. DSH provides stream idle watchdogs and browser reconnect backoff, but those mechanisms do not supervise the host process.
Behavior
- Adds a Plugins settings card for watchdog configuration.
- Starts a detached Node watchdog only when
enabledis true. - Checks process health and relaunches the same DSH binary and arguments.
- Manual restart: the card's "手动重启" button (or
POST /api/keepalive/restart) — the current process exits and the watchdog relaunches it; when no watchdog is running, the fallback restarter (restarter.mjs) relaunches with the same binary and arguments. - Applies guarded compatibility patches for the settings namespace and hidden Windows child processes.
- Optionally runs a repair agent after repeated boot failures.
- Snapshots the allowed repair workspace, validates resulting paths/configuration/syntax, and rolls back failed repairs.
- Repair scope extension: for dev checkouts referenced by
link:/file:(directory) dependencies in the web profile, the repair agent may add junctions under theirnode_modulesto resolve dependencies; added junctions are snapshot-tracked and removed on failed-rollback, while existing entries and source/config are never touched. - Repair status page: when a web launch fails and a repair begins, the watchdog serves a zero-dependency status page on the web port (default 3080) — "startup failed, repairing", live repair-agent progress and elapsed time; on success the page auto-redirects back to the web UI, on failure it shows the agent's conclusion.
- The repair agent may make minimal source fixes inside the dev-checkout root that owns the failing plugin (e.g. add a missing variable declaration, fix an import, repair syntax); that root is content-snapshotted and rolled back on failure; file deletion is forbidden.
- The repair agent's workspace root is automatically the common parent of all user dev-checkout targets (e.g.
D:\Code); official@deepseek-ai/*link packages are excluded and never writable; writes are bounded by the snapshot audit. - Front-end plugin failure reporting: when the web is UP but a client plugin module fails to load, reported ONLY on the browser's explicit dynamic-
import()failure messages (e.g. "Failed to fetch dynamically imported module"); windowerrorevents andslots.onEntryErrorare NOT used — ordinary script errors and entry render crashes (e.g. React #130) are not plugin module failures and would only spam normal use; the watchdog runs a "degraded repair" (skips live dirs in the snapshot, relaunches web to reload plugins afterwards; if the agent changed nothing it clears the report without relaunching). - Global repair progress banner: a fixed banner in any page's corner shows "正在修复: phase + agent progress lines" live; it renders only while
status=repairing, disappears when the repair finishes, and shows the failure reason on error.
Both enabled and autoRepair require explicit opt-in; automatic repair defaults to false.
Non-goals
This package is not a high-availability cluster, service manager, sandbox, malware boundary, secret scrubber, or guarantee that a failed DSH instance can be repaired automatically. It does not replace systemd, Windows Service Control Manager, containers, or external monitoring.
Compatibility patches
The plugin targets exactly:
@deepseek-ai/dsh-host-apiproxy@0.1.0-rc.6: allow thekeepalivesettings namespace in the Web settings API.@deepseek-ai/dsh-subprocess-local@0.1.0-rc.6: usewindowsHide: truefor local tool subprocesses on Windows.
Version policy is adaptive by default: a copy whose installed version differs from 0.1.0-rc.6 is still patched when every anchor matches uniquely (recorded as an adaptive match), and skipped with a reason when anchors drifted; a strict programmatic mode restores the old exact-version-only apply behavior. One drifted copy never blocks the other target, and patch application never throws during host or watchdog startup. The settings-namespace row is inserted at the top of the allowlist array so it cannot consume the tail anchor shared with dsh-tavily-search-provider; both plugins coexist in either install order. Restore (uninstall) remains strictly version-guarded. Writes use temporary files and rename, validate syntax after replacement, and restore the previous bytes on validation failure.
Compatibility
Requires DeepSeek Harness 0.1.0-rc.6, Node.js ^22.19.0 || >=24, and pnpm >=10. The watchdog is designed for the current DSH CLI layout and is tested on Windows.
Install
dsh plugin --profile web add "github:xiaohj233/dsh-keepalive#v0.1.0"
Restart the Web profile. Installation alone does not enable watchdog restart or repair.
Configuration
Configure the keepalive settings section through the Plugins card or settings file:
keepalive:
enabled: false
autoRepair: false
checkIntervalMs: 3000
bootWaitMs: 15000
repairProvider: ""
repairModel: ""
Provider, model, base URL, API name, and credential-reference values are serialized as single-line YAML-safe strings. Keep repair disabled until the selected model and credential path have been tested.
Explicit uninstall and restore
Run the package's uninstall command before removing it from the profile:
pnpm --dir "$DSH_HOME/profiles/web" exec dsh-keepalive-uninstall
dsh plugin --profile web remove dsh-keepalive
When $DSH_HOME is unset the profile lives under the home directory (POSIX: ~/.dsh/profiles/web; Windows PowerShell: %USERPROFILE%\.dsh\profiles\web); on Windows pass the resolved path to pnpm --dir instead of ~.
The command disables keepalive state, terminates only the recorded watchdog process, and restores both patched official files. It exits nonzero if any step is incomplete. Normal Web shutdown does not reverse patches because shutdown is the event the watchdog supervises.
Safety
The repair agent receives startup diagnostics as prompt input. Those diagnostics are untrusted and may contain misleading instructions. The repair runtime uses workspace-write, inherits environment information available to the launched process, and can modify the plugin workspace; this is not complete isolation or a confidentiality boundary. Snapshot, path, syntax, and rollback checks reduce accidental damage but do not make arbitrary agent output safe.
Review changes after every repair. Do not enable repair on a machine or plugin directory containing credentials that the repair process must not read.
Additional known limitations:
- Watchdog supervision and uninstall identify the watchdog only by recorded PID. If that PID was reused by an unrelated process after the watchdog died, supervision stops silently and
dsh-keepalive-uninstallcan terminate the unrelated process. Check for a running watchdog before uninstalling. - After repeated missed polls, the watchdog force-terminates whatever process listens on the configured port (the intended relaunch target). An unrelated service holding that port is killed too.
- Failed-launch diagnostics and the last repair-agent output (up to 4 KB) are persisted in keepalive state and can be read from
/api/keepalive/statusby a same-origin or trusted page. Failed-launch logs may embed secrets from the environment. - The snapshot/diff/rollback layer tracks the top-level entries of link-target
node_modules: junctions the repair agent adds there are detected and removed on rollback; plain plugin workspaces are still walked as regular files and directories, so keep them link-free. - Host and watchdog both rewrite
keepalive.json; a concurrent write can transiently lose one update (self-corrects on the next write).
Tests
npm test
npm run check:syntax
npm pack --dry-run
The suite covers defaults, YAML injection/round trips, exact patch/restore behavior, ambiguous anchors, syntax rollback, snapshots, a real detached-process uninstall, watchdog startup, and the --unpatch argument contract.
Limitations and upstream status
Restart/self-healing plugins already exist in the DSH community, and upstream may add an official keepalive implementation. This package is scoped to a Windows-friendly detached watchdog with opt-in snapshot-checked repair. It cannot recover from OS shutdown, account logout, unavailable Node/DSH binaries, or host-level resource exhaustion.
License
MIT. Patch targets are MIT-licensed; see THIRD_PARTY_NOTICES.md.
Hilbert-beinghappy/seektty
xiaoyuyu6420/dsh-backup
le-soleil-se-couche/dsh-skin-claude-code
polarskicpl/dsh-codex-migrate
lemonorangeapple/dsh-effort-switcher