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 Tools — DSH Plugin for DeepSeek Harness
← Plugins
R

@cryptocurpays/dsh-remote-tools

Remote Tools

Out-of-tree dsh bundle: remote-host discovery (JumpServer + file providers), an SSH terminal backend, and model-facing remote tools

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

npx -y @deepseek-ai/dsh plugin --profile web add github:cryptocurpays/dsh-remote-tools#28f8d7eecdd491f769e5f60dbd4aea365a6c3e5e
READMECompatibilityVersions

Compatibility and provenance

Remote Tools is published as @cryptocurpays/dsh-remote-tools and currently resolves to version 0.1.1. 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/14/2026

Versions

0.1.1stable
9/14/2026
0.1.0stable
9/2/2026

Related plugins

Loading related plugins…

Latest
0.1.1
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
9/14/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.

DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Plugindsh-pluginA community plugin marketplace for DeepSeek Harness, built to the official plugin spec — browse, search and install 9000+ human-curated community plugins without leaving the app. · DeepSeek Harness 社区插件市场(遵循官方开发规范):9000+ 人工精选社区插件,每日更新。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 sessions

README

@cryptocurpays/dsh-remote-tools

Out-of-tree dsh bundle: remote-host tools — discovery, an SSH terminal backend, and model-facing tools — mounted beside the shipped dsh profiles instead of inside the upstream tree. This keeps upstream upgrades cheap: the bundle only tracks the public seams it uses, never the upstream codebase's internal structure.

What it contains

PackageRole
packages/remote-hostsService Definition: ctx.remoteHosts discovery directory (provider registry, resolution, known-host dictionary, live-session map)
packages/remote-hosts-jumpserverProvider: parses pasted JumpServer SSH connect commands
packages/remote-hosts-fileProvider: static test servers from a YAML document
packages/terminal-sshTransport: SSH PTY backend registered on ctx.terminals
packages/tool-remoteConsumer: remote_search / remote_open / remote_exec / remote_close / remote_close_all tools

cordis.patch.yml is the bundle overlay that mounts all five.

Prerequisite: patch dsh-terminal params

dsh plugin add only installs this bundle. It does not modify DeepSeek Harness. SSH still needs TerminalSpawnRequest.params so remote_open can pass hostRef through ctx.terminals.spawn. Stock dsh-terminal forwards type / name / cwd only; without the field, spawn throws params.hostRef is required.

After you install dsh, apply the patch to the dsh source checkout you actually run, then rebuild that checkout if you launch from source:

cd /path/to/deepseek-harness
git apply /path/to/dsh-remote-tools/patches/terminal-params.patch

Get the patch from this repo (patches/terminal-params.patch); the npm tarball of @cryptocurpays/dsh-remote-tools does not replace dsh-terminal. Skip the apply only when that checkout's TerminalSpawnRequest already declares params. Re-apply after every dsh upgrade that drops the field. Details: docs/terminal-params-patch.md.

Install (recommended)

Install the bundle into a profile with dsh plugin add so every plugin resolves through the profile's node_modules without --patch:

dsh --profile web-remote --from-default-profile web --dump-config   # create profile, print, exit (no remote-* rows yet)
dsh plugin --profile web-remote add @cryptocurpays/dsh-remote-tools
dsh --profile web-remote --dump-config   # optional: expect terminal + five remote-* plugin rows
dsh --profile web-remote

Before the npm release, install from git: dsh plugin --profile web-remote add github:cryptocurpays/dsh-remote-tools.

Step-by-step notes: docs/install.md. The root package's prepare script transpiles each plugin to lib/index.js during install.

Dev overlay (optional)

While developing against a source checkout of dsh:

dsh web --patch /path/to/dsh-remote-tools/cordis.patch.yml

Upgrade workflow (when a new dsh releases)

  1. Pull the new dsh into your environment.
  2. Re-apply patches/terminal-params.patch if that upgrade does not already ship TerminalSpawnRequest.params.
  3. Run this bundle's checks (below).
  4. Fix only if a seam API you use changed (ctx.tools, ctx.terminals, ctx.credentials, ctx.systemPrompt) — rare and usually one call site.
  5. Re-install or update the profile bundle: dsh plugin --profile web-remote update @cryptocurpays/dsh-remote-tools.

Development

The bundle typechecks and tests against a local dsh checkout read-only; it never modifies it. tsconfig.base.json maps every @deepseek-ai/* name to harness source paths — machine-local by design. Install-time emit uses esbuild and keeps @deepseek-ai/* external so the running dsh satisfies peers.

cd /path/to/dsh-remote-tools
pnpm install          # needs harness node_modules symlink or a local install
pnpm run build        # packages/*/lib/index.js
pnpm run typecheck
pnpm run test   # from harness: pnpm exec vitest run --config /path/to/dsh-remote-tools/vitest.config.ts packages

Before publishing to npm, replace "*" peer ranges with semver that matches the released @deepseek-ai/dsh-* versions you support.

Mounting into a source-mode dsh checkout

Do not copy packages into a harness tree. Build or link dsh, then follow docs/install.md. The old workspace-member mount is retired; docs/local-mount.md only records that.