shixiaosia/dsh-plugin-marketplace0

dsh-plugin-marketplace

Plugin marketplace tab in Web Plugins settings: browses GitHub repositories tagged with the dsh-plugin topic, shows their READMEs, and ships an optional built-in GitHub mirror proxy

AI Analysis

核心用途是在 Web 界面中直观浏览和了解 DSH 插件。适合希望在图形界面中发现、查看 GitHub 社区插件的 DSH 用户。

Package
dsh-plugin-marketplace
Version
0.1.0
License
MIT
Last updated
Aug 15, 2026

Install

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:shixiaosia/dsh-plugin-marketplace

② 直接从 GitHub 安装(首次使用会自动初始化配置文件)

dsh plugin --profile web add git+https://github.com/shixiaosia/dsh-plugin-marketplace.git


### 手动安装

不依赖 `dsh plugin` 命令,手工放置插件并编辑配置文件:

```sh

# 2. 编辑配置文件 ~/.dsh/profiles/web/package.json,改动两处:
{
  "dependencies": {
    // 新增:指向插件代码所在位置(link: 本地路径)
    "dsh-plugin-marketplace": "link:~/dsh-plugin-marketplace"
  },
  "dsh": {
    "profile": {
      "bundles": [
        "@deepseek-ai/dsh-base",
        "@deepseek-ai/dsh-web-app",
        // 新增:追加到层列表末尾
        "dsh-plugin-marketplace"
      ]
    }
  }
}

# 3. 在配置文件目录安装依赖(写入 node_modules 并建立链接)
cd ~/.dsh/profiles/web && pnpm install

# 2. 在配置文件目录同步依赖
cd ~/.dsh/profiles/web && pnpm install