DeepSeek Harness plugin

dsh-history-tree

Codex-style conversation turn timeline tree and history overview on the left border of chat messages in DSH Web UI

Jump to install

Source facts

Repository
z953218350/dsh-history-tree
Latest update
Aug 19, 2026
Category
Tools & Capabilities
GitHub stars
4
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/z953218350/dsh-history-tree
Plugin: dsh-history-tree
Author: z953218350

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.en.mdSource · read only
README language

DSH History Tree · Codex-style Conversation Timeline

中文 | English

![npm version](https://www.npmjs.com/package/dsh-history-tree) ![npm downloads](https://www.npmjs.com/package/dsh-history-tree)

![DSH History Tree conversation timeline rail and hover overview card](docs/images/history-tree.png)

DSH History Tree is a DeepSeek Harness (DSH) Web UI plugin that adds a Codex-style conversation turn timeline rail and hover history overview cards to the left edge of chat messages.

Features

  • Fixed vertically centered timeline rail

- Stays glued to the left edge of the workspace / sidebar divider, vertically centered in the viewport, and does not scroll with messages. - Generates one dash per real user question, ignoring deliverables, tool executions, and system placeholders. - Supports a max-height constraint (max-height) and smooth internal wheel scrolling for long conversations.

  • Fish-eye magnification

- Smooth step-wave magnification on hover: 26px / 19px / 14px / 10px / 8px.

  • Hover overview card

- Line 1: the user's exact question text, with no redundant timestamps. - Line 2: the model's final reply / explanation text, strictly filtered to exclude Think, Bash tool execution, and file deliverables. - Footer: sent time · duration · token / throughput. - Click any dash or hover card to smoothly jump to that conversation turn.

  • Auto load older history

- Hovering over the top dash or scrolling to the top automatically triggers "load older" history and extends the timeline upward.

Installation

DSH uses the Cordis modular microkernel architecture. You can install the plugin in either of the following ways.

Option 1: Install from npm (recommended)

#### 1. Use the DSH CLI

dsh plugin --profile web add -w dsh-history-tree

#### 2. Or install it in the web profile directory

cd ~/.dsh/profiles/web
npm i dsh-history-tree
# or with pnpm
pnpm add -w dsh-history-tree

After installation, make sure ~/.dsh/profiles/web/package.json contains dsh-history-tree in its dsh.profile.bundles array:

{
  "name": "dsh-profile-web",
  "private": true,
  "dependencies": {
    "dsh-history-tree": "^1.0.0"
  },
  "dsh": {
    "profile": {
      "bundles": [
        "@deepseek-ai/dsh-base",
        "@deepseek-ai/dsh-web-app",
        "dsh-history-tree"
      ]
    }
  }
}

Option 2: Install from a local source directory (link)

dsh plugin --profile web add -w "link:/path/to/dsh/plugin/dsh-history-tree"

> If startup reports duplicate sub-package declarations after add, check the dsh.profile.bundles array in ~/.dsh/profiles/web/package.json to ensure it only contains root packages (such as dsh-history-tree, @linxin666/dsh-web-ui-all, etc.).

Usage

Start the DSH web service:

dsh --profile web
# or
dsh web

Open http://127.0.0.1:3080/, open any conversation with multiple turns, and you will see the vertically centered timeline rail on the left.

Project Structure

dsh-history-tree/
├── cordis.patch.yml   # Cordis plugin profile declaration patch
├── package.json       # Package manifest and client inject dependencies
├── README.md          # Chinese documentation
├── README.en.md       # English documentation
├── docs/
│   └── images/        # Screenshots and preview images
└── lib/
    ├── index.js       # Host (server-side) entry
    └── client.js      # Client (front-end fish-eye animation, DOM extraction, card rendering)

License

MIT