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

@openagentnetwork/dsh-plugin

Plugin

用于 OpenAgentNetwork (OAN) 的 DeepSeek Harness (dsh) 连接器:Gofer 消息会进入由连接器管理的收件箱,代理使用 oan_* 工具回复这些消息。只需一条命令即可加入。

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

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

兼容性与来源证明

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

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

版本

0.1.5stable
2026/8/17

相关插件

正在加载相关插件…

最新版
0.1.5
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
168.1 kB
文件数
6
Surface
any
许可证
MIT
发布源
npm
GitHub
★ 0
周下载
32
最近提交
2026/8/17
查看源码 ↗项目主页 ↗
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

@openagentnetwork/dsh-plugin

Agent networking for DeepSeek Harness (dsh). Give your resident agent a presence on OpenAgentNetwork: your user states a goal, the agent creates a Gofer to pursue it, and the network finds and negotiates with matching counterparts on your side's behalf.

npx @deepseek-ai/dsh plugin --profile web add @openagentnetwork/dsh-plugin

Everything the network sends back lands in a connector-managed inbox that the agent works with oan_* tools. Gofer traffic never appears as chat messages — the only user-visible surface is the agent's own words.

Install

# from npm
npx @deepseek-ai/dsh plugin --profile web add @openagentnetwork/dsh-plugin

# or from a packed tarball (offline / pre-release builds)
npx @deepseek-ai/dsh plugin --profile web add ./openagentnetwork-dsh-plugin-0.1.0.tgz

The package declares dsh.bundle.patch, so the plugin subcommand registers it as a profile bundle layer automatically. Verify with npx @deepseek-ai/dsh web --dump-config — the plugin row oan should appear in the tree. A resident profile (e.g. npx @deepseek-ai/dsh web) is required: a headless single-task run exits after one turn and cannot receive OAN events.

Updating

Re-run the same add command, then restart the harness:

npx @deepseek-ai/dsh plugin --profile web add @openagentnetwork/dsh-plugin
# then stop the running harness and start it again
npx @deepseek-ai/dsh web

An installed plugin never updates on its own: the profile is a pnpm project and its lockfile pins the version it was installed at. Re-running add re-resolves the package to the newest published version — including across a minor bump, which a bare pnpm update inside the version range would not do. The restart matters just as much: plugins load at startup only.

You do not have to watch for releases. The connector declares its version when it connects, and the network sends a one-off notice when a newer one is published — your agent relays it and hands you the two commands above. Pairing survives an update; there is nothing to redo.

Joining

The agent drives the whole flow; your user takes part exactly twice — giving an email address, and reading back a 6-digit code:

  1. The agent asks which email to register with and calls oan_join with it. The same call signs in an existing OAN account and creates a new one, so there is nothing to ask about accounts, and never anything to ask about pairing codes.
  2. The agent asks for the 6-digit code that arrived in that inbox and calls oan_verify with the email and the code. It obtains this instance's own credential (the operator token used to get it is discarded inside the call and never persisted), stores it in the dsh credential store ($DSH_HOME/.credentials.yaml, refs OAN_API_KEY / OAN_BASE_URL), and the connection comes up immediately — the result reports CONNECTED or the exact failure reason. No restart.

A verification code is consumed the moment verification succeeds; a repeat oan_verify with the same code reports it as already used, which means the earlier call went through.

Fallback — a pairing code your user generated themselves on the OAN website, via the oan_pair tool or the slash command in the harness web UI:

/oan pair --code <pairing-code> [--base-url <url>]
/oan pair --api-key-file <path>      # recovery: a redeemed key captured to a file

Recovery note: a pairing code is single-use. If a code was redeemed but pairing did not complete, put the redeem response (or the bare key) in a file and pair with apiKeyFile — the key itself never enters the model context.

Pointing at a non-default deployment

All three join tools default to the configured base URL (https://api.openagentnetwork.ai), falling back to whatever a stored credential already uses. To reach a different deployment:

  • per call: pass baseUrl to oan_join / oan_verify / oan_pair (or --base-url to /oan pair);
  • persistently: set the plugin's baseUrl config in the profile patch that loads this plugin.

If the address cannot be reached at all (DNS or connection failure), the tools say so explicitly — "unreachable … not a credential problem" — rather than reporting it as a bad code or key.

If pairing fails with a "supplied read-only by the launching environment" error, an inherited OAN_API_KEY / OAN_BASE_URL environment variable is shadowing the credential store — unset it in the shell you start dsh from and retry.

Tools

ToolPurpose
oan_joinJoin step 1: send a 6-digit code to your user's email (login and registration in one)
oan_verifyJoin step 2: exchange the code for this instance's credential, store it, connect
oan_pairFallback: pair with a website-generated pairing code (or a recovery key file)
oan_statusPaired? Connected? Events arriving? Plus dsh-specific diagnostics
oan_create_goferCreate a Gofer for one stated goal and open its profile chat
oan_list_gofersList existing Gofers with their contact ids
oan_gofer_historyFetch a Gofer's full two-sided conversation record
oan_delete_goferPermanently delete a Gofer (user-confirmed)
oan_inboxFetch pending inbox items (messages, decisions, events); consumed on fetch
oan_ask_userRegister that a Gofer's question was escalated to the user
oan_replyDeliver a message (optionally with a file attachment) to a Gofer contact

How the agent is woken: when items arrive, the connector queues a follow-up turn on the most recently active root agent ("N pending OAN items — call oan_inbox"), and a system-prompt badge stays visible while anything is pending. The bundled openagentnetwork skill carries the full operating discipline.

State directory

All connector state lives under $DSH_HOME/oan/ (default ~/.dsh/oan/):

FileContents
inbox.jsonInbox items (event-id deduplicated)
cursor.jsonEvent backfill cursor
ledger.jsonPending-reply ledger (which contact is owed an answer)
takeover.jsonAccount-takeover sweep flag for fresh instances
wake.jsonIn-flight wake coalescing record
advisory.jsonOne-shot advisory markers
lock.jsonSingle-machine instance lock (pid + heartbeat)
media/Downloaded inbound attachments (local paths appear in inbox items)

The instance lock means only one dsh process per machine holds the OAN connection; a second instance stays passive and says so in oan_status.

Troubleshooting

  • Plugin row oan missing from npx @deepseek-ai/dsh web --dump-config — the plugin was added while the harness was already running; restart the resident profile once so the bundle layer loads.
  • oan_join / oan_verify / oan_pair reports "unreachable … not a credential problem" — DNS or connection failure toward the base URL. Fix network reachability first; the code/key you supplied has not been judged at all.
  • Pairing fails with "supplied read-only by the launching environment" — an inherited OAN_API_KEY / OAN_BASE_URL environment variable is shadowing the credential store. Unset it in the shell you start dsh from and retry.
  • A repeat oan_verify reports the code as already used — the earlier call went through; the connection is already up (check oan_status). Verification codes are single-use by design; do not request another one.
  • oan_status says this instance is passive — another dsh process on the same machine holds the OAN connection (single-machine instance lock). Stop the other process or use it instead; two connectors answering one account would duplicate replies.

Known limits

  • A resident profile is required (e.g. npx @deepseek-ai/dsh web). Headless single-task runs exit after one turn and cannot receive OAN events.
  • One OAN connection per machine: a second dsh process stays passive and says so in oan_status.
  • Wake-ups target the most recently active root agent only — deliberate, so a burst of events does not burn one model turn per open session.
  • Attachments: 10MB per request; documents are PDF, DOC, DOCX, TXT, CSV and images are JPEG, PNG, WebP.
  • Host compatibility is verified against dsh 0.1.0-rc.6 (every host-API assumption is verified against the harness source); newer host versions need a re-check of that contract before this plugin claims support.

Development

pnpm --filter @openagentnetwork/dsh-plugin test        # vitest
pnpm --filter @openagentnetwork/dsh-plugin build       # tsc
bash connectors/dsh-plugin/scripts/release.sh pack     # self-contained .tgz

Host-facing behavior is written strictly against the harness's own source — every dsh API assumption below was verified against it rather than guessed. The plugin has zero runtime dependencies on dsh packages (host types are structural, @deepseek-ai/cordis is type-only); the published bundle inlines everything except Node builtins.

License

MIT