DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Ost Plugin — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

dshost-plugin

Ost Plugin

Official remote cloud relay plugin for DSHost (dshost.me): securely access your dsh Web UI from anywhere

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:NoelJudeNoel/dshost-plugin#bc57d6d42903e06e43cfae1e91e434b51f3f5493
READMECompatibilityVersions

Compatibility and provenance

Ost Plugin is published as dshost-plugin and currently resolves to version 0.1.12. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/20/2026

Versions

0.1.12stable
9/11/2026
0.1.11stable
9/11/2026
0.1.10stable
9/11/2026
Show 2 more versionsCollapse versions
0.1.9stable
9/9/2026
0.1.8stable
9/1/2026

Related plugins

Loading related plugins…

Latest
0.1.12
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
112
Last push
9/11/2026
View source ↗Project homepage ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in integrations-communication.

Acp App@deepseek-ai/dsh-acp-appThe dsh ACP profile bundle: automation-only JSON-RPC stdio and process lifecycle over dsh-baseRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rPocketdsh-pocketPut DeepSeek Harness in your pocket: one package, one settings page, and scan a QR code on your phone to access DSH on your computer in sync (LAN + public network, real-time screen mirroring).DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.

README

dshost-plugin

DSHost 官方 DSH 远程中继插件 — 在你的 dsh(DeepSeek Harness)实例上运行一个 Agent, 通过 wss 主动外连 DSHost 中继,让你在世界任何地方用浏览器安全访问自己的 dsh Web UI, 无需公网 IP、无需端口映射。

Official remote cloud relay plugin for DSHost (dshost.me): securely access your dsh Web UI from anywhere.

特性

  • 零公网 IP:Agent 主动外连中继(wss://dshost.me/agent),本机不开任何入站端口
  • 零破坏性多版本兼容:同时支持 dsh 0.0.1-rc.* / 0.1.0-rc.* / 0.1.1-* ~ 0.1.5-*
  • 安全:中继层 Host/Origin 重写遵守 dsh 信任栅栏;settings.describe 密钥脱敏下发; 生产环境强制 wss://
  • 随 dsh 启动:以 cordis 插件身份随 dsh web 加载,自动重连、休眠省流

快速开始

1. 申请 Token

在 dshost.me 注册/登录(支持 GitHub OAuth),创建实例获得 dsh_ 开头的接入 Token。

2. 一键安装(推荐)

# macOS / Linux
curl -fsSL https://dshost.me/install.sh | RELAY_HOST=dshost.me bash
# Windows (PowerShell)
$env:RELAY_HOST='dshost.me'; irm https://dshost.me/install.ps1 | iex

脚本会安装 pnpm、通过 dsh plugin add dshost-plugin 把插件装入当前 profile, 并写入 profile 的 cordis.patch.yml。

3. 手动安装

# 装入 dsh profile(等价于在 profile 目录执行 pnpm add dshost-plugin)
dsh plugin add dshost-plugin

然后在 profile 的 cordis.patch.yml 里声明插件(新增行必须放在 - insert: 块内):

- insert:
    - id: dshost-agent
      name: 'dshost-plugin'
      config:
        token: dsh_your_token_here
        relayUrl: wss://dshost.me/agent
        autoConnect: true

4. 重启 dsh

sudo systemctl restart dsh   # 或你的启动方式

启动后控制台(dshost.me)应看到实例上线。

配置项

字段必填说明
token✔中继接入 Token(dsh_ 前缀,在 dshost.me 申请)
relayUrl✔中继 WebSocket 地址,生产必须 wss://
autoConnect✕默认 true;启动即连接
dshHost / dshPort✕本机 dsh web 地址,默认 127.0.0.1:3080

兼容性

dsh 版本支持
0.1.5-*(已实证 0.1.5-rc.1) / 0.1.4-* / 0.1.3-*✔
0.1.2-*(含 --trusted-host、BrowserAuth、remote.mux)✔
0.1.1-* / 0.1.0-rc.7+(insert 块 patch 格式)✔
0.1.0-rc.2 ~ rc.6 / 0.0.1-rc.*✔(旧包名 @noeljude/dsh-remote-plugin 亦可解析)

仓库结构

├── package.json         # npm 包定义(dsh.bundle.patch 指向 cordis.patch.yml)
├── cordis.patch.yml     # bundle patch(有意为空:插件入口由用户 profile 声明)
├── lib/index.js         # 插件入口(cordis apply)
├── agent/core.js        # Agent 引擎(与独立 agent 共享的唯一源)
├── common/protocol.js   # 中继协议
└── scripts/prepack.mjs  # npm pack 时物化 lib/core.js + lib/protocol.js

prepack.mjs 是布局自适应的:在本 monorepo(源码位于 src/agent、src/common)与 本仓库独立检出(agent/、common/ 位于包根)下均可运行,支持 npm i github:NoelJudeNoel/dshost-plugin 的 git 直装(经 prepare 构建)。

发布流程

npm 与 GitHub 同步发布:改动主仓源码 → bump version → npm publish → bash scripts/publish-github.sh(同步 GitHub、打 vX.Y.Z tag、刷新 topics)。 完整标准规则见 docs/github-release-sop.md。

License

MIT © 2026 dsh-remote contributors