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 Router — DSH Plugin for DeepSeek Harness
← Plugins
W

dsh-web-search-router

Web Search Router

Priority-ordered multi-provider web_search router for DeepSeek Harness with automatic fallback.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Kerberos255/dsh-web-search-router#d44ce926f6901b72277747f89476f9d25e17c5ca
READMECompatibilityVersions

Compatibility and provenance

Web Search Router is published as dsh-web-search-router 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/21/2026

Versions

0.1.0stable
8/21/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
8/21/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 search-research.

Weknora@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.Anysearch Dsh@anysearch/anysearch-dshAnySearch web search and fetch providers plus advanced tools for DeepSeek HarnessResearch Reportdsh-research-reportVerifiable research-report engine for DeepSeek Harness: a content-addressed evidence ledger (claim 閳?snapshot binding, tamper-evident) plus versioned sealed reports where every claim carries a verification verdict and the manifest hash seals the directoryIndustry Researchdsh-industry-researchIndustry and company research domain pack for DeepSeek Harness: methodology skills, an industry-chain structure model (industry_map), public-source policy/news tracking over ctx.web (industry_track), company scan cards (company_scan), and auditable resear

README

dsh-web-search-router

简体中文

A priority-ordered multi-provider web_search router for DeepSeek Harness.

The plugin registers one DSH web search provider (web-search-router) and keeps the model-facing tool unchanged: agents still call DSH's built-in web_search. Providers are tried from top to bottom and the router stops on the first successful result.

Features

  • Reorder and enable/disable providers from the DSH Settings UI.
  • Automatic fallback on missing configuration, provider failures, timeouts, rate limits, quota/credit exhaustion, and (by default) empty results.
  • Short cooldowns for transient failures and configurable cooldowns for rate/quota failures.
  • Non-secret router settings are stored as readable JSON and apply without restarting DSH.
  • API keys stay in DSH credentials / launch environment and are never returned to the Settings UI.
  • Provider error messages are sanitized before being logged or returned through the router.

Providers

ProviderConfiguration
SearXNGBase URL in Settings (no API key required)
DeepSeek SearchDEEPSEEK_API_KEY by default; the credential ref/base URL/model can be overridden in plugin config
TavilyTAVILY_API_KEY
Brave SearchBRAVE_API_KEY
ExaEXA_API_KEY
FirecrawlFIRECRAWL_API_KEY
ParallelPARALLEL_API_KEY
DuckDuckGoNo key; best-effort HTML fallback

Unconfigured providers are skipped automatically.

Compatibility

Current target: DSH 0.1.0-rc.6 on Node.js 20+.

DeepSeek Harness is still a developer preview and may introduce compatibility-breaking changes. Pin the plugin revision you install and re-test when upgrading DSH.

Agent preset requirement

This plugin supplies the search backend; it does not add a second model-facing tool. Your agent preset must expose DSH's built-in web_search tool (for example, the standard preset). A minimal preset that omits web_search will not invoke this router.

Install

Local development:

dsh plugin --profile web add link:/absolute/path/to/dsh-web-search-router

From GitHub after the repository is published (pin a commit or release):

dsh plugin --profile web add github:Kerberos255/dsh-web-search-router#v0.1.0

The bundled patch selects web-search-router as DSH's search provider and inserts the plugin with generic defaults.

Settings

Open Settings → Plugins → Web Search Router to:

  • reorder providers;
  • enable/disable providers;
  • configure SearXNG;
  • write or clear provider API keys;
  • set per-provider timeout and cooldown;
  • choose whether an empty result falls through to the next provider.

Non-secret settings are stored at:

$DSH_HOME/plugins/web-search-router.json

Settings writes are accepted only from loopback access. API keys are written through DSH credentials; the UI only reads configured/unconfigured state.

Advanced DeepSeek Search configuration

The plugin defaults to DSH's official DeepSeek Search provider settings. A profile may override them:

- id: web-search-router
  config:
    deepseekBaseURL: https://api.deepseek.com/anthropic/v1
    deepseekModel: deepseek-v4-flash
    deepseekApiKeyEnv: DEEPSEEK_API_KEY

The Settings UI follows the configured deepseekApiKeyEnv credential reference rather than assuming a fixed key name.

Fallback behavior

For each enabled provider, in configured order:

  1. skip it if not configured or currently cooling down;
  2. run it with the configured timeout;
  3. return immediately on success;
  4. optionally continue on an empty result;
  5. on failure, classify the error and continue to the next provider.

Caller aborts are propagated immediately and never trigger fallback.

Development

npm test

Tests cover routing order/fallback/cooldowns, settings persistence and provider request/response adapters. Live tests used during local development are intentionally excluded from the public repository because they depend on a running local DSH instance and local credentials.

Security

  • Never commit API keys or .env files.
  • Credential values are resolved only on the host side.
  • The browser receives credential references and configured-state metadata, never stored key values.
  • Router errors redact URLs and key/token-like values before logging or surfacing failure details.

License

MIT