DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-web-search-router

Web Search Router

为 DeepSeek Harness 提供按优先级排序的多提供商 web_search 路由器,并支持自动回退。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Kerberos255/dsh-web-search-router#d44ce926f6901b72277747f89476f9d25e17c5ca
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0stable
2026/8/21

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
web
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/8/21
查看源码 ↗
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 工具插件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 主题,并按星标数排序。Anysearch Dsh@anysearch/anysearch-dsh适用于 DeepSeek Harness 的 AnySearch 网络搜索和获取提供程序及高级工具

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