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.

Hello Plugin — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
H

dsh-hello-plugin

Hello Plugin

A minimal DeepSeek Harness plugin that prints a startup greeting.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:LuwendiWuyi/dsh-hello-plugin#92210bbf098e3d1579541e8ea5695b25f387bf34
READMECompatibilityVersions

Compatibility and provenance

Hello Plugin is published as dsh-hello-plugin 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
9/7/2026

Versions

0.1.0stable
9/7/2026
Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/7/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

README

dsh-hello-plugin

最小的 DeepSeek Harness(DSH)插件示例。启用后在启动终端输出 [hello-plugin] Hello, DSH! 插件加载成功。。插件使用 JavaScript,无运行时依赖,无需编译。

安装

先完成 DeepSeek Harness 自身的依赖安装和构建。使用已安装的 DSH 运行:

dsh plugin --profile web add github:LuwendiWuyi/dsh-hello-plugin
dsh --profile web

使用 DeepSeek Harness 源码版时,在源码仓库根目录把 dsh 改成 pnpm dsh。安装或卸载之后重启对应 profile。

需要 Node.js 22.19+(22.x)或 24+,以及可用的 pnpm。

在源码版中验证

pnpm dsh plugin --profile hello-demo add github:LuwendiWuyi/dsh-hello-plugin
pnpm dsh --profile hello-demo --dump-config
pnpm dsh --profile hello-demo

--dump-config 的结果应包含 # == dsh-hello-plugin。启动后终端应出现上述问候,按 Ctrl+C 退出。hello-demo 是独立的验证 profile,不提供 Web 页面。

文件说明

  • index.js:apply() 是插件激活时调用的入口;修改问候文字后重启 profile。
  • package.json:main 指定入口,dsh.bundle.patch 声明自动启用的配置文件。
  • cordis.patch.yml:向 profile 插入插件;name 必须匹配包名。

输出写入 stderr,保留 stdout 给宿主应用。插件不增加模型工具或聊天界面元素。

打包与卸载

在插件目录运行 pnpm pack 可生成 .tgz 文件,然后使用:

dsh plugin --profile web add /absolute/path/to/dsh-hello-plugin-0.1.0.tgz
dsh plugin --profile web remove dsh-hello-plugin

GitHub: LuwendiWuyi/dsh-hello-plugin