DeepSeek Harness plugin

dsh-question-locator

DSH Web 插件:在会话中列出我的问题并点击定位

Jump to install

Source facts

Repository
M2-Z/dsh-question-locator
Latest update
Aug 16, 2026
Category
Memory
GitHub stars
1
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/M2-Z/dsh-question-locator
Plugin: dsh-question-locator
Author: M2-Z

Check the source files

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

File explorer3 files
README.mdSource · read only

dsh-question-locator

![license](./LICENSE)

DeepSeek Harness(DSH)Web GUI 插件:在当前会话中列出“我的问题”,点击即可定位到聊天正文并高亮。

功能

  • 会话页右侧出现一个“问”字浮层按钮
  • 点击后打开“我的问题”面板,列出当前会话中所有 user / steering 消息
  • 点击任意问题,聊天区自动滚动到该消息并短暂高亮
  • 会话切换时自动跟随当前会话,消息流式/历史加载时列表实时刷新

环境要求

  • DeepSeek Harness(DSH)Web GUI
  • Node.js ≥ 20(仅本地构建时需要;安装运行不需要)

安装

以下命令均通过 npx @deepseek-ai/dsh plugin 转发给 profile 目录内的包管理器。安装后重启 npx @deepseek-ai/dsh web 生效(host 部分在 DSH 启动时加载)。

从 GitHub 仓库安装(当前推荐)

git clone https://github.com/M2-Z/dsh-question-locator.git
npx @deepseek-ai/dsh plugin --profile web add ./dsh-question-locator

> Windows 下如果 clone 到 D:\...,也可直接使用绝对路径: > ``sh > npx @deepseek-ai/dsh plugin --profile web add D:\path\to\dsh-question-locator > ``

从 GitHub Releases 下载 tarball 安装

等仓库发布 Release 后,下载 dsh-question-locator-<version>.tgz

npx @deepseek-ai/dsh plugin --profile web add ./dsh-question-locator-0.0.1.tgz

从 npm 安装(发布后可用)

npx @deepseek-ai/dsh plugin --profile web add dsh-question-locator

卸载

npx @deepseek-ai/dsh plugin --profile web remove dsh-question-locator

使用

1. 启动 npx @deepseek-ai/dsh web,打开任意会话页。 2. 会话页右侧会出现“问”字浮层按钮。 3. 点击按钮打开“我的问题”面板。 4. 点击任意问题,聊天区会自动滚动定位到该消息并高亮。

开发

pnpm install
pnpm exec tsc -p tsconfig.json
pnpm exec tsdown

技术要点

  • host 侧为空,纯浏览器端 UI 功能
  • 数据源:ctx.sessions 的会话列表 + ConversationSnapshot
  • UI 槽位:shell.overlay(additive 浮层,不替换现有界面)
  • 定位:按 data-chat-flow-kind="user|steering" 顺序匹配 DOM 行,并手动滚动到聊天滚动容器

License

[BSD-3-Clause](./LICENSE)