Rainpomelo/deepseek-harness-plugin-market0

@deepseek-ai/dsh-client-ui-plugin-center

仅限桌面端的、可搜索的插件与技能 Bundle 目录市场。

AI 分析

核心用途是为桌面端用户提供直观的插件与技能包浏览、搜索目录。适合需要便捷发现和管理 DSH 扩展生态的桌面用户。

套件
@deepseek-ai/dsh-client-ui-plugin-center
版本
0.1.0-rc.5
授權
MIT
最近更新
2026年8月18日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Rainpomelo/deepseek-harness-plugin-market

安装与配置

方式一:在本地 Profile 中引入(推荐)

  1. 将本仓库 clone 到本地,例如 C:/plugins/deepseek-harness-plugin-market
  2. 打开 Web profile 配置文件(~/.dsh/profiles/web/package.jsonC:\Users\\.dsh\profiles\web\package.json)。
  3. dependenciesdsh.profile.bundles 中引入:
{
  "dependencies": {
    "@deepseek-ai/dsh-client-ui-plugin-center": "file:C:/plugins/deepseek-harness-plugin-market"
  },
  "dsh": {
    "profile": {
      "bundles": [
        "@deepseek-ai/dsh-base",
        "@deepseek-ai/dsh-web-app",
        "@deepseek-ai/dsh-client-ui-plugin-center"
      ]
    }
  }
}
  1. 进入 profile 目录执行安装并启动:
cd ~/.dsh/profiles/web
pnpm install
dsh --profile web

方式二:直接从 GitHub 引用

在 profile 的 package.json 中配置:

{
  "dependencies": {
    "@deepseek-ai/dsh-client-ui-plugin-center": "github:Rainpomelo/deepseek-harness-plugin-market"
  }
}