DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-web-search-toggle

Web Search Toggle

DeepSeek Harness Web UI 的 Composer“Web Search”切换开关。开启后,代理会被强制要求(通过必需的系统提示指令)在回答前调用 web_search。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:SeerableOfficial/dsh-web-search-toggle#68167c1a8d8234f63a322cc13e93fd4ca2c3567f
README兼容性版本
Screenshot 2026-08-22 170659

兼容性与来源证明

Web Search Toggle 以 dsh-web-search-toggle 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/8/22

版本

0.1.0stable
2026/8/22

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-plugin向模型提供 BrowserSkill 浏览器自动化(browser_* 工具)的 DeepSeek Harness 工具插件Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Free Searchdsh-free-searchDeepSeek Harness 的免费网页搜索:13 个引擎(Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl 无需密钥;Parallel/Perplexity/SerpBase/DeepSeek 需要密钥),支持时间筛选、平台搜索和 web_fetch,并提供网页设置界面。Find Plugindsh-find-plugin在代理中查找 DeepSeek Harness 插件——实时搜索 GitHub 上的 dsh-plugin 主题,并按星标数排序。

README

dsh-web-search-toggle

A DeepSeek Harness (DSH) plugin that adds a "Web Search" toggle button to the chat composer tool row. When it is turned on, the agent is instructed that it must search the web before answering — mirroring the "Web Search" toggle in the DeepSeek Web Chat UI. The toggle is per-session (per conversation), like DeepSeek's own per-conversation toggle.

Features

  • Adds a compact, pill-shaped "Web Search" button in the composer tool row. Inactive = neutral outline; active = DeepSeek brand blue with a small green "on" dot.
  • When ON, injects a mandatory system-prompt directive telling the agent to call web_search before answering, on every turn of that session.
  • Per-session state, persisted across reloads and host restarts.
  • Follows DSH's plugin conventions (dsh.bundle.patch + dsh.client), so it installs like any other DSH web-profile plugin.

How it works

  • Client half (lib/client.js): registers the toggle into the composer's tool row (conversation.input.left, the seat beside the resident access-mode / plan / attach chrome). On toggle it calls the host through the client↔host RPC channel.
  • Host half (index.js):
    • Serves an RPC channel (/dsh-web-search) with websearch.get-state / websearch.set-state, storing the flag per session and persisting it to ~/.dsh/dsh-web-search-toggle.json.
    • Registers a system-prompt section (dsh-web-search:force) whose text is evaluated on every prompt assembly. When the current session's flag is ON, it injects a mandatory "you MUST call web_search first" directive into the system prompt; when OFF it renders empty (empty sections disappear).

The web_search tool itself is registered by DSH's own dsh-tool-web package (via the auto-selected DeepSeek search-provider seam); this plugin only forces its use.

Why "force" is a directive, not a hard block

DSH has no primitive for "the model MUST call tool X on every turn." So the enforcement is a strong, always-present system-prompt instruction — the authoritative, reliable way to steer the model in this harness. The model follows it, but compliance is probabilistic rather than guaranteed (as in the DeepSeek web chat UI itself).

Requirements

  • DeepSeek Harness with the web profile (dsh --profile web).
  • A configured web search provider (the built-in DeepSeek search provider, or any web_search-providing provider). The plugin forces the tool; it does not install one.

Installation

The plugin is published to npm. From the DSH web profile:

# via the dsh plugin command (recommended — reconciles the bundle list)
dsh plugin --profile web add dsh-web-search-toggle

or with pnpm directly (skips bundle-list reconcile):

cd <your-profile-dir>
npx pnpm add dsh-web-search-toggle
# then add "dsh-web-search-toggle" to dsh.profile.bundles in package.json

Then restart DSH so the bundle patch composes at boot:

dsh --profile web restart          # or your normal restart path

Usage

  1. Open a conversation in the DSH web UI.
  2. Click the Web Search pill in the composer tool row to toggle it on.
  3. Ask a question — the agent calls web_search first and cites sources.
  4. Toggle it off to restore normal behavior.

The on/off state is remembered per session.

Files

PathPurpose
package.jsonPackage + dsh.bundle.patch + dsh.client declaration
index.jsHost plugin: RPC channel + system-prompt force section
lib/client.jsClient plugin: composer "Web Search" toggle
cordis.patch.ymlBundle patch mounting the host half
LICENSEMIT License
README.mdThis file

License

MIT