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.

Cerrda Theme — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dsh-cerrda-theme

Cerrda Theme

Deployment-level static web plugin for DSH: cerrda dark re-theme of the DeepSeek Harness Web GUI (rose/purple oklch, Liquid Glass composer, Silk WebGL2 background, Sora/Fraunces/JetBrains Mono). Install with: dsh plugin --profile web add dsh-cerrda-theme

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Cerrda/dsh-cerrda-theme#4bdf404f7edac640ac32f4ae470c57ab53327634
READMECompatibilityVersions

Compatibility and provenance

Cerrda Theme is published as dsh-cerrda-theme and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.2.0stable
8/21/2026
0.1.1stable
8/17/2026
0.1.0stable
8/17/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
132
Last push
8/18/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

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 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.

README

dsh-cerrda-theme

DSH(DeepSeek Harness)Web GUI 的 cerrda 暗色主题——以部署级静态 web 插件发布, 免审批、进程重启后自动加载。

  • rose/purple oklch 配色体系、Sora / Fraunces / JetBrains Mono 字体
  • Liquid Glass 输入栏 / hero 面板 / 回到底部按钮(SVG 位移滤镜)
  • Silk WebGL2 动态背景、CardSpotlight、Ripple、ShimmerBorder
  • CSS 液态玻璃:侧边栏、详情列、会话头部、工具卡片、浮层

安装

在 DSH 环境里执行(需要 pnpm 在 PATH 上):

dsh plugin --profile web add dsh-cerrda-theme

然后重启 DSH 进程(web profile 的 HMR 已禁用,bundle 层只在启动时应用)。 重启后主题自动生效,无需任何审批。

本地未发布版本(本仓库根目录就是包,在仓库根执行):

dsh plugin --profile web add .

卸载

dsh plugin --profile web remove dsh-cerrda-theme

重启后即恢复默认外观。

验证

dsh --profile web --dump-config | grep dsh-cerrda-theme

浏览器 DevTools 网络面板应出现 /plugins/dsh-cerrda-theme/client.js。

工作原理

本包是一个 bundle 包(profile 层),与 @deepseek-ai/dsh-base、 @deepseek-ai/dsh-web-app 同一机制:

字段作用
dsh.bundle.patch: ./cordis.patch.ymldsh plugin add 后自动把本包追加进 dsh.profile.bundles 层栈,cordis.patch.yml 在启动时参与组合
dsh.client: { platform: "web" }声明浏览器 half,dsh-client-modules 把它收进 window.__DSH_BOOT__ 名录,服务 /plugins/dsh-cerrda-theme/client.js
main: lib/index.js空宿主 half(carrier 行)——让 loader 行激活,名录只收录已激活的行
exports["./client"]: lib/client.js浏览器 bundle:window.__ModuleLoader__.load({id, factory}) 注册,require("react") 取 React,CSS 以 data-plugin-css 风格 style 标签注入

开发

开发循环:改 src/ → npm run build → 重启 DSH(或硬刷新页面)。

  1. src/cerrda-theme-client.js —— 动态插件版原始 Client half 源码(单一事实来源, 所有样式/逻辑改动都写在这里)。
  2. npm run build(即 node scripts/vendor-number-flow.mjs && node scripts/build.mjs)—— scripts/vendor-number-flow.mjs 先把 src/vendor/package/dist/ 里 vendor 的 number-flow(number-flow.barvian.me,MIT) 内联成 src/vendor/number-flow.inline.js(window.__CERRDA_NUMBER_FLOW__), 再由 scripts/build.mjs 生成 lib/client.js(静态 bundle):包一层 window.__ModuleLoader__.load、require("react")、手动 CSS 注入、 末尾 return 改为 module.exports。脚本对关键标记做存在性校验, src 结构变了会直接报错而不是生成坏包。
  3. 生效:
    • 改的是 lib/ 或 src/:重启 npx @deepseek-ai/dsh web(推荐), 或只做硬刷新页面(Ctrl+Shift+R)——bundle 以 no-cache 从磁盘实时读取, 改 CSS/JS 内容通常不用重启即可看到;
    • 改了 package.json / cordis.patch.yml(结构变化):必须重启 DSH。
  4. 发布前:升 version,npm publish(prepare 钩子会自动先跑 npm run build, 保证发布内容与 src/ 一致)。

本地安装(link 到本仓库,改完无需重装):

dsh plugin --profile web add .
  • docs/ —— 设计(plan)、动态恢复说明(restore)、分享说明(share)。

发布

npm publish

License

MIT