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.

Version Badge — DSH Plugin for DeepSeek Harness
← Plugins

dsh-version-badge

Version Badge

DSH 版本号徽标插件:侧边栏设置按钮上方显示 dsh 核心版本,带检查更新与一键部署。A DSH version badge plugin showing the dsh version above the sidebar settings button, with update check and one-click deploy.

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-version-badge@0.1.1
READMECompatibilityVersions

Compatibility and provenance

Version Badge is published as dsh-version-badge and currently resolves to version 0.1.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
npm
Registry updated
8/31/2026

Versions

0.1.1stable
8/31/2026

Related plugins

Loading related plugins…

Latest
0.1.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
38.4 kB
Files
7
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
0
Last push
8/31/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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

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 pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rClient 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

dsh-version-badge

DSH Web 界面侧边栏设置按钮上方的版本号徽标:常驻显示当前 dsh 版本(如 DSH v0.1.1-rc.2),点击展开查看所有核心包版本(CLI / base / web-app / web-frontend / agent),旁边带「检查更新」按钮,发现新版可一键部署。

特性

  • 🏷️ 常驻徽标:侧边栏设置按钮上方(非悬浮,作为界面布局的一部分),显示 DSH v<主版本>
  • 📋 点击展开:列出 @deepseek-ai 核心包各自的版本号,点击外部或 ✕ 关闭
  • 🔄 检查更新:查询 npm registry 对比最新版本(60 秒缓存),发现新版提示
  • 🚀 一键部署:升级全局 dsh CLI(@deepseek-ai/dsh@latest)+ 脱离当前进程自动重启
  • 🔒 安全模型:写操作仅接受本机同源请求(环回地址 + Origin 匹配 Host + 拒绝转发头)
  • ⚡ 零依赖:纯宿主插件 + 内联脚本注入(与 dsh-whale-widget 同机制),无客户端构建

安装

从 npm 安装(推荐):

dsh plugin --profile web add dsh-version-badge

或本地链接安装(开发用):

dsh plugin --profile web add link:D:\Code\dsh-version-badge

重启 dsh web 后刷新浏览器,设置按钮上方出现徽标。

更新

dsh plugin --profile web update dsh-version-badge

配置(可选)

默认允许一键部署。如要禁用部署/重启(例如该 dsh 进程由 supervisor 管理时),在 profile 的 cordis.patch.yml 里加:

- id: dsh-version-badge
  name: dsh-version-badge
  config:
    allowRestart: false

生效后「检查更新」面板会提示部署已被禁用。

卸载

dsh plugin --profile web remove dsh-version-badge

验证

curl http://127.0.0.1:3080/dsh-version/version.json
curl http://127.0.0.1:3080/dsh-version/check-update.json
curl http://127.0.0.1:3080/dsh-version/widget.js

部署状态(若有):

curl http://127.0.0.1:3080/dsh-version/deploy-status.json

安全说明

  • 只读端点(version.json / check-update.json / deploy-status.json):环回地址 + 无转发头;携带 Origin 时须与 Host 同源
  • 写端点(deploy-update.json POST):环回地址 + 无转发头 + Origin 必须存在且与 Host 匹配(拒绝 curl / 跨站诱导的无 Origin 请求)
  • 部署固定使用 npm dist-tag latest,忽略客户端传入的任何 tag/version
  • 部署结果写入 $DSH_HOME/dsh-update-deploy.result.txt,可经状态端点查询;npm 失败时当前版本保持不变

结构

dsh-version-badge/
├── package.json          # DSH bundle 插件元数据
├── README.md             # 本文件(中文)
├── README.en.md          # 英文版
├── CHANGELOG.md          # 变更日志
├── LICENSE               # MIT 许可证
├── cordis.patch.yml      # 插件挂载声明
├── .github/workflows/ci.yml  # 持续集成(语法/清单检查)
└── lib/
    └── index.js          # 宿主侧插件本体(含内联浏览器脚本)

License

MIT