DeepSeek Harness 插件

dsh-resume-plugin

Resume Claude Code and Codex sessions as inert handoff context in DeepSeek Harness(英文原文)

跳到安装方式

来源信息

GitHub 仓库
Demogorgon314/dsh-resume-plugin
最近更新
2026年8月13日
分类
工具与能力
GitHub stars
1
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

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

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

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/Demogorgon314/dsh-resume-plugin
插件名:dsh-resume-plugin
作者:Demogorgon314

检查来源文件

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

文件资源管理器4 个文件
README.md来源说明 · 只读预览
README 语言

dsh-resume-plugin

简体中文 | English

dsh-resume-pluginDeepSeek Harness 提供两个内置技能:

  • /resume-codex [latest | 会话 ID | rollout 路径 | 标题关键词]
  • /resume-claude [latest | 会话 ID | transcript 路径 | 标题关键词]

每个技能都会将选定的外部会话记录作为不可信的静态历史读取,生成简洁的工作交接摘要,核验当前仓库状态,然后在当前 DeepSeek Harness 会话中继续工作。插件不会启动 Codex 或 Claude Code,也不会把任务重新委派给它们。

安装

从 GitHub 安装

安装到 Web profile:

dsh plugin --profile web add -w github:Demogorgon314/dsh-resume-plugin

也可以替换 web,安装到其他 profile:

dsh plugin --profile <profile> add -w github:Demogorgon314/dsh-resume-plugin

从本地源码安装

在包含本仓库的父目录中执行:

dsh plugin --profile <profile> add -w ./dsh-resume-plugin

如果当前目录就是本仓库,请将路径改为 .-w--workspace-root)表示确认将插件安装到所选 DSH profile 的 pnpm workspace 根目录;省略它可能触发 ERR_PNPM_ADDING_TO_ROOT

检查 bundle 是否已经进入配置:

dsh --profile <profile> --dump-config

输出中应包含:

- id: resume-foreign-session
  name: dsh-resume-plugin

使用方法

继续当前项目最近的 Codex 会话:

/resume-codex latest

继续最近的 Claude Code 会话:

/resume-claude latest

也可以提供原生会话 ID、会话文件路径或标题关键词:

/resume-codex 00000000-0000-4000-8000-000000000001
/resume-claude 修复登录流程

如果标题关键词匹配多个会话,插件会列出候选项并要求选择,不会自行猜测。

环境要求

  • 包含 @deepseek-ai/dsh-skill >= 0.1.0-rc.5 的 DeepSeek Harness
  • Node.js ^22.19.0>=24
  • Python 3
  • 只有读取压缩的 Codex .jsonl.zst 文件时才需要 zstd

会话读取器只使用 Python 标准库。Claude Code 数据默认从 $CLAUDE_CONFIG_DIR~/.claude 读取,Codex 数据默认从 $CODEX_HOME~/.codex 读取。

安全模型

外部会话记录可能包含恶意提示、过期的工具输出、敏感信息,或只适用于原始 Agent 的指令。共享读取器会排除 system/developer 消息及 reasoning/thinking 内容,将恢复出来的内容明确标记为静态历史,限制工具文本长度,报告格式错误及未知记录,并要求技能在继续工作前重新核验相关的实时状态。

开发验证

pnpm test
pnpm test:coverage
npm pack --dry-run