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.

Remote Exec — DSH Plugin for DeepSeek Harness
← Plugins
R

@morewax/dsh-remote-exec

Remote Exec

Run DeepSeek Harness locally, execute on your server — ssh / mosh / sam transports with remote file and shell tools

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

npx -y @deepseek-ai/dsh plugin --profile web add github:moreWax/dsh-remote-exec#77916998a9c610bd7ff6db212d298d3bba3d9a8d
READMECompatibilityVersions

Compatibility and provenance

Remote Exec is published as @morewax/dsh-remote-exec and currently resolves to version 0.1.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
8/25/2026

Versions

0.1.0stable
8/25/2026

Related plugins

Loading related plugins…

Latest
0.1.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/25/2026
View source ↗
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
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in developer-tools.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessionsSdk App@deepseek-ai/dsh-sdk-appThe dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-baseSubagent Codex@deepseek-ai/dsh-subagent-codexOne-shot Codex subagent provider over the official app-server protocol

README

dsh-remote-exec

Run DeepSeek Harness locally, execute on your server. One plugin; the agent's file tools and shell operate on a remote machine over your choice of transport.

- id: remote-exec
  name: '@morewax/dsh-remote-exec'
  config:
    driver: ssh          # ssh | mosh | sam
    host: gpu-box        # or a Tailscale MagicDNS name
    user: me
    root: /home/me/work  # remote workspace
    tailscale: true      # keyless tailnet auth (ssh/mosh)

Drivers

DriverExec & filesInteractive terminalAuth
sshOpenSSHssh PTYkeys, or tailscale: true for keyless tailnet identity
moshvia sshnative mosh — roaming-safe, survives sleepsame as ssh
samSAM mesh (MCP tools on a peer)— (use mosh)mesh identity; zero local keys

The sam driver speaks MCP through the v2 TypeScript SDK (@modelcontextprotocol/client@^2), which natively implements the 2026-07-28 specification — the stateless protocol core (no initialize handshake, no Mcp-Session-Id, self-describing requests with Mcp-Method/Mcp-Name headers, MRTR for mid-call input, cacheable list results). Era negotiation is built in: it speaks 2026-07-28 to modern servers and falls back to legacy-era revisions (2025-11-25 and older) for servers that haven't upgraded yet.

The sam driver refuses to send credentials to any endpoint that does not prove it speaks the sam-node API — a foreign service squatting on the port fails the driver loudly instead of receiving your token.

Install

dsh plugin --profile default add github:moreWax/dsh-remote-exec

The remote side (driver: sam)

Run a small exec/fs tool server on the target machine and register it with your mesh — see sam-exec-fs/README.md. Exposes exactly three tools (exec, read_file, write_file); everything else stays policy- gated by the mesh.

Development

pnpm install
pnpm test          # offline suites
pnpm build

# live end-to-end over ssh (needs key auth to the target):
DSH_REMOTE_LIVE=1 DSH_REMOTE_HOST=127.0.0.1 DSH_REMOTE_USER=$USER \
DSH_REMOTE_ROOT=/tmp/remote-test pnpm test

Status

Built against DeepSeek Harness 0.1.1-rc.x (developer preview). Remote shell and filesystem are verified end-to-end over ssh; mosh interactive is standard mosh client behavior; the sam driver ships with a credential guard and is exercised by unit + opt-in live tests.