DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Rewind Retry — DSH Plugin for DeepSeek Harness
← Plugins
R

@local/dsh-rewind-retry

Rewind Retry

Retry, edit-and-resend, or continue any finished turn. Rewinds by forking the session right before the chosen prompt.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:Locietta/dsh-rewind-retry#88ec944ac6e56b290dfae99549a2b932dcdee394
READMECompatibilityVersions

Compatibility and provenance

Rewind Retry is published as @local/dsh-rewind-retry and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
9/25/2026

Versions

0.1.0stable
9/25/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/25/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in memory-context.

Memory Plugin@openviking/dsh-memory-pluginOpenViking memory and context bundle for DeepSeek HarnessContextdsh-contextA DeepSeek Harness plugin for context insight and management, with context dashboard and context command, for understanding how the context is made of, and how it evolves.Weknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Archive Manager@michengai/dsh-archive-managerNPM-installable DSH Web plugin for managing archived sessions.

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