DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Rewind Retry — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
R

@local/dsh-rewind-retry

Rewind Retry

重试、编辑并重新发送,或继续任何已完成的回合。在所选提示之前通过分叉会话进行回溯。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Locietta/dsh-rewind-retry#88ec944ac6e56b290dfae99549a2b932dcdee394
README兼容性版本

兼容性与来源证明

Rewind Retry 以 @local/dsh-rewind-retry 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.1.0stable
2026/9/25

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Memory Plugin@openviking/dsh-memory-plugin适用于 DeepSeek Harness 的 OpenViking 记忆与上下文套件Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Archive Manager@michengai/dsh-archive-manager可通过 NPM 安装的 DSH Web 插件,用于管理已归档的会话。Memsearch Dsh@zilliz/memsearch-dsh适用于 DeepSeek Harness 的 MemSearch 插件:在多个代理之间共享 Markdown 记忆,支持捕获、步骤前上下文注入、记忆召回技能和技能候选审核面板。

README

dsh-rewind-retry

A DeepSeek Harness (DSH) plugin that adds Retry, Edit prompt, and Continue actions to finished turns in the Web / Desktop chat UI.

DSH has no built-in way to edit your last message or retry a turn that failed (for example, one halted by a network error). This plugin adds those actions.

Actions

ActionWhereWhat it does
↺ Retryevery finished turn you started with a promptForks the session right before that prompt and sends the same prompt again in the fork.
✎ EditsameForks at the same point and puts the old prompt into the fork's composer so you can change it before sending.
⏭ Continuelatest turn only, when it failed or produced no replySends "Continue from where you left off." in the same session, keeping all work already done.

Turns that ended with a reply get the actions as icons in the existing copy / branch row (revealed on hover, like the built-in icons). Turns that ended without a reply, such as failed or stopped turns, get a visible row of labelled buttons, because DSH shows no action row for them.

How it works

DSH's session log is append-only, so a "rewind" is a fork: the plugin calls the Host's session.fork with an exact atSeq boundary and opens the new session. The original session is kept as a branch. Rewinding only affects the conversation; files changed on disk stay changed.

Choosing the boundary (planRewind in client.js):

  • Idle prompt. The cut goes just before the inbox insertion of the prompt, so settings you changed between turns (permission mode, model, …) are kept.
  • Prompt queued while the previous turn was running. The cut goes at the end of the previous turn, plus its standalone trailing events (the same rule the Host uses for its default fork). Queued prompts inherited by the fork are then removed from its inbox, so an old queued prompt can't run ahead of the retried one.
  • If the relevant history isn't loaded in the chat yet, older pages are loaded on demand.

Limitations

  • Attachments aren't carried over. Retry resends text only. If the original prompt had images or files, Retry stages the text in the composer (like Edit) and shows a note to attach them again.
  • Where the actions appear. They sit at the end of each turn, because DSH offers no extension slot on the user-message bubble.
  • Which turns are rewindable. Only turns started by your own prompt. Turns started by goal rounds, schedules, or subagent notices get no Retry or Edit.
  • Tested version. Only tested against DSH 0.1.7-rc.1. The plugin reads some Client internals (the chat snapshot and the session event window) defensively, but a future DSH release may still need updates.

Install

  1. Clone the repository somewhere permanent. DSH links to the directory rather than copying it, so don't delete it afterwards:

    git clone https://github.com/Locietta/dsh-rewind-retry.git
    
  2. Install it into your DSH profile as a bundle from that directory. The easiest way is to ask the DSH agent:

    Install the plugin bundle at <absolute path to dsh-rewind-retry>.

    The agent uses its plugin_manager tool (install_bundle with the absolute directory as target). The plugin activates without restarting DSH. Refresh the page if the buttons don't show up.

  3. To turn it off or remove it, go to Settings → Plugins and find @local/dsh-rewind-retry.

Development

The plugin is plain JavaScript and needs no build step:

FileRole
client.jsBrowser half: slot registrations, UI, and the pure planning logic.
index.jsHost half. Empty, because the plugin uses only existing Host Remotes (session.fork, session.prompt, session.updateQueue).
cordis.patch.ymlBundle patch that inserts the plugin row.
locale/Display title and description shown in the Plugin Manager.

The repo uses pnpm (pinned through packageManager in package.json).

pnpm install      # no runtime dependencies yet; creates the local environment
pnpm test         # unit tests for the fork-boundary planner (node:test)
pnpm run check    # syntax check + tests

# Check the planner against your own session logs (read-only; needs Node >= 22.15 for zstd):
node scripts/check-session-logs.cjs ~/.dsh/sessions/<workspace>/session-<id>/session.v4.jsonl.zstd

Because the installed bundle is a link to your working copy, after editing client.js you only need to refresh the DSH page. If the old code keeps running, disable and re-enable the plugin, or restart DSH.

Slots used: conversation.chat.assistant-actions, conversation.chat.turnTail, conversation.input.dock.

License

MIT