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.

Web Search Toggle — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

dsh-web-search-toggle

Web Search Toggle

Composer 'Web Search' toggle for the DeepSeek Harness Web UI. When on, the agent is forced (via a mandatory system-prompt directive) to call web_search before answering.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:SeerableOfficial/dsh-web-search-toggle#68167c1a8d8234f63a322cc13e93fd4ca2c3567f
READMECompatibilityVersions
Screenshot 2026-08-22 170659

Compatibility and provenance

Web Search Toggle is published as dsh-web-search-toggle 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
8/22/2026

Versions

0.1.0stable
8/22/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
★ 2
Weekly downloads
0
Last push
8/27/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 search-research.

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-pluginDeepSeek Harness tool plugin that exposes BrowserSkill browser automation (browser_* tools) to the modelWeknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Free Searchdsh-free-searchFree web search for DeepSeek Harness: 13 engines (Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl keyless; Parallel/Perplexity/SerpBase/DeepSeek with key) + time filtering + platform search + web_fetch, with web settings UI.Find Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

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