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.

Prompt Suggestions — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-prompt-suggestions

Prompt Suggestions

Next prompt suggestion for the DeepSeek Harness input box: after the assistant replies, a gray suggestion appears in the empty input box. Press Tab to insert it. Prompt suggestions for the DSH composer.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-prompt-suggestions@0.1.0
READMECompatibilityVersions

Compatibility and provenance

Prompt Suggestions is published as dsh-prompt-suggestions 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
npm
Registry updated
9/25/2026

Versions

0.1.0stable
9/25/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
21.3 kB
Files
7
Surface
web
License
MIT
Source
npm
GitHub
★ 1
Weekly downloads
0
Last push
9/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 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-prompt-suggestions

DeepSeek Harness 输入框的「下一句建议」:助手回复完后,空着的输入框里会出现一句灰色的建议,是根据当前对话猜你接下来最可能发的话。按 Tab 填进输入框,Esc 忽略;一开始打字建议就消失,删空了又会出现。

English

安装

在 profile 目录(例如 ~/.dsh/profiles/web)的 package.json 里加上依赖和 bundle:

{
  "dependencies": { "dsh-prompt-suggestions": "^0.1.0" },
  "dsh": { "profile": { "bundles": ["...原有的...", "dsh-prompt-suggestions"] } }
}

然后在该目录执行 pnpm install,重启 DSH。桌面端要从托盘「退出」再打开。

需要 DSH 0.1.7-rc.2 及以上。

用哪个模型

默认自动找一个 DeepSeek 的 flash 模型,关闭思考,每条建议最多 80 个 token。要换模型,在 profile 的 cordis.patch.yml 里加:

- id: dsh-prompt-suggestions
  config:
    provider: deepseek-official
    model: deepseek-flash

provider 和 model 要一起写。其他可调项:maxContextChars(带给模型的对话字数,默认 6000)、timeoutMs(默认 10000)。

说明

  • 每条助手回复只请求一次模型,结果按会话缓存,反复清空输入框不会重复计费。
  • 只在助手说完话、轮到你的时候给建议;新对话、助手还在工作时不显示。
  • 带给模型的是当前会话最近几轮的文字内容,走的是你在 DSH 里配置好的同一个模型服务,密钥由 DSH 管理,插件不接触。
  • 建议接口挂在 DSH 自己的网页服务上,复用官方的登录校验,未登录的请求会被拒绝。
  • 输入法组字时不会抢 Tab;/ 命令和 @ 引用菜单打开时 Tab 仍归菜单。

许可

MIT