DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

@steerloop/dsh-plugin

Plugin

DeepSeek Harness Cordis 插件,将 DSH 会话和审批连接到 Steerloop 移动端/网页控制平面。

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

npx -y @deepseek-ai/dsh plugin --profile web add @steerloop/dsh-plugin@0.1.0-alpha.1
README兼容性版本

兼容性与来源证明

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

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

版本

0.1.0-alpha.1prerelease
2026/8/22
查看其余 1 个版本收起版本
0.1.0-alpha.0prerelease
2026/8/22

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理Remote Web Ui@linxin666/dsh-remote-web-ui通过扫码配对访问 dsh Web GUI,共享一个官方界面:设置按钮旁的二维码可将手机和 PC 配对到同一个 Web GUI(手机采用竖屏触控适配层,PC 使用完整桌面界面),通过一次性令牌和 rPocketdsh-pocket把 DeepSeek Harness 装进你的口袋:一个包、一个设置页,手机扫码即同步访问电脑上的 DSH(局域网 + 公网,实时同屏)。DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。

README

@steerloop/dsh-plugin

@steerloop/dsh-plugin connects a DeepSeek Harness runtime to a Steerloop Relay. It is a thin Cordis plugin for adding Steerloop mobile/browser observation and remote approval handling to existing dsh profiles.

Status

This package is alpha quality for npm testing. It has been loaded by a real DeepSeek Harness headless profile and verified against a local Steerloop Relay, including paired-device signed approve and decline approval flows.

Requirements

  • DeepSeek Harness developer preview with Cordis patch overlays.
  • Node ^22.19.0 || >=24.0.0, matching the current Harness engine range.
  • A reachable Steerloop Relay.

What it does

  • connects to Steerloop Relay as a host agent;
  • emits Harness session, turn, assistant, tool, and approval events as Steerloop protocol events;
  • registers a short pairing code so a phone/browser can bind as a Steerloop device;
  • answers Harness approval/request prompts from signed Steerloop approval.resolve commands.

The plugin does not replace Harness UI or storage. It adds a remote control plane for long-running Harness jobs.

Install into a Harness profile

Install the current alpha from npm:

dsh plugin --profile headless add @steerloop/dsh-plugin@alpha

Before publication, install from a locally packed tarball for the closest npm release simulation:

npm pack -w @steerloop/dsh-plugin
dsh plugin --profile headless add ./steerloop-dsh-plugin-0.1.0-alpha.1.tgz

For active local development you can install this checkout directly:

dsh plugin --profile headless add "file:/path/to/steerloop/packages/dsh-plugin"

The package declares a DeepSeek Harness bundle, so dsh plugin add activates its cordis.patch.yml layer automatically. For one-off development without modifying the Harness profile, use the source-checkout.cordis.yml overlay in the Steerloop repository examples.

Cordis configuration

Add the plugin as a Harness patch overlay after the session and approval plugins:

- insert:
    - id: steerloop
      name: '@steerloop/dsh-plugin'
      config:
        relayUrl: "wss://relay.example.com/ws"
        token: "use-a-high-entropy-token"
        hostId: "workstation-dsh"
        hostName: "Workstation DeepSeek Harness"
        pairingCode: "PAIR-1234"
        requireRelayUrl: true
        requireToken: true

For local development with the default Steerloop stack:

- insert:
    - id: steerloop
      name: '@steerloop/dsh-plugin'
      config: {}

By default the plugin uses ws://127.0.0.1:8787/ws and steerloop-local-dev. It prints the pairing code after Relay authentication.

Configuration

FieldDefaultPurpose
relayUrlSTEERLOOP_RELAY_URL or ws://127.0.0.1:8787/wsSteerloop Relay WebSocket endpoint. Must use ws: or wss:.
tokenSTEERLOOP_TOKEN or steerloop-local-devRelay shared host token. Use a high-entropy secret remotely.
hostIdSTEERLOOP_HOST_ID or OS hostname plus -dshStable host identity shown in Steerloop.
hostNameSTEERLOOP_HOST_NAME or OS hostname plus DeepSeek HarnessDisplay name.
pairingCodeSTEERLOOP_PAIRING_CODE or random short codeBrowser/mobile pairing code, 6-32 chars using A-Z, 0-9, or -.
pairingTtlMs600000Pairing code lifetime.
approvalTimeoutMs300000How long a Harness approval waits for a remote decision.
heartbeatMs15000Relay heartbeat interval.
reconnectMinMs500Initial Relay reconnect backoff.
reconnectMaxMs30000Maximum Relay reconnect backoff.
approvalsenabledSet to false to observe only and delegate approval to another answerer.
prependApprovalAnswererenabledRegister before later approval answerers.
requireRelayUrldisabledThrow at startup when neither config nor STEERLOOP_RELAY_URL supplies a Relay URL.
requireTokendisabledThrow at startup when neither config nor STEERLOOP_TOKEN supplies a Relay token.

Package verification

From the Steerloop repository root:

npm run test -w @steerloop/dsh-plugin
npm pack --dry-run -w @steerloop/dsh-plugin
examples/deepseek-harness/smoke-source-checkout.sh
examples/deepseek-harness/smoke-tarball-install.sh
examples/deepseek-harness/smoke-approval-e2e.sh

Current limitations

  • session.prompt and session.interrupt are advertised only after a stable Harness service seam is selected for them.
  • Approval detail is derived from Harness approval/request plus the recent tool/call with the same callId when available.
  • DeepSeek Harness is a developer preview, so this plugin intentionally uses the small public seams session/event and approval/request.