DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Next Checkpoints — DeepSeek Harness 插件(DSH Plugin)
← Plugins

@dsh-next/dsh-next-checkpoints

Next Checkpoints

DeepSeek Harness 插件:将会话恢复到已知正常的时刻——将文件和模型历史记录作为一个检查点统一保存,并在“检查点”标签页中进行查看。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add @dsh-next/dsh-next-checkpoints@0.2.1
README兼容性版本

兼容性与来源证明

Next Checkpoints 以 @dsh-next/dsh-next-checkpoints 发布,当前版本为 0.2.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.2.1stable
2026/9/11
0.2.0stable
2026/9/7
0.1.0
stable
2026/9/7

相关插件

正在加载相关插件…

最新版
0.2.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
942.7 kB
文件数
40
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 1
周下载
26
最近提交
2026/9/7
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 memory-context 分类下经过校验的插件。

Memory Plugin@openviking/dsh-memory-plugin适用于 DeepSeek Harness 的 OpenViking 记忆与上下文套件Contextdsh-context用于上下文洞察和管理的 DeepSeek Harness 插件,提供上下文仪表板和上下文命令,帮助了解上下文的构成及其演变过程。Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Memsearch Dsh@zilliz/memsearch-dsh适用于 DeepSeek Harness 的 MemSearch 插件:在多个代理之间共享 Markdown 记忆,支持捕获、步骤前上下文注入、记忆召回技能和技能候选审核面板。

README

checkpoints

English | 中文

This DeepSeek Harness plugin restores a session to a known-good moment: working-tree files and model-visible history together. Review the work in the Checkpoints tab next to Chat and Trajectory. Click a checkpoint to inspect the cumulative file diff. Click Rewind, then confirm, to restore. Selecting a row never restores.

How to use it

  1. Work as usual. A Session start checkpoint is saved when the session begins, and another at the end of each turn.
  2. Open the Checkpoints tab. The checkpoint rail is on the right; newest checkpoints sit at the top, ordered by descending timestamp.
  3. Click a row to inspect every file changed up to that checkpoint (net vs the session baseline, then click a file for a GitHub-style unified preview with language highlighting).
  4. Click Rewind on that row. Read the confirm modal (later turns, dirty paths, HEAD moved). Confirm to restore.
  5. To undo the first turn's files, rewind Session start — rewind to turn 1 keeps that turn's writes. After rewind, later checkpoints drop off this generation and Chat opens a truncated session without later turns. The previous session is archived.

Features

Checkpoints tab

A checkpoint rail plus a file list. Each row shows a Created, Deleted, or Modified pill, GitHub-style +N/-N counts with a five-block bar, and a struck-through path for deletes. The Files header shows the checkpoint total in the same format. While a turn is running, the latest row replaces Rewind with a spinner and the file list plus line counts update live. Click a file to open a GitHub-style unified preview (line numbers, hunk headers, language highlighting); the preview header repeats the file time and +N/-N bar next to Close. Binary, too-large, invalid UTF-8, symlink, and directory paths get a row without a status pill, not a fake create.

One checkpoint, files and history

Rewind writes the snapshot back to disk, then forks a child session whose log ends at that checkpoint so Chat no longer shows later turns. It does not run git reset, git revert, or git checkout. Commits made during the session stay. The previous session is archived. If it was bound to a plugin worktree, that claim moves onto the child so it stays a worktree session.

Honest warnings

The confirm modal warns when non-agent dirty paths would be overwritten, and when HEAD has moved since the checkpoint.

Install

dsh plugin --profile <name> add @dsh-next/dsh-next-checkpoints

<name> is your DSH profile (for example web). Reload the profile after adding the plugin.

Good to know

  • Needs DeepSeek Harness 0.1.2-rc.1 or newer.
  • Checkpoints are not git. The file list is this session's touched paths (write/edit tools), not git status. A bash mv of a file this session created is followed by content hash, so it still shows at the new path. Files another session changes in the same folder are not listed. After rewind, git status may look like later commits were undone as unstaged changes — that is the honest state.
  • Refuse rewind while a turn is still running.
  • Contributors: see CONTRIBUTING.md.