DeepSeek Harness 插件

dsh-restart-recover

DeepSeek Harness web 重启恢复:崩溃或重启后,被打断的 agent 回合自动继续(host 侧 agent/created 监听,无浏览器时序竞态)。

跳到安装方式

来源信息

GitHub 仓库
fakechris/dsh-harness-ops
最近更新
2026年8月19日
分类
插件开发工具
GitHub stars
11

安装

默认先复制一段 Prompt,让 Agent 读页面和仓库;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读页面和仓库。

请先不要安装。阅读这个 DeepSeek Harness 插件,说明它解决什么问题、会访问哪些文件、网络或密钥,以及如何安装和卸载。

插件页面:https://deepseekplugins.org/zh/plugins/fakechris/dsh-harness-ops~23dsh-restart-recover
GitHub:https://github.com/fakechris/dsh-harness-ops/tree/main/plugins/dsh-restart-recover
插件名:dsh-harness-ops#dsh-restart-recover
作者:fakechris
安装命令:dsh plugin --profile web add github:fakechris/dsh-harness-ops#path:/plugins/dsh-restart-recover

确认前不要执行安装命令。

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器1 个文件
package.json来源说明 · 只读预览
{
  "name": "@fakechris/dsh-restart-recover",
  "description": "Restart recovery for dsh web: after a crash/restart, an interrupted agent turn continues automatically (host-side agent/created listener — no browser timing races). Pairs with the dsh-web-guard skill (which auto-relaunches the web process); together they make restart self-healing.",
  "version": "0.2.1",
  "type": "module",
  "main": "lib/index.js",
  "types": "lib/types/index.d.ts",
  "scripts": {
    "prepare": "node scripts/dsh-env.mjs tsc -p tsconfig.json",
    "build": "node scripts/dsh-env.mjs tsc -p tsconfig.json",
    "typecheck": "node scripts/dsh-env.mjs tsc -p tsconfig.json --noEmit",
    "test": "node scripts/dsh-env.mjs vitest run tests"
  },
  "dsh": {
    "bundle": {
      "patch": "./cordis.patch.yml"
    }
  },
  "exports": {
    ".": {
      "types": "./lib/types/index.d.ts",
      "default": "./lib/index.js"
    },
    "./cordis.patch.yml": "./cordis.patch.yml",
    "./package.json": "./package.json"
  },
  "files": [
    "lib",
    "src",
    "cordis.patch.yml"
  ],
  "keywords": [
    "dsh",
    "deepseek-harness",
    "dsh-plugin",
    "dsh-bundle",
    "restart",
    "self-heal",
    "recovery",
    "plugin"
  ],
  "publishConfig": {
    "access": "public"
  }
}