DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Deploy Master — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
D

dsh-deploy-master

Deploy Master

一个自动化发布本地项目的 DSH 插件:创建 GitHub 仓库并发布(git init/commit/push + topics + tag + release),将需求/进度同步到 Linear,发布到 npm,并在社区 Discussions 中发布公告——加入 deepseek-harness 社区和 dsh-plugin 主题

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:Olympianz/dsh-deploy-master#fd39e57fb57bd15133490c56381bbd04a049d2b3
README兼容性版本

说明

一个自动化发布本地项目的 DSH 插件:创建 GitHub 仓库并发布(git init/commit/push + topics + tag + release),将需求/进度同步到 Linear,发布到 npm,并在社区 Discussions 中发布公告——加入 deepseek-harness 社区和 dsh-plugin 主题。

兼容性与来源证明

Deploy Master 以 dsh-deploy-master 发布,当前版本为 0.1.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/30

版本

0.1.0stable
2026/8/30

相关插件

正在加载相关插件…

最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/8/30
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

dsh-deploy-master

一个 DeepSeek Harness (DSH) 插件:把「本地项目发布到 GitHub + 同步 Linear + 发布 npm 参与社区」这一整套流程自动化。它是一个 host 侧 tool 插件(像 dsh-master),通过注册工具 + 注入工作流提示词,让对话 agent 变成部署助手。

核心功能

  1. GitHub 自动发布 —— dsh_deploy_github:对本地项目执行 git init/commit/push、用 GitHub API 创建仓库、设置 topics、打 tag、发 release。
  2. 同步 Linear —— dsh_deploy_linear:创建需求 issue 或更新进度 issue(状态/优先级/描述)。
  3. 可配置 / 运行时询问 —— 所有 key 和仓库名既可在 cordis.yml 配置,也可在对话中由 agent 向用户询问后作为参数传入;缺失时工具会返回提示。
  4. 发布到 npm + 加入社区 —— dsh_deploy_npm 执行 npm publish,并默认带上 dsh-plugin / deepseek-harness / dsh topics,参与 deepseek-harness 社区与 dsh-plugin topic。
  5. 社区公告 —— dsh_deploy_announce 在社区仓库的 GitHub Discussions 里发布插件公告(默认 deepseek-harness 的 "Show Your Plugins!" 分类)。

安装

dsh plugin --profile web add dsh-deploy-master
# 或源码 checkout:pnpm dsh plugin --profile web add dsh-deploy-master

然后重启 dsh。

配置(cordis.yml 或 profile 的 patch 层)

- id: dsh-deploy-master
  config:
    githubToken: ghp_xxxx            # GitHub PAT(repo + workflow 权限)
    githubOwner: your-username       # token 所属用户名
    npmToken: npm_xxxx               # npm granular token(publish + bypass-2FA)
    linearApiKey: lin_api_xxxx       # Linear API key
    linearTeamKey: OLY               # Linear team key
    topics: [dsh-plugin, deepseek-harness, dsh]
    gitCommand: [git]
    discussionOwner: deepseek-ai           # 公告发布到的社区仓库 owner
    discussionRepo: deepseek-harness       # 公告发布到的社区仓库名
    discussionCategory: "Show Your Plugins!"   # 公告发布到的讨论分类
    injectWorkflowPrompt: true

所有字段都可留空——留空时 dsh_deploy_check 会报告缺失,工作流提示词会引导 agent 在对话里向用户索取,并以参数传入工具(每次调用可覆盖配置)。

注册的工具

工具作用
dsh_deploy_check查看配置状态(哪些 key 已填/缺失)
dsh_deploy_github本地项目 → GitHub(建仓/推送/topics/tag/release)
dsh_deploy_linear同步需求/进度到 Linear(创建/更新 issue)
dsh_deploy_npmnpm publish
dsh_deploy_announce在社区 Discussions 发布插件公告
dsh_deploy_help能力与工作流说明

使用

直接在对话里说,例如:

帮我把当前项目发布到 GitHub(仓库名 dsh-github-sidebar、公开),同步需求到 Linear,并发布到 npm。

agent 会先 dsh_deploy_check 看配置,缺什么(token/仓库名/可见性等)会先问你,确认后再依次执行 GitHub → Linear → npm。

安全说明

  • token 都通过 Config 或工具参数传递;dsh_deploy_npm 用 NODE_AUTH_TOKEN 注入,不写入磁盘。
  • dsh_deploy_github 推送时用 https://<owner>:<token>@github.com/... 一次性 URL,不把 token 写进 .git/config。
  • 建议使用具有最小权限的专用 token,并在完成后轮换。

项目结构

src/
├── index.ts     # 插件入口:工具注册 + 工作流提示词注入
├── config.ts    # Config schema + 配置状态检查
├── github.ts    # GitHub API + git CLI 封装
├── linear.ts    # Linear GraphQL 封装
├── npm.ts       # npm publish 封装
├── announce.ts  # GitHub Discussions 公告发布封装
└── prompts.ts   # 工作流提示词