DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Web Degoog — DeepSeek Harness 插件(DSH Plugin)
← Plugins

dsh-web-degoog

Web Degoog

由任意 degoog 实例支持的 DeepSeek Harness 网页搜索/网页获取提供商捆绑包

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-web-degoog@0.3.1
README兼容性版本

兼容性与来源证明

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

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/20

版本

0.3.1stable
2026/8/25
0.3.0stable
2026/8/25
0.2.2stable
2026/8/24
查看其余 1 个版本

README

dsh-web-degoog

DeepSeek Harness bundle that backs the harness's native web_search and web_fetch tools with any self-hosted degoog instance. The instance URL and API key are configuration - one published package serves every deployment.

What it provides

Provider idCapabilityBacking
degoogweb_searchYour degoog instance's native GET /api/search (merged, scored, deduplicated results across its engines). Optional bearer-token auth for protected instances.
degoogweb_fetchDirect retrieval from the harness machine under an SSRF guard (below). degoog core has no scrape endpoint, so this side never contacts your instance. HTML returns as kind: 'html'; dsh-tool-web converts it to Markdown.

Installing the bundle registers both providers and selects them. Set the instance URL in Settings. web_fetch is still off until you enable it in a preset you own — shipped Standard/PTC cannot be edited in place.

Install

dsh plugin --profile web add dsh-web-degoog

Then do these two things (search will not work without the first; fetch will not appear without the second):

  1. Settings → Plugins → degoog search & fetch — set Instance URL.
  2. Settings → Agent presets → Duplicate the preset you use → Open folder → in that copy’s agent.cordis.yml set tool-web fetch: true (see Enable web_fetch).

Because the package declares dsh.bundle.patch, the CLI reconciles the profile's bundle stack automatically: the bundle joins the layer list on add and leaves it on remove. The bundled patch inserts this plugin and sets web.searchProvider / web.fetchProvider to degoog.

@deepseek-ai/dsh-web has no settings namespace, so provider selection cannot live on the Plugins page. Selecting degoog in the bundle patch is the supported zero-file-edit path; a later user patch or $DSH_WEB_SEARCH_PROVIDER still wins if you need to switch back without uninstalling.

Configure the instance URL

There is no auto-generated settings form for third-party bundles (the Plugins page renders only cards a bundle explicitly ships), so pick one of these:

  1. Settings UI - Settings -> Plugins -> Plugin configuration, the degoog search & fetch card: instance URL, API-key credential name, search type, and language. Edits stage locally and commit through the revision-fenced settings write path; each field shows an override marker with one-click reset to its downstream default.

  2. Launch environment - zero files to edit. The harness reads DEGOOG_SERVER_URL at boot (the API key already rides DEGOOG_API_KEY):

    DEGOOG_SERVER_URL=https://degoog.example.com dsh --profile web
    
  3. Patch file - survives restarts, hot-reloads on the running web profile. In ~/.dsh/profiles/web/cordis.patch.yml:

    - id: web-search-degoog
      config:
        serverUrl: https://degoog.example.com
    

Value precedence, highest first:

  1. Settings-page card (the user settings document)
  2. Profile patch entry config (cordis.patch.yml)
  3. Launch environment (DEGOOG_SERVER_URL, DEGOOG_API_KEY)
  4. Built-in defaults (blank URL keeps search unconfigured)

Enable web_fetch (shipped presets cannot be edited)

On web profiles the host tool-web row is disabled; each session takes web_search / web_fetch from its agent preset. Shipped presets (Standard, PTC, Minimal, …) pin fetch: false and are read-only. A bundle cannot patch them, and they cannot register a settings namespace. Duplicate the preset you use and flip the flag:

  1. Settings -> Agent presets -> Duplicate Standard (or PTC, or any custom preset you already own).

  2. Open folder on the copy. In agent.cordis.yml, set:

    - id: tool-web
      name: '@deepseek-ai/dsh-tool-web'
      config:
        fetch: true
        searchTimeoutMs: 60000
    
  3. Pick that copy for new sessions (or make it the default). Sessions that already ran stay on the preset they started with.

You cannot turn web_fetch on inside shipped Standard/PTC themselves. Headless/TUI profiles that still mount host-plane tool-web can set the same fetch: true on the host tool-web row in the profile patch instead.

Configuration

FieldDefaultMeaning
serverUrl''Base URL of any degoog instance. Blank = search unconfigured.
apiKey-Literal instance API key. Prefer apiKeyEnv so no secret lands in config files.
apiKeyEnvDEGOOG_API_KEYCredential reference resolved per search from the credentials service or launching environment. Sent as Authorization: Bearer ... only when resolvable.
searchTypewebPassed as degoog's type parameter (web, images, ... depending on installed engines).
lang''Optional language code passed as degoog's lang parameter.
allowPrivateAddressesfalseFetch-side escape hatch for LAN deployments: when true, the guard dials private/loopback addresses so a homelab instance next to internal sites can scrape them. Default false matches degoog-mcp. Not shown in the UI.

Search errors use stable codes: DEGOOG_SERVER_URL_MISSING, WEB_PROVIDER_CREDENTIAL_MISSING (401/403 without a key), WEB_PROVIDER_ERROR, WEB_ABORTED.

Security notes

  • The fetch guard allows only http/https, rejects embedded credentials and over-long URLs, resolves DNS before dialing, rejects hosts resolving to loopback/private/link-local/CGNAT/multicast/NAT64/IPv4-compatible/6to4 addresses (including IP-literal URLs), pins each connection to a validated address while keeping TLS SNI and the Host header bound to the hostname, re-checks every redirect hop (max 5), caps decoded bodies at 2 MB (truncated flag set), refuses binary content types, applies a 30 s stall timeout per hop, and a 60 s overall backstop.
  • Enabling fetch: true means the model chooses request targets by design. That is exactly what DSH's shipped presets decline to do for you; flipping the flag in a preset you own is the explicit opt-in.
  • Search requests go to whatever instance you configure; send its API key only over HTTPS.

Uninstall / switch back

dsh plugin --profile web remove dsh-web-degoog

The bundle layer leaves the stack automatically, including the degoog provider selection, so DeepSeek official search is selectable again.

This package does not write agent presets or delete leftover files. If an older release created ~/.dsh/.agent-presets/degoog-standard, switch the default preset away from it (Settings -> Agent presets) and delete that folder. You can also drop the web-search-degoog: section from ~/.dsh/settings.yaml if you no longer want the saved instance URL.

License

MIT

收起版本
0.2.1stable
2026/8/24

相关插件

正在加载相关插件…

最新版
0.3.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
53.8 kB
文件数
9
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
38
最近提交
2026/8/25
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 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 主题,并按星标数排序。