DeepSeek Harness plugin

dsh-qnav

DSH web plugin: a slim right-edge question-navigation rail for long conversations — every real user question gets a hoverable tick on the right edge; click to jump straight to that turn, current

Jump to install

Source facts

Repository
lin-nanxing/dsh-qnav
Latest update
Aug 17, 2026
Category
Tools & Capabilities
GitHub stars
0
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/lin-nanxing/dsh-qnav
Plugin: dsh-qnav
Author: lin-nanxing

Check the source files

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

File explorer7 files
README.mdSource · read only
README language

dsh-qnav

<p align="center">

English · 中文 · 日本語 · Español · Français

</p>

---

One-liner

A slim right-edge question-navigation rail for long DSH conversations — every real user question gets a hoverable tick; click to jump straight to that turn, current position auto-highlights while scrolling.

Install (three steps)

# 1. Clone from GitHub
git clone https://github.com/lin-nanxing/dsh-qnav.git
cd dsh-qnav

# 2. Build (only if you modify source code)
npm run build

# 3. One-line command to mount into DSH
dsh plugin --profile web add link:.

> 💡 No npm publish needed! > The link: prefix tells DSH to install from a local path. After cloning, just run step 3 in the project directory. > > "Publishing to npm" means uploading your package to the public npm registry so others can simply type dsh plugin --profile web add dsh-qnav. This is optional — it doesn't affect your own usage.

Key Features

1. Precise extraction — Reads real user questions from DSH conversation DOM nodes using data-chat-flow-kind="user", filtering out steering/pending/context rows; falls back to [class*="userRow"]. 2. Element-reference jumping — Saves each flowItem DOM element reference instead of text-prefix matching; clicks call scrollIntoView() directly. Eliminates dedup bugs, prefix collisions, and @-reference text-node splits. 3. Auto-filter non-user rows — Excludes uncommitted inputs and system-injected contexts via data-pending-steering and data-chat-flow-kind. No misleading empty ticks. 4. Proportional layout — Ticks are evenly spaced along the right edge, adapting count as questions accumulate. 5. Dark-mode support — CSS color-scheme: light dark + @media (prefers-color-scheme: dark) switches highlight color automatically with page theme. 6. Hover tooltip bubble — Hovering shows "N. <full question>" to the left; bubbles anchor left to avoid viewport overflow and measure dimensions before positioning (no flicker). 7. Current-position highlight — Updates via element rects (getBoundingClientRect().top ≤ 120px) instead of fragile text-tree walks, immune to answer-body quoting interference. 8. MutationObserver sync — Re-scans & re-renders ticks on content change (500ms debounce); highlight polls every 600ms. 9. HMR-safeapply(ctx) returns a disposer that tears down observers, intervals, injected DOM, and stylesheets — no leaks on hot-reload or disable.

Improvements over desktop preload

DimensionDesktop preload-nav.jsdsh-question-nav plugin
RuntimeElectron shell preload (desktop only)DSH web client (any platform)
InstallRequires editing lib/tabs.js & rebuildOne-line dsh plugin add link:.
SandboxNeeds sandbox: falsePure client, no sandbox changes
CSS selector[class*="userRow"]data-chat-flow-kind="user" (exact) + fallback
Jump strategyText-prefix match + "Load older" retryDirect element scrollIntoView
HMRN/A (restart process)ctx.effect + auto-dispose
PlatformmacOS desktop onlyAny DSH web (Web / Win / Linux / WSL / remote)

Known limitations

  • Visible-only — Only scrolls to rendered items; questions beyond the pagination boundary ("Load older" cutoff) cannot be jumped to yet.
  • Very long sessions — Tick density increases with 500+ questions; future search panel will help.
  • User questions only — Currently targets user flowItems; assistant answers are not jump targets.

Quick preview

![Question navigation demo](public/demo.gif)