← 返回列表
未验证
DSH 插件管理器:桌面 GUI + CLI,管理 dsh 的 profile、插件与一键启动 dsh web…
尚未跑自动兼容性验证,可查看页面内的依赖与入口分析。 · 最近上游提交 2026/8/15 · 已提供中文文档
DSH 插件管理器:桌面 GUI + CLI,管理 dsh 的 profile、插件与一键启动 dsh web (Tauri 2 + Node CLI)
综合分
27.9
GitHub 分
27.9
用户评分
—
★ Stars
2
周下载量
—
安装插件(需先安装 dsh CLI 引擎:npm install -g @deepseek-ai/dsh)
dsh plugin --profile web add MAXeaglet/dsh-plugin-manager该插件未发布到 npm,走 GitHub 源安装(pnpm 若拦截 prepare 脚本,按其提示在 pnpm-workspace.yaml 的 allowBuilds 中放行后重跑)
信任档位:仅索引本站尚未对其实装验证,仅收录元数据
- 是什么
- dsh 原生插件 · market
- 装得上吗
- 本站尚未做安装检查
- 安全吗
- 本站尚未对该插件做风险分级(暂未覆盖,不等同于无风险)
- 还在维护吗
- 更新放缓:最近一次提交在 41 天前
档位由下列信号合成:本站实装验证(真实安装,当前最高到 L4)· 验证所用 dsh 版本 · 静态安装检查 · 风险分级 · 仓库维护状态。下方各区块是它的证据明细。 验证判据与等级说明 →
数据截至 2026/9/20(元数据每日更新 · 实装验证按队列轮转,单条结论的验证时间见上方)
用户评分
还没有人投票,来当第一个
订阅周报,不错过优质插件更新
每周一封 · 高评分插件 + 新用户活动
README
由 DeepSeek 最新模型翻译生成dsh-plugin-manager 社区交流:LINUX DO · GitHub DSH 插件管理器:管理 dsh 的 profile / 插件,一键启动 dsh web。桌面 GUI(Tauri 2)+ CLI,跨平台(Windows / macOS / Linux)。 独立工具,不是 DSH 插件:直接读写 profile 文件(~/.dsh/profiles//),不挂载进 DSH。 安装 桌面 GUI(推荐):从 GitHub Releases 下载安装包(GitHub Actions 自动构建三平台): - Windows:.exe(NSIS)/ .msi - macOS:.dmg(Apple Silicon) - Linux:.deb / .rpm / .AppImage CLI(npm): npm i -g @maxeagle/dsh-plugin-manager dsh-plugin-manager --help # 或别名 dshpm --help CLI 也可启动本地 WebUI(浏览器版界面): dsh-plugin-manager gui # http://127.0.0.1:5177 功能 - 按 profile 管理插件(合并 dsh.profile.bundles + cordis.patch.yml) - 一键 启用 / 禁用(写入 cordis.patch.yml)、添加 / 移除 / 拖拽排序 bundles - 🧹 纯净模式:一键禁用所有第三方插件(仅保留 @deepseek-ai/ 官方) - ▶ 启动 dsh web:可配置端口(默认 3080),一键启动 / 停止 - 🔍 装插件:搜索 npm 并安装 - 编辑插件 config(JSON)、导出 / 导入 profile 视图 - 检查更新、搜索过滤、亮/暗主题、profile 切换、中英文 CLI dsh-plugin-manager profiles # 列出 profile dsh-plugin-manager list [profile] # 列出插件 dsh-plugin-manager enable|disable [profile] dsh-plugin-manager add [profile] # dsh plugin add dsh-plugin-manager add-bundle|remove-bundle [profile] dsh-plugin-manager reorder [profile] dsh-plugin-manager config [json] [profile] # 查看/设置插件 config dsh-plugin-manager status [--port N] # dsh web 状态(默认 3080) dsh-plugin-manager start [--port N] # 启动 dsh web dsh-plugin-manager stop # 停止 dsh web dsh-plugin-manager updates [profile] # 检查更新 dsh-plugin-manager export [profile] # 导出 JSON dsh-plugin-manager import [profile] # 导入 JSON dsh-plugin-manager gui # 启动 WebUI Develop npm install # tauri cli npx tauri dev # run the desktop app (Rust backend + web frontend) Cross-platform Works on Windows / macOS / Linux. Build per platform: macOS (requires Xcode Command Line Tools + rustup) rustup toolchain list # ensure a native toolchain is default npx tauri build # -> target/release/bundle/macos/*.app or .dmg Linux (requires webkit2gtk etc. system libs) npx tauri build On Windows prefer the MSVC toolchain when linking Tauri (cargo +stable-x86_64-pc-windows-msvc build) — the GNU/mingw linker can fail with export ordinal too large. Build npx tauri build # produces the desktop bundle (Windows / macOS / Linux) WebUI fallback 浏览器版界面(与 GUI 相同的前端,走 Node API): dsh-plugin-manager gui # http://127.0.0.1:5177 Backend (Tauri commands) | Command | Description | |---------|-------------| | list_profiles | profiles under ~/.dsh/profiles | | list_plugins | merged plugin list for a profile | | set_plugin_disabled | 切换补丁行的 disabled 标志 | | set_bundle | 添加/移除 dsh.profile.bundles 条目 | | set_bundle_order | 重新排序 bundle | | export_profile | 插件视图的 JSON 导出 | | install_plugin | dsh plugin add | | set_plugin_config | 设置插件行的 config | | purge_third_party | 纯模式:禁用所有非 @deepseek-ai/ 插件 | | start_dsh / stop_dsh | 启动(可选端口)/ 停止 dsh web | | dsh_status | dsh web 是否正在监听(感知端口) | | search_npm | 在 npm 中搜索 DSH 插件 | | check_updates | 将 bundle 版本与 npm 进行比较 | | import_profile / export_profile | 导入/导出配置文件视图 | 测试 node test/api.mjs # Node profiles logic (throwaway profile) cargo +stable-x86_64-pc-windows-msvc test # Rust commands: list/toggle/bundle/reorder/backup