DeepSeek Harness 插件

dsh-crw

fastCRW-backed web_search and web_fetch providers for DeepSeek Harness ctx.web.(英文原文)

跳到安装方式

来源信息

GitHub 仓库
us/dsh-crw
最近更新
2026年8月14日
分类
工具与能力
GitHub stars
3
载体类型
bundle
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/us/dsh-crw
插件名:dsh-crw
作者:us

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

dsh-crw

fastCRW-backed web_search and web_fetch for DeepSeek Harness.

The harness treats web access as a capability seam (ctx.web) with pluggable providers. This package registers two of them under the id crw, so the model keeps the exact same web_search / web_fetch tools and only the backend changes.

Why

The base composition ships web_search on, and web_fetch off. Its own config says why:

> Fetch stays disabled and no fetch provider is mounted: that provider defers > SSRF protection and the model would choose the request target.

That is a fair call. The in-box HTTP fetch provider runs fetch() in the harness process, and its README names the gap outright: no blocking of private, loopback, link-local or multicast destinations, no DNS-resolve-then-validate. A model that picks http://169.254.169.254/ gets your cloud metadata endpoint.

fastCRW resolves and validates the target server-side and refuses private ranges, so the harness process never opens a connection the model chose. That is what makes turning fetch on reasonable, and it is why fetch: true lives in this bundle rather than upstream.

The second reason is that plain HTTP is not how the open web reads any more:

URLin-box HTTP providerdsh-crw
producthunt.com403, a Cloudflare interstitial200, 27,559 chars of markdown
zillow.com403, "Access to this page has been denied"200, real page content
news.ycombinator.com200, raw HTML for the tool to convert200, markdown from the source

fastCRW escalates per page from plain HTTP through its browser tiers only when a page needs one, so the common case stays fast and the hard case still answers. Not every wall falls: an interactive Cloudflare challenge still wins sometimes.

Install

export CRW_API_KEY=...          # fastcrw.com, 500 free credits, no card
dsh plugin --profile default add dsh-crw
dsh --profile default

Get a key at fastcrw.com. The free tier is a one-time 500 credits and needs no card; one page is one credit.

To install straight from this repo instead, pin a commit and allow the build. A git install fetches sources, so pnpm has to run this package's prepare script to produce lib/, and pnpm 10+ requires you to say so explicitly:

# $DSH_HOME/profiles/<name>/pnpm-workspace.yaml
allowBuilds:
  dsh-crw: true
dsh plugin --profile default add github:us/dsh-crw#<sha>

That allowance runs this package's build on your machine at install time, so pin the commit rather than tracking the branch.

Verify the layer before booting:

dsh --profile default --dump-config    # shows a "# == dsh-crw" layer

What the bundle does

The shipped cordis.patch.yml applies three changes over @deepseek-ai/dsh-base:

  • points web.searchProvider and web.fetchProvider at crw
  • turns on tool-web's fetch and raises both timeouts, since a page behind a

JS or anti-bot wall escalates through browser tiers before it answers

  • mounts this plugin, reading $CRW_API_KEY

The base layer's own DeepSeek search provider stays mounted, so switching search back is one line in your profile's cordis.patch.yml:

- id: web
  config:
    searchProvider: deepseek-official
    fetchProvider: crw

Config

KeyDefaultMeaning
apiKey$CRW_API_KEYfastCRW API key. Required against the cloud endpoint; empty is fine when self-hosting.
baseURLhttps://fastcrw.com/apiEndpoint base; /v1/search and /v1/scrape are appended.
searchtrueRegister the search provider.
fetchtrueRegister the fetch provider.
answerfalseAsk fastCRW to synthesize an answer over the results, returned as the seam's content. Adds an LLM call per search.
maxBodyChars100000Cap on returned page characters, matching the in-box provider.
- id: crw
  name: dsh-crw
  config:
    apiKey: !!js process.env.CRW_API_KEY
    answer: false

Self-hosting

fastCRW is AGPL-3.0 and the engine is one binary, so the whole web layer can stay on your own machine:

crw serve
- id: crw
  name: dsh-crw
  config:
    baseURL: http://127.0.0.1:3002

A self-hosted endpoint takes no credential, so apiKey may be empty. The provider only insists on a key when it is pointed at the cloud endpoint.

Mapping notes

  • Search. POST /v1/search. Each result maps to a WebSearchSource: url,

title, and snippet from the result's snippet or, failing that, its description. A result without a URL is dropped rather than given an invented one. With answer on, the synthesized answer becomes the seam's content. The seam owns the final maxResults truncation.

  • Fetch. POST /v1/scrape with formats: ['markdown']. The body kind is

text, not html: fastCRW already returns markdown, and html would send it back through the tool's turndown pass to convert converted output.

  • Non-2xx targets. fastCRW reports a 404 target as success: false while

still returning what it got. The seam's contract is the other way round, so an envelope carrying a status code is always a result. A WebError is reserved for failing to retrieve the resource at all: a rejected URL, a bad key, an exhausted balance.

  • No renderer hint is sent. fastCRW's escalation ladder decides per page

whether plain HTTP is enough.

Development

bun install
bun test
bun run build

License

MIT.