插件目录 / Developer / dsh-http-probe
dsh-http-probe
未验证 TwistedRiCen
功能简介
A bounded HTTP probe tool plugin for DeepSeek Harness.
未验证 — 尚未实测
A bounded HTTP probe tool plugin for DeepSeek Harness. 尚未验证——请自行安装测试。
「未验证」表示我们的自动化 CI 尚未安装过该插件。功能描述与版本兼容性均为作者声明。这不是安全审计,也不代表对第三方代码的背书。
README
dsh-http-probe
Third-party DeepSeek Harness plugin bundle providing the model-facing http_probe tool: a controlled HTTP GET against a deployment-owned probe target.
Features
- Controlled probe: only the URL path is model-controlled; host and port come from deployment config.
- Deployment-owned
baseUrl. - Bounded response body read: past the byte cap the read stops and the canonical result carries
truncated: true. - Cooperative timeout integration: the budget is declared on the tool and enforced by the host tool-call timeout policy.
- Structured canonical Tool result (
ok,status,url,contentType,body,truncated), with the model-facing text produced separately byoutput.render. - Redirects are not followed automatically (
redirect: 'manual').
Installation
Prebuilt GitHub Release tarball (the currently verified distribution path):
- Download
dsh-http-probe-0.1.0.tgzfrom the Releases page. - Install it with:
dsh plugin --profile <profile> add /path/to/dsh-http-probe-0.1.0.tgz
The package declares dsh.bundle, so dsh plugin add registers it as a profile bundle layer automatically. Remove it with:
dsh plugin --profile <profile> remove dsh-http-probe
Configuration
| Field | Type | Default | Meaning |
|---|---|---|---|
baseUrl |
string | http://127.0.0.1:3199 |
Probe target base URL (http/https, normalized with a trailing /). |
maxBodyBytes |
number | 8192 |
Maximum response body bytes read from the wire; past it the read stops and the canonical result carries truncated: true. |
timeoutMs |
number | 2000 |
Cooperative tool-call timeout budget, enforced by the host's @deepseek-ai/dsh-tool-call-timeout-policy. |
Config is validated by the plugin at load (no schema dependency): unknown fields and non-positive-integer limits fail loud.
Tool
- Name:
http_probe - Parameter:
pathonly — must start with a single/; no..segments, query, fragment, or control characters.
Example: Use the http_probe tool to GET /ok.
Security
- The model cannot choose a full URL: only
pathis exposed. baseUrlis deployment configuration.- Redirects are not followed automatically.
- This is a fixed-target probe, not a general-purpose arbitrary-URL fetcher.
Compatibility / Developer Preview
- Requires the host to provide
@deepseek-ai/[email protected]and@deepseek-ai/[email protected](hard peer dependencies). @deepseek-ai/[email protected]is not currently published on the npm registry, therefore:- Prebuilt tarball installation is verified and supported.
- Git source self-contained install is not verified and is currently blocked.
- Do not substitute a different
@deepseek-ai/dsh-toolsversion; keep the exact host version.
Development
- The public
tsconfig.jsoncarries no machine-specific paths and is used bypnpm build. - While
@deepseek-ai/[email protected]types are unavailable from the registry, local development uses a gitignoredtsconfig.local.jsonthat extends./tsconfig.jsonwith apathsmapping to a local rc.5 declaration build; runpnpm build:localto use it. tsconfig.local.jsonnever ships in the tarball and never enters Git.
安装
装一次目录插件,之后本站所有插件都能让 DeepSeek Harness 自动找、自动装:
dsh plugin add dshbase-catalog 然后对 agent 说「帮我装 dsh-http-probe」,它会在目录里找到并自动安装。文档:dshbase-catalog · 已验证场景包。
该插件是 GitHub 源码(未发 npm)——直接从仓库装:
Web profile:
dsh plugin --profile web add github:TwistedRiCen/dsh-http-probe Headless(CLI)profile:
dsh plugin --profile headless add github:TwistedRiCen/dsh-http-probe 实测报告
尚未 L3 验证——若已跑过,见下方失败备注。