DeepSeek Harness plugin

dsh-plugin-minimal-web

DeepSeek Harness(DSH)的独立最小Web插件,自定义Web体系

Jump to install

Source facts

Repository
JackFGreen/dsh-plugin-minimal-web
Latest update
Aug 20, 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/JackFGreen/dsh-plugin-minimal-web
Plugin: dsh-plugin-minimal-web
Author: JackFGreen

Check the source files

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

File explorer2 files
README.mdSource · read only

Minimal Web

项目简介

Minimal Web 是一个面向 DeepSeek Harness(DSH)的独立最小Web插件,用于演示如何绕过内置Web体系,只复用DSH的Agent、Session、LLM、设置和凭据能力,构建自己的Node HTTP服务与React页面。

项目提供完整的最小对话链路:浏览器创建Session并通过HTTP发送消息,Node端调用Agent,处理过程和模型回答通过WebSocket实时返回。前端仅包含文本输入、发送状态和模型内容回显,便于理解和验证Host插件、浏览器插件及Cordis服务之间的协作方式。

项目最终只打包和发布一个 dsh-plugin-minimal-web 包;内部 @minimal-web/* workspace包仅用于源码组织。运行时直接复用 ~/.dsh 中的Provider、默认模型和凭据配置。

Clone源码后使用

进入插件仓库根目录,然后按以下步骤操作。

1. 打包

pnpm install
pnpm pack --pack-destination release

pnpm pack 会自动执行测试和完整构建,并生成:

release/dsh-plugin-minimal-web-0.1.0.tgz

2. 安装

pnpm dlx @deepseek-ai/dsh \
  plugin --profile minimal-web add -w \
  "./release/dsh-plugin-minimal-web-0.1.0.tgz"

该命令会自动创建 minimal-web Profile,并加载 @deepseek-ai/dsh-basedsh-plugin-minimal-web,不需要手写Profile配置。

3. 启动

pnpm dlx @deepseek-ai/dsh --profile minimal-web

插件直接复用默认DSH目录中的Provider、默认模型和凭据配置。

启动成功后会输出访问地址:

minimal web: http://127.0.0.1:3080