安装
在 DeepSeek Harness 里通过 dsh-market 安装
dsh plugin --profile web add dshmarket
或使用命令行
dsh plugin --profile web add github:DamonKoy/dsh-web-ui#path:/packages/dsh-web-ui-all
装任何插件都等于在你的机器上跑第三方代码,权限和你本人一样大——能读你的文件、用你的凭据、访问网络。请先审阅源码,并尽量锁定 commit(github:owner/repo#sha)。
README
English | 中文
DSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / live-stats / web-ui-settings),外加皮肤全家桶(dsh-skins,皮肤资产内置)。compat 桥接层已并入本包(src/client),因此无需独立的 compat npm 包。
是什么
- 一次安装、全部到位:其 dependencies 引入全部子插件包(dsh-client-ui-aionui-panel / dsh-client-ui-task-board / dsh-client-ui-git-graph / dsh-pet / dsh-remote-web-ui / dsh-live-stats / dsh-ssh / dsh-client-ui-web-ui-settings / dsh-skins)。
- 聚合载具:
cordis.patch.yml汇总各子插件的insert行,经 dsh 插件 profile 机制挂载。
安装
从 npm 安装(推荐)
dsh plugin --profile web add @linxin666/dsh-web-ui-all
从仓库安装(开发调试)
git clone https://github.com/zhu1090093659/dsh-web-ui.git
cd dsh-web-ui
pnpm install && pnpm -r build
node scripts/link-profile.mjs
dsh plugin --profile web add link:$(pwd)/packages/dsh-web-ui-all
安装后重启 dsh web 使插件生效。
已知限制
- 各子插件随本包一起激活;若只需要其中一部分,请直接安装对应子插件包。
- 不要与同名独立插件包(如 @linxin666/dsh-liangshen)同时安装;切换前先
dsh plugin remove移除旧的。 - 依赖的
@deepseek-ai/*SDK 版本已锁定,兼容性跟随本仓库的发版节奏。