DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-specline

Specline

用于 DeepSeek Harness 的 Specline Cordis 捆绑插件

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

npx -y @deepseek-ai/dsh plugin --profile web add dsh-specline@0.1.0
README兼容性版本

兼容性与来源证明

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

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/21

版本

0.1.0stable
2026/8/18
最新版
0.1.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
310.3 kB
文件数
59
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 4
周下载
22
最近提交
2026/8/18
查看源码 ↗项目主页 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题

README

dsh-specline

Specline 在 DeepSeek Harness(DSH)上的 Cordis bundle 插件(dsh-specline@0.x)。它是第五个运行时表面:让 DSH 看见斜杠、角色工具和会话武装。它不是第五个文件部署平台——不会写 .dsh/skills,也不会把 dsh 写进 specline init --platform。

卡点策略、Change、Gate 状态仍住在每个业务仓库的 specline/(尤其是 specline/config.yaml),不住在 ~/.dsh。

DSH 仍处于开发者预览。本包用 0.x 扛兼容风险,不绑 specline 2.x 的稳定承诺。

安装

机器上每个要用的 profile 做一次:

dsh plugin add dsh-specline
dsh plugin --profile web add dsh-specline
dsh plugin --profile headless add dsh-specline

然后重启(或重开)dsh web。脚本场景再把插件加到 headless profile。

每个业务仓库仍要有 Specline 项目运行时(config.yaml、changes/、bin/gate.sh):

cd <repo>
specline init --platform none
# 若该仓库还在用 Cursor / Claude / Codex / OpenCode,继续用已有平台列表:
# specline init --platform cursor
# specline init --platform cursor,claude

不是 specline init --platform dsh。dsh 不是合法平台名;传入会按未知平台报错。Web 斜杠若发现未 init,会询问是否在当前仓库 cwd 执行 specline init --platform none;Headless 只报错、不代跑 init。

Gate / init 需要本机上的 Specline CLI(npm i -g specline 或运行时 npx specline)。插件不把 CLI 打进 DSH 安装物。

禁止把 GitHub 根仓当插件源

不要执行:

dsh plugin add github:RayChou1221/specline

根仓 package.json 是 CLI 包 specline,没有 dsh.bundle。这条命令只会把 CLI 当普通依赖装进 profile,不会激活插件层,还可能破坏「CLI 零运行时第三方依赖」。

合法入口只有 npm 上的 dsh-specline(或下方内测路径 / tgz)。

内测(未上 npm)

在本仓根目录:

dsh plugin add ./dsh
# 或打包后:
# dsh plugin add ./dsh-specline-0.1.0.tgz

可加 --profile web / --profile headless。不要用 git 根仓库 URL 当插件安装源。

斜杠启动

不是「打开 DSH 就变成 Specline」。平时是普通助手;只有用户主动敲斜杠才武装当前这一次会话。模型不能 skill() 自己开流水线。

/specline-pipeline 做 JWT 登录
/specline-quickfix …
/specline-explore …
/specline-knowledge

还有 /specline-propose、/specline-apply-change、/specline-archive-change、/specline-visualize、/specline-diagram、/specline-init-web。未敲斜杠时看不到 pipeline Skill,也调不到角色工具。

已 init 的仓库:斜杠只武装当前会话(inject Skill、挂角色工具、写拦截、bind),不部署 .dsh/skills,不把 dsh 写入 platforms.yaml。第二天换会话时读项目里的绑定和 .pipeline-state.json,不在 ~/.dsh 另存一套进度。

策略家是项目 yaml,不是 ~/.dsh

改人工卡点:打开这个仓库的 specline/config.yaml,改 pipeline.human_gate_policy(full / minimal / none)。

不要改插件 Config,不要改 ~/.dsh。仓库 A 可以 full,仓库 B 可以 none。改完不必重启 dsh web(每次卡点重新读文件)。~/.dsh/settings.yaml 是模型密钥的地方,不放 Specline 策略。

peer 范围(预览期占位)

dsh / @deepseek-ai/* 的 peer 范围是预览期占位,不钉死精确版本。DSH API 仍可能破兼容;本包 0.x 会跟预览期走,不承诺长期锁定某一 rc。装插件前请对照当前 DSH 预览文档做一次冒烟,而不是把某次碰巧能跑的版本写进生产约束。

更新与卸载

dsh plugin --profile web update dsh-specline
dsh plugin --profile web remove dsh-specline

对方不必 fork 本仓,也不必把 Specline 源码放进业务项目。specline/ 仍由各仓库自己的 specline init 生成。