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.

Btw Side — DSH Plugin for DeepSeek Harness
← Plugins
B

dsh-btw-side

Btw Side

Ask a quick side question without interrupting the main conversation - a Claude Code /btw port for DeepSeek Harness (dsh). Type /btw <question> while the agent is working.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:kezboardpj/dsh-btw#c623f50b627b71c33645770841ec0267a94c8d7b
READMECompatibilityVersions

Compatibility and provenance

Btw Side is published as dsh-btw-side 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
github
Registry updated
8/21/2026

Versions

0.1.1stable
8/21/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/23/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 developer-tools.

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)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-btw

在智能体干活的时候,用 /btw <问题> 快速问个小问题,完全不打断主线任务。

为 DeepSeek Harness(dsh) 打造的插件——把 Claude Code 的 /btw 搬进 dsh web:旁路用一次性子代理回答,只能看(继承主对话上下文)、不能用任何工具、单轮流式输出;你的问题永远不落盘,记录只显示「提问 + 回答」。

安装

要求:安装了 DeepSeek Harness(dsh)(≥ 0.1.1-rc.2,装有 web UI 的常规安装)。

# 方式 A:git 安装(推荐)
dsh plugin --profile web add https://github.com/kezboardpj/dsh-btw

# 方式 B:本地克隆后链接安装
git clone https://github.com/kezboardpj/dsh-btw
dsh plugin --profile web add /path/to/dsh-btw

# 方式 C:从 npm 按名安装
dsh plugin --profile web add dsh-btw-side

profile 名按你的实际配置替换(web / tui / 自定义)。 安装后重启 dsh(插件不支持热加载)。

用法

在主输入框输入完整一行,回车:

/btw 刚才那个 config 文件叫什么名字?

输入框上方会弹出悬浮面板,问题自动带进去并立即开始回答(流式输出):

  • 主智能体继续干活,旁路子代理并发回答,全程不打断主任务
  • 子代理只能看:完整继承主对话上下文(无截断、无 48KB 上限),不能动任何工具
  • 单轮回答;面板只显示提问 + 回答(不显示思维链;模型幻觉出的工具调用标记会被截掉)
  • 按 Esc 或点 × 关闭面板;回答中可点「停止」取消
  • 发送按钮旁的 btw 小胶囊也能打开面板(空面板手动输入)
  • 你的问题永远不落盘;旁路子会话以一次性子代理记录保留:子代理面板只读查看,不能继续对话
  • 后续 /btw 会回放最近 20 条旁路问答作为上下文(线程记忆)

与 Claude Code 的差异

维度Claude Codedsh-btw(本插件)
启动前提需已完成第一轮对话无——第一轮就能 /btw
进行中 turn 的事件能看到"除正在写的回复外的一切"能看到(派生历史含已提交事件,正在流式写的不含)
问题落盘不落盘(内存线程)不落盘
答案显示浮层(Esc/←/x)悬浮面板(流式 + Esc/×/停止)
答案持久化内存线程,退出即没面板即看即走 + 一次性子代理记录(面板只读可回溯)
线程上下文回放最新 20 条回放最新 20 条
子代理记录不显示(除非 f 转正)只读记录:只显示提问+回答,不含主对话历史

工作原理

/btw <q> + Enter
  → web 端拦截:主输入框清空,悬浮面板弹出并自动提问(不走命令、不经模型)
  → client → host RPC(插件自有 /btw 路由,loopback 专用)btw/ask
  → fork 一次性子代理(空种子 + subagent/descriptor 身份)
      - 主对话派生历史 = 运行时上下文注入(模型可见,不进子会话日志)
      - 线程回放 = 运行时上下文注入(同上)
      - 工具全部滤空 + 显式"无工具"指令 + 禁止输出工具调用语法
  → 单轮回答;client 250ms 轮询 btw/poll 流式取回文本
  → btw/cancel 可中止;主输入框零痕迹,问题不落盘

License

MIT