← 返回列表
未验证
明日方舟莱茵生命美术风格的deepseek harness皮肤主题
尚未跑自动兼容性验证,可查看页面内的依赖与入口分析。 · 最近上游提交 2026/8/24 · 已提供中文文档
综合分
27.8
GitHub 分
27.8
用户评分
—
★ Stars
1
周下载量
—
兼容 / 相关生态插件(非 dsh 原生,请按其对应运行时安装)
git clone https://github.com/mjn96/dsh-rhine-theme.git信任档位:仅索引本站尚未对其实装验证,仅收录元数据
- 是什么
- 生态应用(桌面端 / Web 外壳,不以 dsh plugin add 安装)
- 装得上吗
- 本站尚未做安装检查
- 安全吗
- 本站尚未对该插件做风险分级(暂未覆盖,不等同于无风险)
- 还在维护吗
- 更新放缓:最近一次提交在 32 天前
档位由下列信号合成:本站实装验证(真实安装,当前最高到 L4)· 验证所用 dsh 版本 · 静态安装检查 · 风险分级 · 仓库维护状态。下方各区块是它的证据明细。 验证判据与等级说明 →
数据截至 2026/9/23(元数据每日更新 · 实装验证按队列轮转,单条结论的验证时间见上方)
依赖的 DSH / Cordis 模块
@deepseek-ai/cordis用户评分
还没有人投票,来当第一个
订阅周报,不错过优质插件更新
每周一封 · 高评分插件 + 新用户活动
README
由 DeepSeek 最新模型翻译生成dsh-rhine-theme
RHINE LAB(莱茵生命)分析工作台主题,面向 DeepSeek Harness Web 客户端。
以暖冷灰实验室表面、无穷符号品牌标识与信号橙主操作,重构 Harness 的侧栏、会话流与详情栏视觉语言。浅色单主题,随 profile 启动自动加载并保持生效。
安装
从 npm 安装(推荐)
dsh plugin --profile web add dsh-rhine-theme
从 GitHub 安装
dsh plugin --profile web add github:mjn96/dsh-rhine-theme
从本地路径安装
dsh plugin --profile web add file:/绝对路径/dsh-rhine-theme
或手动在 profile 的 package.json 中添加依赖,并把 dsh-rhine-theme 追加进 dsh.profile.bundles:
"dependencies": {
"dsh-rhine-theme": "file:/绝对路径/dsh-rhine-theme"
},
"dsh": {
"profile": {
"bundles": [
"...",
"dsh-rhine-theme"
]
}
}
安装完成后重启 profile:
重启 web profile(按你的实际启动方式)
目录结构
dsh-rhine-theme/
├── package.json # dsh.bundle + dsh.client 声明
├── cordis.patch.yml # bundle 层挂载行
├── lib/
│ ├── index.js # 空主机端
│ └── client.js # 浏览器端主题实现
└── README.md
工作原理
- dsh.bundle.patch 指向 cordis.patch.yml,声明插件行,使插件进入 profile 的 bundle 层。
- dsh.client 声明浏览器端依赖与 ./client 入口。
- 客户端注册 rhine-lab-light 主题、挂载样式表与品牌槽,并监听 theme/change 保持主题生效。
注意事项
- 三个品牌槽(sidebar.brand.mark、sidebar.brand.name、conversation.hero.brand.mark)使用 priority: -1 覆盖官方品牌,数值最小者渲染。
- 若修改 lib/client.js 后 profile 里的 node_modules 副本未更新,需重新执行 dsh plugin add 或手动同步文件。