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.

Tree — DSH Plugin for DeepSeek Harness
← Plugins
T

dsh-tree

Tree

DeepSeek Harness conversation tree: Display all branches of a conversation as a clickable tree

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

npx -y @deepseek-ai/dsh plugin --profile web add github:JRJRJPRO/dsh-tree#300f117f653c40e3ab10418158c248cfe3533bb9
READMECompatibilityVersions

Compatibility and provenance

Tree is published as dsh-tree 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/19/2026

Versions

0.1.0stable
9/19/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
★ 1
Weekly downloads
0
Last push
9/20/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 HarnessWeknora@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.Memsearch Dsh@zilliz/memsearch-dshMemSearch plugin for DeepSeek Harness: shared markdown memory across agents, with capture, pre-step context injection, memory-recall skill, and a skill-candidate review panel.

README

dsh-tree

把一个对话的所有分支画成一棵树,贴在 DeepSeek Harness 聊天区右缘。

点节点跳到那一轮,点 + 从那儿接着问。

不依赖任何其它插件。运行时只多一个 schemastery(dsh 自己也用它,用来声明设置项)。

     ◌
     1
     2
 3'  3
 4'  4

装

dsh plugin --profile web add github:JRJRJPRO/dsh-tree

重启 dsh web。卸载 dsh plugin --profile web remove dsh-tree。

临时关掉不用卸载——往 cordis.patch.yml 加两行,约 1 秒生效,刷新浏览器即可:

- id: dsh-tree
  disabled: true

从源码跑:先 npm install(要一个 schemastery),再把 - insert: - id: dsh-tree, name: 'file:///绝对路径/index.js' 写进 cordis.patch.yml, 别和上面的装法同时用(同一个 id 插两次,dsh 起不来)。 改 index.js 要重启,改 client.js 刷新浏览器即可。

用

单击节点跳到那一轮
悬停右侧出详情卡
双击名字改名
+从这之后接着问
↺这一轮重来

边框蓝 = 这个节点在你当前的对话里;填充蓝 = 你正看着这一轮。

省略

只画离你正在看的那一轮若干步以内的节点,剪断处画 ⋯。距离是树上的无向步数:父节点 1 步,父节点的另一个孩子 2 步。

默认 10 步。设置 → 插件 → 插件配置 → 对话树 里可调,5 到 30,再往上一档是不省略。

它还顺手修了两个原生 fork 的缺陷

  • 会多抄一条还没跑的待办 —— 在节点 N 开岔路,新分支会先把 N+1 那个问题重跑一遍。所有 provider 都中招。
  • 外部引擎的记忆不跟随 —— 只影响 dsh-claude 这类把对话托管给外部引擎的桥接。不依赖它,装了才处理。

两个都在 agent/created 上接管,原生分支按钮同样生效。

测

node test.mjs              # 真实会话日志跑整条渲染管线,--print 打印 ASCII 树
node test-highlight.mjs    # 高亮的边界情形
node test-elide.mjs        # 省略的距离、行号压实、省略号位置
node test-branch.mjs       # 把真实分支倒带到"刚出生",重放接管逻辑

设计与踩坑记录:DESIGN.md。原生能力清单:NATIVE-BASELINE.md。

还没做

节点名字存在 localStorage · 左侧列表仍是平的 · 超长对话会溢出。

MIT