deepseek-harness
deepseek-ai
DeepSeek Harness: Everything is a Plugin.
PROJECT TOPICS
PROJECT README
Dual-source web content fetcher for DeepSeek Harness — CDP browser rendering + Tavily Extract, each as a standalone LLM tool.
English | 中文
DeepSeek Harness's ctx.web.registerSearchProvider throws WEB_PROVIDER_AMBIGUOUS when multiple providers are registered for the same capability — the model can't choose.
dsh-web-fetch takes a different path: each data source is a standalone DSH tool (web_fetch_cdp / web_fetch_tavily) with its own description + schema. The LLM picks the right tool based on context, not hard-coded rules.
| Tool | When the LLM should use it | What it does |
|---|---|---|
web_fetch_cdp |
JS-heavy pages, SPAs, sites requiring real rendering | Connects to a remote Chrome via CDP (cloakbrowser) and returns rendered content |
web_fetch_tavily |
Fast extraction of a known URL, no browser needed | Calls Tavily Extract API (URLs only — use web_search to find pages first) |
Both can be independently enabled/disabled — disabled tools are hidden from the LLM entirely.
Parameters (identical for both tools):
| Parameter | Required | Type | Meaning |
|---|---|---|---|
url |
yes | string | The page URL to fetch (scheme optional, e.g. https://example.com/page or example.com) |
maxResults |
no | number | Max results to return — Tavily only, default 5 |
Renamed in
v0.1.5-rc.1: this parameter used to be namedquery. That name collided with Tavily's own/extractrequest fieldquery(a search term), and it invited callers to pass a search topic where a URL was required. It is nowurl. The old name is deliberately not accepted as an alias — it fails loudly withinvalid arguments: missing required property "url", which is itself the migration hint.
ctx.tools.register / settings.installSection (dsh ≥ 0.1.2-alpha)@deepseek-ai/dsh-settings, @deepseek-ai/dsh-tools, @deepseek-ai/schemastery~/.dsh/settings.yaml hot-reload, no restart neededisConcurrencySafe: true, supports AbortSignaldsh-web-fetch/
├── cordis.patch.yml # bundle patch (install/uninstall)
├── package.json # dsh.client injection
├── src/
│ ├── index.js # Cordis apply() + 2 tool registrations
│ ├── types.js # FetchStrategy契约 (JSDoc)
│ ├── helpers.js # withTimeout / plainText / truncate
│ └── strategies/
│ ├── cdp.js # CDP: raw http + manual WS frames, no `ws` dep
│ └── tavily.js # Tavily Extract API
├── lib/client.js # Settings card (React + locale zh/en)
└── tests/
├── entry.test.mjs # host entry + manifest + engines table + key parity
├── host-integration.test.mjs # real Cordis + ToolRuntime + file settings provider
├── test-cdp-unit.mjs # 21 tests (helpers 8 + factory 5 + router 8)
├── test-cdp-frames.mjs # 5 tests (RFC6455 frame encode/decode)
├── test-tavily-unit.mjs # 13 tests (availability, parsing, error paths, malformed payloads)
└── client-smoke.mjs # 15 checks (browser half: render + interaction + read-only)
Strategy contract (src/types.js):
// New source = implement this, then register once in src/index.js
export function makeMyStrategy(config) {
return {
id: "my",
title: "My Fetcher",
available() { return Boolean(config.apiKey) }, // cheap check, no I/O
async fetch(req, signal) {
return { sources: [{ url, title, snippet, content, provider: "my" }], truncated: false }
},
}
}
# from source
git clone https://github.com/runfali/dsh-web-fetch.git && cd dsh-web-fetch
pnpm install # DSH loader resolves deps from plugin dir, not host
dsh plugin --profile web add ./dsh-web-fetch
# or after publishing:
# dsh plugin --profile web add dsh-web-fetch
# restart DSH
# systemd: sudo systemctl restart dsh
Why
pnpm install? Cordis plugin loader resolves imports from the plugin directory only. Without it you'll getERR_MODULE_NOT_FOUND: @deepseek-ai/schemastery.
Open Settings → Plugin Config → 通用 Web 内容获取(web-fetch)
CDP / Tavily checkboxes at the topCDP Endpoint (default http://10.200.0.5:9222), Timeout ms (60000), Extra wait after load ms (2000)Endpoint (https://api.tavily.com/extract), API Key (leave empty to disable), Timeout ms (30000)Saved to ~/.dsh/settings.yaml under web-fetch: and hot-reloaded.
Edit ~/.dsh/profiles/web/cordis.patch.yml:
- id: web-fetch
config:
cdpEnabled: true
cdpEndpoint: 'http://10.200.0.5:9222'
cdpTimeoutMs: 60000
cdpWaitMs: 2000
tavilyEnabled: false
tavilyEndpoint: 'https://api.tavily.com/extract'
tavilyApiKey: ''
tavilyTimeoutMs: 30000
Note: overriding
configreplaces the whole block — include all keys.
The LLM will see the tools automatically. Manual test:
User: 用 web_fetch_tavily 提取 https://example.com 的正文
User: 用 web_fetch_cdp 抓取 https://example.com 这个需要渲染的页面
Tool output shape:
{
"sources": [{ "url": "...", "title": "...", "snippet": "...", "content": "...", "provider": "cdp|tavily" }],
"truncated": false
}
src/strategies/my.js implementing FetchStrategysrc/index.js:import { makeMyStrategy } from "./strategies/my.js"
ctx.tools.register(makeToolDef("my", makeMyStrategy, "myEnabled", current))
Config + FIELD_VIEWS in lib/client.jsNo changes to router or core logic needed.
pnpm test # full suite
pnpm test:host # real-host contract tests only
All tests are offline (no real browser, no real Tavily call). tests/host-integration.test.mjs
drives the plugin on the real dsh objects (@deepseek-ai/cordis, dsh-tools,
dsh-system-prompt, dsh-settings-file) rather than hand-rolled stubs, and skips loudly
when those packages are unresolvable.
| Item | Value |
|---|---|
| DeepSeek Harness | >=0.1.2-alpha.3 <0.2.0 || >=0.1.5-alpha.1 <0.1.6 (verified on 0.1.2-rc.1 and 0.1.5-rc.1) |
| Node.js | >=22 |
| Runtime dependencies | none — the three deps come from the dsh host install |
Why the disjunction? npm semver satisfies a prerelease only from a range group that itself carries a prerelease with the same
[major, minor, patch]tuple. The previous single>=0.1.2-alpha.3 <0.2.0group therefore did not cover0.1.5-rc.1— "claims 0.1.5 support but fails its own claim". The same trap applies to every dependency range on a dsh package.tests/entry.test.mjspins this with a 10-row decision table, a counter-proof against the old range, and a line-by-line cross-check against the host's realsemver.satisfies.
tavilyApiKey is stored as plain text in ~/.dsh/settings.yaml (settings system, not credential vault). For sensitive envs, override via profile cordis.patch.yml.http + hand-rolled WebSocket frames (no ws dep). permessage-deflate is not used — compatible with cloakbrowser default (compression off).package.json under dsh.engines.dsh).PRs welcome! Please:
src/strategies/ with unit testszh/en locales in lib/client.js if adding settingsMIT © 2025 dsh-web-fetch
完整中文文档请见 README.zh-CN.md。
dsh-web-fetch 是 DeepSeek Harness 的通用网页内容获取插件,提供 双数据源、可插拔策略 能力。核心设计是规避 registerSearchProvider 的 WEB_PROVIDER_AMBIGUOUS 限制,将每个数据源注册为独立工具,由 LLM 自主决策。lib/client.js 内置完整中英文界面。
CLASSIFICATION EVIDENCE
系统优先读取 GitHub Topics,再与站内分类词典和词根规则比对。当前命中: 无有效分类标签。