DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Quick Ask — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

dsh-quick-ask

Quick Ask

DeepSeek Harness 的 ChatGPT 风格侧边聊天:在浮动侧边面板中询问有关当前主题的小问题,由独立的轻量会话回答,且不会影响主对话。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-quick-ask@0.1.1
README兼容性版本

兼容性与来源证明

Quick Ask 以 dsh-quick-ask 发布,当前版本为 0.1.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/13

版本

0.1.1stable
2026/9/13
0.1.0stable
2026/9/12

相关插件

正在加载相关插件…

最新版
0.1.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
773.4 kB
文件数
15
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
0
最近提交
2026/9/13
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 ui-customization 分类下经过校验的插件。

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Pet@linxin666/dsh-pet适用于 dsh Web GUI 的多宠物伴侣插件:由注册表驱动的浮动宠物,可响应模型活动,支持为每只宠物命名、抚摸/喂食互动以及亲密度评分

README

dsh-quick-ask

ChatGPT-style side chat for DeepSeek Harness: a floating side panel in the Web GUI where you can ask small questions about the current topic — answered by an independent lightweight session that never touches the main conversation.

主对话(agent 任务)          侧边快速提问(独立会话)
┌──────────────────────┐   ┌─────────────────────────┐
│ 正在生成网站…         │   │ 💬 侧边快速提问     空闲 │
│ (工具调用、文件写入)   │   │ Q: 什么是 SSR?         │
│                      │   │ A: 简短解释…            │
└──────────────────────┘   └─────────────────────────┘

Screenshots

Before — the default view. The floating quick-ask button sits on the right edge of the chat view and stays out of the way:

Default DSH view with the floating quick-ask button on the right edge

After — the side panel open. Ask a question about the current topic; it is answered by an independent side session, and the main conversation is left untouched:

Side panel open, answering a question in an independent side session

Features

  • Isolated side session — questions run in a separate DSH session driven through the official /api RPC (session/create, session/prompt, session/cancel) and streamed over the /api/remote.mux WebSocket. The main conversation's history, queue, and agent are never affected.
  • Topic-aware — the panel automatically attaches a snapshot of the visible main conversation (plus any composer draft) as background context, so answers stay on-topic. Can be disabled per question.
  • Lightweight UX — streaming text, collapsible reasoning, tool-call chips, stop button, queued questions, preset selector (agent presets from the host), persistent history restore, theme-aware (follows DSH light/dark).
  • Zero host logic — pure client plugin (dsh.client.platform: "web"), no server-side services, no dependencies.
  • No interference — the side session shows up as its own session in the session list (titled from its first question), exactly like a separate ChatGPT chat.

Install

From the plugin market

  1. Open the DeepSeek Harness plugin market and install dsh-quick-ask, or from the CLI:

    dsh plugin --profile <profile> add dsh-quick-ask
    
  2. Reload the web page (a host restart is only needed if the market could not hot-mount it).

Manual

pnpm add dsh-quick-ask        # into your profile
# add "dsh-quick-ask" to dsh.profile.bundles in the profile package.json

Usage

  • Click the floating chat button on the right edge of the chat view (or the panel opens automatically if it was left open).
  • Type a question and press Enter (Shift+Enter for a newline).
  • 新话题 starts a fresh side session; 清屏 clears the panel display only; 停止 cancels the current answer.
  • Uncheck 附带主对话上下文 to ask without background context.

Development

node build.mjs      # wraps src/client.js + src/style.css into lib/client.js
  • src/client.js — client plugin body (factory-form bundle body).
  • src/style.css — panel styles (theme-aware via body[data-ds-dark-theme]).
  • lib/index.js — no-op host half (required for the Loader entry).

License

MIT