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.

Session Manager Plugin — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

@the-heart-fickle/dsh-session-manager-plugin

Session Manager Plugin

DSH plugin that bundles dsh-session-manager: session rewind (shadow git + file rollback) and archived session management.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:TheHeartFickle/dsh-session-manager#be71c56bf00329595ee93de4c51ce10c0dc25245
READMECompatibilityVersions

Compatibility and provenance

Session Manager Plugin is published as @the-heart-fickle/dsh-session-manager-plugin 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
8/21/2026

Versions

0.1.0stable
8/21/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/16/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

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.Mnemondsh-mnemonComposable three-tier memory control plane for DeepSeek Harness: persistent runtime context, searchable project documents, pluggable long-term memory, guarded strategies, WebUI, and headless tools.

README

dsh-session-manager

dsh-session-manager 是一个面向 DeepSeek Harness(DSH)的会话管理插件,把两个高频需求合在一起:

  • 回退(Rewind):对话走偏时,一键回到之前某个用户消息,重新开始。
  • 归档(Archive):暂时不用的会话先归档,保持侧边栏整洁,之后可以恢复或彻底删除。

它只增强 DSH 的会话管理能力,不改变模型、不改变工作区、不绑定特定项目。

✨ 功能一览

  • 对话回退

    • 会话头部新增“回退”按钮,也支持 Ctrl/Cmd+Shift+Z 快捷键。
    • 可从当前已加载窗口中选择任意一个已完成回合的历史用户消息。
    • 确认后基于该回合之前的状态派生新会话,并把原消息放回输入框,方便重新编辑。
  • 文件回退

    • 默认使用 shadow git 在工作区级别保存快照,不触碰项目自身的 .git。
    • 回退时可选择“仅会话回退”,也可选择“带文件回退”同时恢复工作区文件。
    • 回退前自动做安全提交,避免误操作丢失后续改动。
    • 支持 git、diff、none 三种文件回退模式。
  • 归档会话

    • 在侧边栏底部提供“归档会话”入口。
    • 已归档会话可从归档列表快速恢复。
    • 支持彻底删除单个会话、删除全部已归档会话、删除全部未分组归档会话。

📦 安装

前置条件:已安装 DSH,且 dsh web 可以正常运行。

通过 npm / DSH CLI 安装

dsh plugin --profile web add @the-heart-fickle/dsh-session-manager-plugin@latest

通过 plugin-registry 安装

npm run package:registry
dsh registry install ./registry
dsh registry enable the-heart-fickle/dsh-session-manager

registry/ 是本地生成的安装暂存目录,不会提交到仓库。

🚀 快速上手

  1. 安装插件后重启 DSH,并刷新浏览器页面。
  2. 在会话头部点击“回退”按钮,或按 Ctrl/Cmd+Shift+Z。
  3. 从弹出的历史用户消息列表中选择要回到的位置。
  4. 按需选择“仅会话回退”或“带文件回退”,确认后会自动创建新会话。
  5. 使用侧边栏底部的“归档会话”入口管理不常用的会话。

⚙️ 配置

在 profile 的 cordis.patch.yml 中配置:

- id: session-manager
  name: '@the-heart-fickle/dsh-session-manager-plugin'
  config:
    rewindIgnoreFile: 'rewind-common.gitignore'
    rewindFileMode: 'git'   # 'git' | 'diff' | 'none'
  • rewindIgnoreFile:相对 profile 目录解析的公共 ignore 文件,叠加在工作区自身 .gitignore 之上。
  • rewindFileMode:控制回退时的文件行为。
    • git(默认):使用 Git 快照回退,失败时降级为文件读写回退。
    • diff:只使用文件读写回退,不创建 Git 快照。
    • none:不启用文件回退,仅回退会话。

🔧 环境要求

  • Node.js ≥ 20
  • DSH(DeepSeek Harness)
  • 使用 git 模式时需要系统可用的 git 命令

许可证

MIT