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 Navigator — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

@dsh-plugin/dsh-session-navigator

Session Navigator

Session navigation minimap & outline for DeepSeek Harness web UI (Google AI Studio style side navigation) · DSH 会话导航插件:仿 Google AI Studio 侧边 Minimap、问题刻度与悬浮预览

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

npx -y @deepseek-ai/dsh plugin --profile web add github:wuxiangru915/dsh-session-navigator#d3710670fa97c2e957ccbf7957408b8e8ce8eeff
READMECompatibilityVersions

Compatibility and provenance

Session Navigator is published as @dsh-plugin/dsh-session-navigator 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
8/21/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 ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.

README

dsh-session-navigator

Session navigator and turn minimap for DeepSeek Harness.

中文 · MIT License

dsh-session-navigator brings a sleek, full-height turn minimap and navigation rail to the Harness Web UI: inspect every user turn proportionally along the conversation stream, hover to view message previews with quick action buttons (copy, export markdown, jump between turns), drag the unified scroll thumb, and smoothly navigate long conversations — with zero modification to official packages.

What it solves

In multi-turn, long agent conversations (dozens of rounds of prompt-response pairs and tool executions), scrolling through massive outputs to locate a specific turn or prompt is tedious. Official DSH lacks a conversation minimap or quick turn outline. This plugin provides a non-intrusive full-height rail along the right edge of the chat stream:

long conversation stream (50+ turns of code / tool outputs)
  -> full-height navigation rail on the right edge
  -> hover any turn marker: floating preview card with turn #, prompt snippet, and Q&A status
  -> quick actions on card: export turn to Markdown, one-click copy, previous/next turn stepper
  -> click marker or card: smoothly scrolls to the target message with highlight pulse
  -> unified draggable scroll thumb replaces redundant native scrollbars

Features

  • Full-height minimal rail: A clean 1px vertical axis anchored seamlessly to the conversation scrollport without bulky capsules, completely blending into the UI.
  • Proportional turn markers: Automatically maps each user turn to its real physical height offset in the scroll container.
  • Active turn indicator: Visual vertical pill highlighting the currently viewed turn with smooth scroll tracking (ScrollSpy).
  • Unified draggable scroll thumb: Smooth draggable viewport scrollbar that cleanly hides duplicate native browser scrollbars.
  • Floating preview card:
    • Turn number badge (e.g. #2 Prompt / Q&A).
    • Export Markdown: Download the turn's prompt and response as a standalone .md file.
    • One-click Copy: Copy full turn text with instant green checkmark confirmation.
    • Turn Stepper: Previous (▲) and Next (▼) buttons to step through conversation rounds.
    • 3-line truncated prompt snippet with bold numbering.
  • Smooth jump & pulse: Clicking any marker or card scrolls smoothly to the target bubble with a focus glow wave animation.
  • Zero core modification: Pure bundle plugin (dsh.bundle patch layer); mounts via official shell.overlay slot without patching or modifying core packages.

Installation

# one line, from a git source
dsh plugin --profile web add github:wuxiangru915/dsh-session-navigator

# restart the web server, then hard-refresh the page

Local development:

dsh plugin --profile web add /path/to/dsh-session-navigator

The repository ships plain-JS lib/ artifacts with no build step, so git-source installs work without any build tooling on the user's machine.

Usage

Web UI

Session navigator

Open any conversation in DSH Web:

  • Navigation Rail: On the right edge of the conversation, turn markers appear proportionally along the vertical rail.
  • Hover Preview: Hovering over any marker displays the floating preview card with turn summary and action buttons.
  • Click to Jump: Click any marker or preview card to jump directly to that turn.
  • Turn Actions: Use the card's header buttons to export markdown, copy content, or step between turns.
  • Drag to Scroll: Drag the viewport thumb along the rail to scroll the conversation.

Architecture

lib/
├── index.js   Host half: empty cordis plugin entry
└── client.js  Browser half: __ModuleLoader__ bundle registering shell.overlay slot
cordis.patch.yml   dsh.bundle patch layer — one insert row drives both halves
assets/
└── session-navigator.png   Preview screenshot
browser (shell.overlay slot)
  -> scans [data-conversation-scroll] and [data-chat-anchor-key]
  -> computes proportional turn markers & scroll spy
  -> renders full-height rail + preview card + smooth scroll controller

Roadmap

  • Full-height minimal navigation rail
  • Proportional turn markers & active pill indicator
  • Floating preview card (export MD, copy text, prev/next stepper)
  • Single unified draggable scroll thumb
  • Smooth scroll with highlight pulse animation
  • Filter markers by search keywords
  • npm release (@dsh-plugin/dsh-session-navigator)

Requirements

  • DeepSeek Harness >= 0.1.0-rc.5 (Cordis 4.x)
  • Node.js >= 22

License

MIT