DeepSeek Harness plugin

dsh-http

DSH plugin: structured HTTP request tool (http_request) built on the Node built-in fetch.

Jump to install

Source facts

Repository
ZhijiangTang/dsh-http
Latest update
Aug 16, 2026
Category
Tools & Capabilities
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/ZhijiangTang/dsh-http
Plugin: dsh-http
Author: ZhijiangTang

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-http

DSH 结构化 HTTP 请求工具插件。注册一个 http_request 工具,基于 Node 内置 fetch,把每次请求的结果规范化为一个结构化 JSON 对象,供模型与 Code Mode 程序化调用。零依赖、纯 ESM、无构建

简介

  • 工具名:http_request
  • 能力:任意 http/https 请求(GET/POST/PUT/PATCH/DELETE/HEAD)、自定义请求头、原始 body、JSON 自动序列化、Bearer/Basic 认证便捷参数、超时与响应体截断。
  • 行为:永不抛异常。网络错误、超时、参数错误都折叠为 { ok: false, error: { stage, message } };成功返回 { ok: true, status, statusText, durationMs, sizeBytes, ... }

安装

dsh plugin --profile <name> add file:./plugins/dsh-http
# 或发布后:
dsh plugin --profile <name> add dsh-http

参数

参数类型必填默认说明
urlstring目标 URL,仅允许 http/https
methodenumGETGET/POST/PUT/PATCH/DELETE/HEAD
headersobject额外请求头,key → string
bodystring原始请求体;与 json 互斥
jsonJSON任意 JSON 值,自动 JSON.stringify 并置 content-type: application/json;与 body 互斥
timeoutMsnumber10000请求超时(毫秒)
maxBodyCharsnumber4000响应体返回上限(字符数)
authobject认证便捷参数,见下

bodyjson 同时提供会返回 { ok: false, error: { stage: 'request', message: ... } }

输出字段

成功(ok: true):

字段类型说明
statusnumberHTTP 状态码
statusTextstring状态文本
durationMsnumber往返耗时(毫秒)
sizeBytesnumber响应体字节数
contentTypestring响应 content-type,存在时给出
headersobject仅存在的响应头:content-type/content-length/location/server
redirectTostring3xx 时标注 location 跳转目标
jsonobject响应体 JSON 解析成功时给出;受 maxBodyChars 截断则为 nulltruncated: true
textstring非 JSON 响应体的(截断后)文本
truncatedboolean响应体是否被截断

失败(ok: false):{ ok: false, error: { stage: 'request', message } }

认证用法

auth 参数在内存中生成 Authorization 头(不落盘、不进日志参数):

// Bearer
{ "auth": { "type": "bearer", "token": "<token>" } }
// Basic
{ "auth": { "type": "basic", "username": "user", "password": "pass" } }

token / username / password 缺失时返回 { ok: false, error: { stage: 'request', message: ... } }

安全与内网访问风险提示

> ⚠️ 本工具是本地个人工具不内置 SSRF 拦截。唯一的安全校验是 URL scheme 必须是 http/https。 > > 这意味着它可以访问 http://localhosthttp://127.0.0.1http://10.xhttp://192.168.xhttp://172.16–31.xhttp://169.254.x 等内网/回环地址。如果模型(或共享给模型的 Code Mode 程序)被诱导发起请求,可能扫描内网、访问本机服务或向云元数据端点(如 169.254.169.254)发起请求。 > > 不要在不可信的 prompt 或不可信的多租户环境中使用本插件;如确有内网隔离需求,请在插件上游叠加 tools/pre-execute 策略进行 URL 门禁。

License

MIT