DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-fullweb

Fullweb

无需密钥即可为 DeepSeek Harness 提供互联网访问:匿名 DDG/Bing web_search 和受保护的公共 HTTP(S) web_fetch,以及 Code + full web 代理预设。以 dsh 配置文件包的形式安装。

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

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

兼容性与来源证明

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

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

版本

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

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

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

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

认领这个 Plugin →
报告问题

README

dsh-fullweb

Key-free internet access for the DeepSeek Harness (run as npx @deepseek-ai/dsh web):

  • web_search — anonymous DuckDuckGo HTML search with a Bing fallback. No API key, no vendor billing endpoint.
  • web_fetch — public HTTP(S) retrieval with SSRF protection (loopback, private ranges, link-local, and file:// are blocked; every redirect hop is re-validated), size/char caps, and HTML→markdown handled by dsh itself.
  • "Code + full web" agent preset (code-fullweb) — the shipped code preset with web_fetch enabled. It installs itself into your preset root (~/.dsh/.agent-presets/) on first boot and stays in sync when you update this package (a version stamp marks managed copies).

Everything runs locally through Node's fetch. The deployment's own search provider (e.g. DeepSeek) stays registered but is never selected, so no web traffic touches a paid endpoint.

Requirements

  • Node 20+ with npx, and the harness available as npx @deepseek-ai/dsh (any launcher: web, TUI, headless).
  • pnpm on PATH (npm install -g pnpm) — plugin installs are forwarded to it.

Install

One command per profile you want web access in (usually just web for the browser UI):

# from npm:
npx @deepseek-ai/dsh plugin --profile web add dsh-fullweb

# or straight from git (no registry needed):
npx @deepseek-ai/dsh plugin --profile web add git+https://github.com/arialp/dsh-fullweb.git#main

What happens: pnpm installs the package into your profile, and dsh automatically appends it to the profile's bundle stack — its patch layer then selects the local providers on the host web row. On the next boot the plugin also copies the shipped preset into ~/.dsh/.agent-presets/code-fullweb/ (idempotent; a .dsh-fullweb-version stamp marks it as managed).

To stop the preset from installing at all while keeping the web tools, create an opt-out marker: touch ~/.dsh/.agent-presets/.dsh-fullweb-absent.

Enable the preset

The provider side is active for the whole profile immediately. The model-facing tools appear in sessions that run a preset with web_fetch enabled:

  • New chats: Settings → General → agent preset → pick "Code + full web", or make it the default there so every new chat gets both tools.

  • Or set it per user document (~/.dsh/settings.yaml):

    agent-presets:
      default: code-fullweb
    

Existing sessions keep the preset they were created with; a session that has not produced anything yet can switch presets from its controls.

Uninstall / update

npx @deepseek-ai/dsh plugin --profile web remove dsh-fullweb     # or <git spec> if installed from git
npx @deepseek-ai/dsh plugin --profile web update                 # bump to the newest published version

remove takes the providers and the profile layer out of that profile. The preset copy in ~/.dsh/.agent-presets/ is left behind (it is yours now); delete the directory if you want it gone — while the package is still installed, add .dsh-fullweb-absent first so boot does not restore it on the next start. If you had set code-fullweb as your default preset, clear that setting (or pick another) before removing.

Configuration

The provider entry (id: web-local) accepts optional config; override it with your own patch layer in ~/.dsh/profiles/web/cordis.patch.yml:

- id: web-local
  config:
    userAgent: "MyAgent/1.0"     # browser-like UA is the default (engines 403 the Node client)
    fetchTimeoutMs: 45000        # per-request backstop; the tool layer's own budget still applies
    maxRedirects: 5              # redirect hops allowed before WEB_LOCAL_TOO_MANY_REDIRECTS
    downloadCapBytes: 25000000   # stop downloading past this (result is flagged truncated)
    bodyCapChars: 100000         # decoded-body cap handed to the tool layer (truncated flag set)

All keys are optional; defaults suit normal web use.

Notes & limits

  • Search scrapes public HTML endpoints, so results are only as good as DuckDuckGo/Bing's anonymous tier and both engines can rate-limit heavy usage (the provider tries Bing automatically when DDG fails).
  • The preset is the code (Code Mode) preset: it expects a profile that composes a TypeScript runtime (dsh-web-app does). Install into other profiles only if they provide one.
  • The fetch guard validates the target before connecting and on each redirect, but DNS can still change between check and connect; treat it as a local-tool guardrail, not a security boundary.

License

MIT — see LICENSE.