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 So360 — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
W

dsh-web-search-so360

Web Search So360

Keyless web search provider for DeepSeek Harness backed by 360 Search (so.com). 免 API Key 的 DSH 联网搜索提供方。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Bronier/dsh-web-search-so360#fa7652b8a70b6eec0e883216c2f60a9b39b2cc7c
READMECompatibilityVersions

Compatibility and provenance

Web Search So360 is published as dsh-web-search-so360 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
any
Release source
github
Registry updated
8/27/2026

Versions

0.1.0stable
8/27/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
any
License
MIT
Source
github
GitHub
★ 0
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.

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-so360

中文 | English

给 DeepSeek Harness (DSH) 的免 API Key 联网搜索提供方,后端为 360 搜索(so.com)。

简介

DSH 官方的 web_search 走 DeepSeek 通道:需要 DEEPSEEK_API_KEY,且每次搜索都是一次完整的模型调用(有延迟、有 token 开销)。本插件把搜索通道替换为对 360 搜索结果页的纯检索抓取:

  • ✅ 不需要任何 API Key
  • ✅ 零模型调用开销(一次搜索 = 一次普通 HTTP 检索)
  • ✅ 自动解析 so.com 跳转链接(优先读取页面内嵌的 data-mdurl 真实地址)
  • ✅ 返回结构化结果:标题 + 链接 + 摘要
  • ✅ 零依赖(仅用 Node 原生 fetch)
  • ✅ 对中文查询友好(360 搜索国内可达性最好;Bing 会降级、百度有验证码、DuckDuckGo 国内超时)

安装

方式一:从本地路径

git clone https://github.com/Bronier/dsh-web-search-so360.git
dsh plugin --profile desktop add ./dsh-web-search-so360

相对路径按 DSH profile 目录解析时请使用绝对路径或 $PWD。

方式二:直接从 GitHub

dsh plugin --profile desktop add github:Bronier/dsh-web-search-so360

安装后重启 DSH 生效。

工作原理

插件向 DSH 的 web 能力接缝(ctx.web)注册一个 id 为 so360 的 WebSearchProvider,并通过 bundle 层 patch 将 searchProvider 重定向到它:

  1. 以桌面浏览器 UA 请求 https://www.so.com/s?q=<query>;
  2. 解析 SERP 中每个 <h3 class="res-title"> 锚点,标题去标签、就近提取 <p class="res-desc"> 作为摘要;
  3. 链接还原策略:优先读锚点上的 data-mdurl(360 内嵌的真实目标地址),缺失时回退抓取 /link?m=... 中转页并解析其 JS 跳转;
  4. 按 URL 去重后返回 { sources: [{url, title, snippet}], truncated: false }。

卸载即恢复官方通道,无需手动清理配置。

已知限制

  • 本质是公开结果页抓取:360 反爬策略变化可能导致解析失败(报 no results parsed 时通常就是布局变了);
  • 无翻页/深度检索能力,单次最多返回首页约 10 条;
  • 抓取行为请遵守目标网站的服务条款,本插件仅供个人本地研究使用。

致谢

  • 接口契约参考了官方 @deepseek-ai/dsh-web-search-deepseek 与社区 dsh-web-search-free、@yugasun/dsh-web-search 的实现。

许可证

MIT © 2026 Bronier


dsh-web-search-so360 (English)

A zero-API-key web search provider for DeepSeek Harness, backed by 360 Search (so.com) SERP scraping.

  • No API key, no model-turn cost — one search is one plain HTTP retrieval
  • Auto-resolves so.com redirect links (data-mdurl first, JS-jump fallback)
  • Structured results: title + url + snippet; dedup by URL
  • Zero dependencies, native fetch only

Install:

dsh plugin --profile desktop add github:Bronier/dsh-web-search-so360

Restart DSH afterwards. Uninstalling restores the official routing automatically.

Known limits: public-SERP scraping may break when the engine changes its layout; first page only (~10 results); personal local research use.

MIT © 2026 Bronier