zhu1090093659/dsh-web-ui--packages-dsh-web-ui-all ↗★ 3.6k
@linxin666/dsh-web-ui-all
DSH Web UI 全家桶聚合插件:一键安装全部功能插件(看板、Git 图谱、宠物、远程控制等)及内置皮肤全家桶。
AI 分析
核心用途是提供一键式全功能与皮肤资产的打包安装。适合希望省去繁琐配置、一次性获取完整 dsh-web-ui 增强体验的用户。
安装
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:zhu1090093659/dsh-web-ui#aeaaca8692376f442a1761e56273c574027ce96d&path:packages/dsh-web-ui-all说明文档
阅读完整 README ↗@linxin666/dsh-web-ui-all
English | 中文
The one-click aggregate package for the whole dsh web UI family: installing it brings every functional plugin (task-board / git-graph / pet / remote-web-ui / live-stats / web-ui-settings / skin-center / community-plugins) plus the skin family (dsh-skins, skin assets bundled inside). The compat bridge layer is folded into this package (src/client), so no separate compat npm package is needed.
What it is
- One install, everything on: its dependencies pull in all sub-plugin packages (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-client-ui-skin-center / dsh-client-ui-community-plugins / dsh-skins).
- Aggregation carrier:
cordis.patch.ymlaggregates theinsertlines of each sub-plugin, mounted through the dsh plugin profile mechanism.
Install
From npm (recommended)
dsh plugin --profile web add @linxin666/dsh-web-ui-all
From the repository (development)
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
Restart dsh web for the plugins to take effect.
Manual upgrade
When you upgrade by bumping the version in the profile package.json and running pnpm install, the top-level node_modules/@linxin666/* entries are not always refreshed: they can stay linked to the previous version's store directory until recreated. After upgrading, verify the links resolve to the new version (on Windows: cmd /c rmdir then cmd /c mklink /J ), then restart dsh web.
Known limitations
- Every sub-plugin activates together. For only a subset, install that sub-plugin package directly.
- Aggregate rows are namespaced
web-ui-*, so the bundle can coexist with a standalone install of the same plugin: the loader no longer rejects the duplicate id, the host half runs once (the second source is a no-op), and the browser half is deduped by package name. Keeping both sources has no benefit; prefer one. When the bundle is the source, profile patch config rows must use theweb-ui-*id (e.g.web-ui-remote-web-uifor the remote-web-uiautoTunnelrow); standalone installs keep the plugin's own id. - Dependencies on the
@deepseek-ai/*SDK are pinned; compatibility follows the repository's release cadence.