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.

Quick Ask — DSH Plugin for DeepSeek Harness
← Plugins

dsh-quick-ask

Quick Ask

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

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-quick-ask@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Quick Ask is published as dsh-quick-ask and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/13/2026

Versions

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

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
773.4 kB
Files
15
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
9/13/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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 pluginsClient 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.Pet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

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