DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Plugin Minimal Web — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-plugin-minimal-web

Plugin Minimal Web

DSH plugin dsh-plugin-minimal-web

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:JackFGreen/dsh-plugin-minimal-web#e71f732ca696c93f29e513613f226e720adb9fc0
READMECompatibilityVersions

Description

DSH plugin dsh-plugin-minimal-web

Compatibility and provenance

Plugin Minimal Web is published as dsh-plugin-minimal-web and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/20/2026

Versions

0.1.0stable
8/20/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
Not declared
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/25/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsClient Ui Task Board@linxin666/dsh-client-ui-task-boardHost-authoritative task board for the DSH Web GUI with real session execution, Host cron scheduling, and optional cross-platform idle-sleep protection; mounted without DSH source changes.Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundle

README

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-base 和 dsh-plugin-minimal-web,不需要手写Profile配置。

3. 启动

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

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

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

minimal web: http://127.0.0.1:3080