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.

History Question Nav — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
H

@known-mouse/dsh-history-question-nav

History Question Nav

DSH web plugin: a right-side question navigator for the current session. Lists every user question and scrolls to the matching message on click.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:TropicWiden/dsh-history-question-nav#e6d2056f61afc3f6abd96f206d6cd3683b617130
READMECompatibilityVersions

Compatibility and provenance

History Question Nav is published as @known-mouse/dsh-history-question-nav and currently resolves to version 1.0.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/25/2026

Versions

1.0.0stable
8/25/2026

Related plugins

Loading related plugins…

Latest
1.0.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/25/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 Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundle

README

@known-mouse/dsh-history-question-nav

一个 DeepSeek Harness Web 客户端插件:在窗口右侧列出当前会话里你问过的每一个问题,点击任意一条即可平滑滚动定位到对话中对应的位置(问题气泡会短暂高亮)。

  • 右侧常驻「问题 / Questions」面板,按对话顺序列出当前会话的所有用户问题。
  • 点击某条问题 → 会话滚动到该问题所在位置并短暂高亮。
  • 面板可收起为右上角「问题」小按钮。
  • 跟随当前会话:切换会话时列表自动换成那个会话的问题。
  • 中英双语:注册了 question-nav locale 命名空间(zh/en),随 DSH 的语言设置自动切换。

Right-side question panel / 右侧问题面板

目录结构

dsh-history-question-nav/
├── package.json          # dsh.bundle.patch + dsh.client.platform = "web"
├── cordis.patch.yml      # profile 补丁层:insert 本插件行
├── lib/
│   ├── index.js          # host 半边(故意为空)
│   ├── client.js         # 浏览器半边(window.__ModuleLoader__.load 打包格式)
│   └── types/            # 最小 d.ts 声明
└── README.md

客户端半边只依赖外壳已提供的 react(无需任何 dsh.client.external),通过 ctx.slots.inject("shell.overlay", ...) 注册到布局的框架级悬浮层,用 ctx.sessions.binding(currentId) 读取当前会话的 conversation 快照;文案经 ctx.locale.register("question-nav", { zh, en }) 注册并在组件里走 t 座位。

安装

dsh plugin --profile web add @known-mouse/dsh-history-question-nav

dsh plugin 会:① pnpm add 安装依赖;② 检测到本包声明了 dsh.bundle, 自动把它加进 profile 的 bundles 层,于是 cordis.patch.yml 的 insert 行自动生效。 最后重启 Web 服务并刷新页面:

dsh web

需要本机已安装 pnpm(dsh plugin 通过它管理依赖)。

手动安装(不依赖 dsh plugin)

  1. 把本目录放到 profile 的 node_modules 下,并把 @known-mouse/dsh-history-question-nav 加进 profile package.json 的 dependencies。
  2. 把 cordis.patch.yml 的内容合并进 profile 的 cordis.patch.yml,或者直接把 @known-mouse/dsh-history-question-nav 加进 dsh.profile.bundles。
  3. 重启 dsh web 并刷新页面。

原理要点

  • shell.overlay 是 ui-layout 声明的框架级悬浮层(additive list,root scope), 本插件把面板注册进去,pointer-events:auto 让面板可交互,其余保持 click-through。
  • 当前会话 id 来自全局标准钩子 useSessions(s => s.current);会话的 conversation 快照通过注入的 ctx.sessions 用 binding(id).session 取得,并用 useSyncExternalStore 订阅。
  • 问题列表来自 ConversationSnapshot.chat(order + nodes.get(key)),过滤 kind === "user";每个 chat 节点在 DOM 上带有 data-chat-anchor-key,点击时按 该 key 找到元素,再对 [data-conversation-scroll] 滚动容器做平滑滚动。