shixiaosia/dsh-plugin-marketplace ↗★ 0
dsh-plugin-marketplace
Web 插件设置中的插件市场标签页:可浏览带有 dsh-plugin 标签的 GitHub 仓库,展示其 README,并提供可选的内置 GitHub 镜像代理。
AI 分析
核心用途是在 Web 界面中直观浏览和了解 DSH 插件。适合希望在图形界面中发现、查看 GitHub 社区插件的 DSH 用户。
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:shixiaosia/dsh-plugin-marketplace说明文档
阅读完整 README ↗② 直接从 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