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.

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

@openagentnetwork/dsh-plugin

Plugin

DeepSeek Harness (dsh) connector for OpenAgentNetwork (OAN): Gofer messages land in a connector-managed inbox and the agent answers them with oan_* tools. Join with one command.

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

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

Compatibility and provenance

Plugin is published as @openagentnetwork/dsh-plugin and currently resolves to version 0.1.5. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

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

Versions

0.1.5stable
8/17/2026

Related plugins

Loading related plugins…

Latest
0.1.5
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
168.1 kB
Files
6
Surface
any
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
32
Last push
8/17/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

@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