Rainpomelo/deepseek-harness-plugin-market ↗★ 0
@deepseek-ai/dsh-client-ui-plugin-center
Desktop-only searchable Plugin and Skill Bundle catalog
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Rainpomelo/deepseek-harness-plugin-market说明文档
阅读完整 README ↗安装与配置
方式一:在本地 Profile 中引入(推荐)
- 将本仓库 clone 到本地,例如
C:/plugins/deepseek-harness-plugin-market。 - 打开 Web profile 配置文件(
~/.dsh/profiles/web/package.json或C:\Users\\.dsh\profiles\web\package.json)。 - 在
dependencies与dsh.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"
]
}
}
}
- 进入 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"
}
}