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.

Duobaxian — DSH Plugin for DeepSeek Harness
← Plugins
D

dsh-duobaxian

Duobaxian

多巴仙 — DeepSeek Harness Web UI theme: Eight Immortals × dopamine-bright colors, 8 immortal variants, and light/dark modes. Immortal-aura dopamine for a good-mood interface.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:jindaxia2026/dsh-duobaxian#b62dae2e98b9704866bdb304e38cd112935f6edf
READMECompatibilityVersions

Compatibility and provenance

Duobaxian is published as dsh-duobaxian 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
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/20/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.

Remote 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 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 bundlePet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-duobaxian · 多巴仙

DeepSeek Harness Web UI 主题插件:八仙 × 多巴胺亮色。

为 dsh 社区用户解决"现有主题偏二次元/暗色、缺活泼有品牌感"的问题——通过名字 + 八仙形象 + 多巴胺亮色全套品牌化(口号「仙气多巴胺,界面好心情」),8 位仙家 8 套皮肤,点击即换。

dsh web (3080)
   │  webServer.tapIndex() 注入 <style data-plugin="duobaxian"> + 切换器
   ▼
多巴仙主题 (theme.css)
   └── 覆盖 --dsw-alias-* 设计令牌 + --dsw-static-* 静态令牌 + 8 仙变体

特性

  • 纯 CSS 换肤:只覆盖 dsh 官方设计令牌,不动布局与功能代码
  • 8 仙变体:吕洞宾·青绿 / 钟离权·明黄 / 何仙姑·樱粉 / 铁拐李·橙红 / 韩湘子·紫罗兰 / 曹国舅·鎏金 / 蓝采和·天蓝 / 张果老·草绿
  • 界面切换器:右下角 🎨 按钮,点击即换仙家,localStorage 记忆选择
  • 明暗双模式:跟随 dsh 主题自适应
  • 对比度保障:按钮/文字 WCAG AA ≥ 4.5:1 自动校验
  • 幂等注入:重复注入不叠加;enabled: false 可关闭而不卸载

前置条件

一个可运行的 DeepSeek Harness web profile(提供 webServer 服务)。

安装

方式 A:tarball

npm pack                                  # 生成 dsh-duobaxian-0.1.0.tgz
dsh plugin --profile <profile> add ./dsh-duobaxian-0.1.0.tgz

方式 B:本地目录

dsh plugin --profile <profile> add <本目录绝对路径>

验证配置层生效:

dsh --profile <profile> --dump-config

然后重启 dsh web,打开 http://127.0.0.1:3080 即可看到多巴仙主题与右下角切换器。

配置项

在 profile 的 cordis.patch.yml 覆盖:

- id: duobaxian-theme
  name: dsh-duobaxian
  config:
    enabled: true        # false 关闭主题而不卸载
    variant: lv          # 默认仙家:lv/zlq/hxg/tgl/hxz/cgj/lch/zgl
    showSwitcher: true   # false 隐藏右下角切换器

注意:patch 覆盖是整行替换 config,覆盖时需重述所有键。

架构

dsh-duobaxian/
├── package.json        # dsh.bundle 声明
├── cordis.patch.yml    # 插入插件行
├── index.js            # 插件入口:webServer.tapIndex 注入主题 + 切换器
├── theme.css           # 多巴仙主题:令牌覆盖 + 8 仙变体 + 明暗双模式
├── test/
│   ├── load.mjs        # 插件契约测试(导出结构/注入幂等/变体完备性/无敏感信息)
│   └── contrast.mjs    # 8 仙 × 明暗对比度校验(WCAG AA ≥ 4.5:1)
├── docs/               # 设计规划 + 使用手册(白话版)
└── README.md / LICENSE

工作原理

  1. 插件 inject: ['webServer'],依赖 dsh 内置 web 服务器服务。
  2. apply 读取 theme.css,通过 ctx.webServer.tapIndex() 在 </head> 前注入 <style data-plugin="duobaxian">。
  3. 样式在 body(亮色)与 body[data-ds-dark-theme](暗色)作用域内覆盖 --dsw-alias-* / --dsw-static-* 令牌。
  4. 切换器脚本注入 </body> 前:点击仙家 → 设置 body[data-baxian="xxx"] → 对应变体变量即时生效。
  5. 插件卸载时 disposer 自动移除注入,样式随之消失(幂等、可清理)。

开发与测试

npm install
npm test                # 契约测试 8 项 + 对比度校验 3 项
npm pack                # 打包

License

MIT