精选
为什么选中它
待人工精选——以下事实来自源码仓库。
它能做什么
将DeepSeek Harness插件列表按来源分组展示——官方插件与自行安装插件,一目了然。
适合谁
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
风险提示
- 未发现明显风险信号;安装前仍建议查看源码。
将DeepSeek Harness插件列表按来源分组展示——官方插件与自行安装插件,一目了然。
待人工精选——以下事实来自源码仓库。
将DeepSeek Harness插件列表按来源分组展示——官方插件与自行安装插件,一目了然。
想用 DSH 获得这项能力的用户;装前建议先看源码和文档。
dsh plugin --profile web add github:tttwh/dsh-plugin-Audit 作者没有声明支持的平台。
/plugin-audit command: lists the currently loaded plugins grouped by official / self-installed, with user / official / keyword filtering; - Self-installed plugin toggles (two surfaces): - Sidebar footer Plugin Catalog entry (icon button; click to open a panel): an enable/disable button on every self-installed card; - Composer: /plugin-audit disable|enable <keyword>; - Both persist to the profile's cordis.patch.yml (kept across restarts, reversible) and call ctx.loader.update for live effect (HMR-independent); official/builtin plugins are locked; - Plugin Catalog panel (sidebar footer entry): grouped cards with a source badge and a search box (independent of the built-in "Plugin list" page); - Self-installed plugin updates (v0.6): the panel's top "Update" section checks the npm registry on open, shows the installed vs. latest version for every self-installed plugin, and runs pnpm update on click (corepack/npx fallback, live output); official/builtin plugins and this plugin itself are locked; ## Screenshot Sidebar footer Plugin Catalog entry (since v0.5) — click to open the panel: self-installed plugins grouped by origin, each card with an enable/disable toggle:
## Quick start Prerequisites: pnpm, the dsh CLI. sh # Install dsh plugin --profile web add https://github.com/tttwh/dsh-plugin-Audit/archive/refs/heads/main.tar.gz Restart dsh web, then: - Type /plugin-audit in the composer, or - Click the Plugin Catalog entry at the sidebar footer. ## Commands | Command | Purpose | |---|---| | /plugin-audit | Overview: self-installed one-by-one + official count | | /plugin-audit user | Self-installed only | | /plugin-audit official | Official only (full list) | | /plugin-audit <keyword> | Filter by package / entry keyword | | /plugin-audit disable <keyword> | Disable a matching self-installed plugin (persisted) | | /plugin-audit enable <keyword> | Enable a matching self-installed plugin (persisted) | | dsh plugin --profile web remove dsh-plugin-Audit | Uninstall | > How toggles persist: disable/enable writes a - id: <raw config id> + > disabled: true override into the profile's cordis.patch.yml (the user > config layer). dsh watches that file (watchUserPatches), so the change > applies live without a restart, survives restarts, and deleting the row > restores the default. > > Why the raw id (fixed in v0.4): loader entries carry a path-prefixed full > id (include:ssh), but the patch layer matches each config row's own id > field (ssh). Older versions wrote the prefixed id into the patch file, so > the row was skipped at boot ("patch: entry not found") and the toggle was > silently lost on restart. v0.4 writes the raw id, keeps the full id for > ctx.loader.update, and cleans up legacy include:<id> rows. ## Configuration Origin is derived from the package scope by default; edge cases (e.g. a third-party package published under @deepseek-ai/) are overridden via extraUserPackages. Override this plugin's row in the profile's cordis.patch.yml: yaml - id: plugin-audit config: extraUserPackages: - '@deepseek-ai/dsh-my-fork' # force-classify as self-installed ## Repository layout text dsh-plugin-Audit/ src/classify.ts origin-classification pure function (single source of truth) src/patch.ts cordis.patch.yml read/write (persist toggles) src/toggle.ts shared toggle core (persist + ctx.loader.update) src/contract.ts typert wire contract (pluginAudit/toggle) src/typert.ts host manifest registration src/runtime.ts PluginAuditRuntime (@Remote toggle; executeToggle unit-tested) src/index.ts host: /plugin-audit command + remote registration src/client/ Sidebar Plugin Catalog entry (React) + toggle buttons + client remote build.mjs esbuild build (host ESM + client bundle) cordis.patch.yml profile bundle patch (inserts this plugin) demo/ demo & verification scripts (real-profile output) ## Docs - DESIGN.md — design rationale and source evidence (why a new tab instead of modifying the official one; classification rules and edge cases) ## Related - deepseek-harness — DeepSeek Harness official repo (DSH itself) - omdsh-dev/community — community plugin submissions & collaboration hub ## License MIT · Copyright (c) 2025 tttwh不看 Star,人工一条条挑的。
把 DSH 的 settings.yaml 做成可视化看板:所有已注册的 settings namespace——包括官方界面从未覆盖的第三方插件配置——都渲染成可编辑表单。项目还早,但方向很对:告别手改 YAML。
给 DSH 的 DIY 轨迹可视化:把 agent 的计划与执行画成图,不用翻原始日志也能看清它在干嘛。项目还早,但补上了「一眼看懂 agent 在做什么」这个真实缺口。
从 Claude Code / Codex 把活派给 DSH:在宿主内拉起带分级预设的 DSH agent 会话,看原生子代理进度,还能借它的多模态桥给纯文本的 DSH 补上视觉和生图。编排型插件,把 DSH 变成其他编码 agent 的后端。