Rainpomelo/deepseek-harness-plugin-market0

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

Desktop-only searchable Plugin and Skill Bundle catalog

包名
@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"
  }
}