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.

Skin Dark Gold — DSH Plugin for DeepSeek Harness
← Plugins

dsh-skin-dark-gold

Skin Dark Gold

Dark-gold particle skin for the DeepSeek Harness Web GUI: 暗金背景 + 漂浮金色粒子 + 暖白黄文字

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-skin-dark-gold@1.0.1
READMECompatibilityVersions

Compatibility and provenance

Skin Dark Gold is published as dsh-skin-dark-gold and currently resolves to version 1.0.1. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

1.0.1stable
8/16/2026

Related plugins

Loading related plugins…

Latest
1.0.1
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
24 kB
Files
6
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
39
Last push
8/16/2026
View source ↗Project homepage ↗
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 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.Pet@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-skin-dark-gold

暗金粒子皮肤插件 —— DeepSeek Harness Web GUI 的客户端插件。

  • 背景:暗金色渐变(无条件暗金主视觉,不再跟随系统深浅色)
  • 粒子:全屏漂浮的金色粒子 + 邻近连线,随鼠标轻微扰动
  • 文字:暖白黄色(#f9efcf / #e6cd8b),整体重映射 --dsw-alias-* 主题令牌并强制深色渲染

结构

dsh-skin-dark-gold/
├── package.json       # dsh.client(浏览器端) + dsh.bundle(一条命令安装)声明
├── cordis.patch.yml   # bundle patch:安装后自动注册 skin-dark-gold 加载器行
├── lib/
│   ├── index.js       # Node 端:向首页注入预加载底色,避免白屏闪烁
│   └── client.js      # 浏览器端:皮肤 CSS + 粒子引擎(window.__ModuleLoader__.load)
├── LICENSE
└── README.md

安装(社区用户 · 一条命令)

# 在 profile 内安装(以 web profile 为例),bundle 会自动注册插件行:
dsh plugin --profile web add dsh-skin-dark-gold
# 重启 dsh web(bundle patch 在启动时应用),打开页面即生效

注意:通过 bundle 安装后不要再手动往 cordis.patch.yml 加行,避免重复 id。

安装(本机手动方式 · 不依赖 npm)

  1. 将本目录复制到 profile 可解析的 node_modules: C:\Users\Administrator\.dsh\profiles\node_modules\dsh-skin-dark-gold\

  2. 在 C:\Users\Administrator\.dsh\profiles\web\cordis.patch.yml 追加:

    - insert:
        - id: skin-dark-gold
          name: dsh-skin-dark-gold
    
  3. profile 对 cordis.patch.yml 有热重载监听,改动后刷新浏览器页面即可生效(无需重启服务器)。

卸载

  • bundle 方式:dsh plugin --profile web remove dsh-skin-dark-gold,再重启服务器。
  • 手动方式:从 cordis.patch.yml 移除该行(热重载自动摘除),并删除 node_modules 中的目录。

发布到 npm(社区)

  1. 确认包名未被占用:npm view dsh-skin-dark-gold version(占用则改用 @你的用户名/dsh-skin-dark-gold)。
  2. cd dsh-skin-dark-gold && npm login && npm publish。
  3. 之后任何人(包括你自己换机器)都能用上面的「一条命令」安装。
  4. 迭代更新:改代码后 npm version patch && npm publish。

说明

  • 粒子画布为装饰层:pointer-events: none、不参与交互;尊重 prefers-reduced-motion;页面隐藏时暂停动画。
  • 皮肤无条件渲染暗金:插件会在 apply 时强制 data-ds-dark-theme 与深色 colorScheme,并用 MutationObserver 防止主题切换把页面带回浅色;卸载插件后恢复原主题行为。