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.

Steer — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

dsh-steer

Steer

Inject corrective or guiding information into the current conversation at any time during the large language model's reasoning process, or interrupt the current turn — DSH bundle.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:CAI-MH/dsh-steer#688cd5126ece1050627bae91aea7caa5eb6f03ce
READMECompatibilityVersions

Compatibility and provenance

Steer is published as dsh-steer 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
github
Registry updated
9/10/2026

Versions

0.1.0stable
9/10/2026

Related plugins

Loading related plugins…

Latest
0.1.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
9/10/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 agents-orchestration.

Headless@deepseek-ai/dsh-headlessThe dsh one-shot bundle: a direct core Agent/Session runner over dsh-base with no Host, HTTP, or browser layerExperimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocolSubagent Claude Code@deepseek-ai/dsh-subagent-claude-codeOne-shot Claude Code subagent provider over the official Agent SDK

README

思考引导面板(dsh-steer)

在大模型思考过程中随时向当前会话注入纠偏/引导信息,或打断当前回合 —— 而不是等整个任务跑完才能再次输入对话。DSH bundle 插件。

能力

  • 发送引导(steer):不打断当前回合,把纠偏信息注入正在运行的会话,模型在下一步边界读取(保留已完成的工作)。
  • 打断(cancel):停止当前回合(保留排队中的消息)。
  • 左下角悬浮球 🧭 带状态点:绿点 = 有会话正在思考,灰点 = 空闲。
  • 自动列出并选中「正在思考」的会话;多个会话并行时可手动切换目标。

文件

  • index.js — Host 半部分:webServer 路由 + sessionController(steer / cancel / list)
  • client.js — 浏览器半部分:shell.overlay 悬浮面板
  • cordis.patch.yml — host 组合插件行
  • package.json — bundle 元数据

接口(同源 HTTP,仅本机回环 + 同源校验)

方法路径说明
GET/api/steer/sessions会话列表(含 running 标志)
POST/api/steer/message{ sessionId, text, mode? },mode 默认 steer,失败退化为 queue
POST/api/steer/cancel{ sessionId } 打断当前回合

原理

依赖 DSH 宿主 sessionController 的编排层 steer 通道:

  • prompt({ requestId, sessionId, mode: 'steer', content }) 注入引导(消息以 steering 节点进入实时收件箱);
  • prompt(..., mode: 'queue') 排队;
  • cancel({ sessionId }) 打断当前回合。

注:steer 的生效粒度是「下一步边界」,不是打断正在流式输出的 token。若模型卡在长时间工具调用里,引导需等该步自然结束才被读取;要立即全停请用「打断」。

安装

让 DSH 调用 plugin_forge_install(dir 指向本目录),或手动:

  1. 拷贝本目录到 web profile 的 node_modules/dsh-steer/
  2. profile package.json 注册 dependencies + dsh.profile.bundles
  3. 重启 DSH Desktop 生效(bundle 需重启才被加载器扫入)

维护

改代码 → 改本目录源文件 → 重新 plugin_forge_install(重新拷入 node_modules)→ 重启 DSH Desktop。