DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-sidemind

Sidemind

为 DeepSeek Harness 提供并行的旁支问题和对话,不污染主上下文。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Musdkar/dsh-sidemind#64d6d36df92e5349212c27b47b90b018f49d58f0
README兼容性版本

兼容性与来源证明

Sidemind 以 dsh-sidemind 发布,当前版本为 0.2.2。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

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

版本

0.2.2stable
2026/9/18
0.2.1stable
2026/9/18
0.1.3stable
2026/9/17
查看其余 1 个版本收起版本
0.1.0stable
2026/9/17

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Mnemondsh-mnemon面向 DeepSeek Harness 的可组合三层记忆控制平面:持久化运行时上下文、可搜索的项目文档、可插拔的长期记忆、受保护的策略、WebUI 和无头工具。Memory@furongjun1999/dsh-memory灵枢(Lingshu·líng shū)DeepSeek Harness 插件:完整大脑——长期记忆/知识飞轮/自我认知/递归反思接入 DSH,对话自动沉淀进 md_cg 认知图(md 文档)Rewind Plugindsh-rewind-plugin同窗口内对话回退并恢复工作区文件Meow Memorymeow-memoryDeepSeek Harness 的跨会话项目记忆:七层 SQLite 记忆、首轮快照注入、每条消息的关键词命中、memory_remember/search/project 工具、带 reflection-fold UI 的自动反思,以及由空闲触发的梦境整合

README

SideMind

Parallel conversations without polluting your main context.

SideMind is an experimental DeepSeek Harness Web/Desktop plugin built around two deliberately different interaction models:

  • /side [question] — open an ephemeral multi-turn side thread in DSH's native right sidebar. It forks from the latest completed main turn, supports read-only tools, and is destroyed when its tab is actually closed.
  • /btw <question> — ask an ephemeral single-response side question in a compact overlay above the main composer. It sees the current completed conversation context, has no tools, and is destroyed when dismissed.

0.2.2

0.2 is a UI/interaction rewrite informed by the open-source Codex TUI /side, Grok Build's open-source /btw panel, and DSH's own UI primitives. 0.2.1 added a child-scoped fork-boundary system prompt; 0.2.2 replaces the BTW mini-chat chrome with Grok's compact bordered-panel interaction.

Side

  • no duplicate giant SideMind header inside the native DSH tab;
  • a thin From main thread · read-only · ephemeral context strip;
  • inherited parent history stays model-visible but is hidden from the Side transcript;
  • compact user bubbles + document-style assistant Markdown;
  • DSH MarkdownText when available, with a compatibility fallback;
  • copy-as-Markdown action on assistant replies;
  • auto-focused, auto-growing composer;
  • Enter sends and Shift+Enter inserts a newline;
  • /side why is this implemented this way? creates the branch and sends the first question immediately.

BTW

  • Grok Build-style bordered panel directly above the composer;
  • the top border itself carries /btw <question> and an always-visible [Esc] hint;
  • Loading / Done / Error states with no duplicate question card, product header, or footer;
  • DSH Markdown rendering for the answer;
  • bounded internal scrolling for long replies; completed long answers accept Arrow/Page/Home/End navigation;
  • Esc closes the panel and destroys the child;
  • no tools and no write-back to Main;
  • intentionally does not persist dismissed BTW answers into Main scrollback.

See docs/DESIGN.md for the reference analysis and interaction rationale.

Isolation model

  1. Both surfaces inherit only through the latest completed parent turn and then diverge.
  2. SideMind never sends side answers back into the parent Agent automatically.
  3. Side prompt bodies live only in the ephemeral child Session.
  4. /btw exposes no model tools.
  5. /side allows only a conservative known read-only tool set; unknown/custom tools fail closed.
  6. Closing the corresponding UI disposes the owning child AgentHandle and removes the in-memory child Session.
  7. SideMind deliberately avoids DSH's persistence-backed continuable-subagent path so close still means destroy.

The parent Session still records ordinary DSH command lifecycle events for command admission. SideMind uses recordInput: false, and successful internal control calls contain neither the side prompt body nor the side answer in those parent command records.

Compatibility

DSH is still a rapidly changing developer preview. SideMind avoids newer sidebar close-handler APIs and watches the tab occurrence AbortSignal instead, which works with the older DSH build currently shipped in the tested DSH Desktop.

The browser client prefers DSH-native UI primitives but keeps compatibility fallbacks for Desktop builds that expose a smaller client-module surface.

Development

npm test
npm run check

See:

  • Architecture
  • Interaction design

License

MIT