DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Remote Tools — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
R

@cryptocurpays/dsh-remote-tools

Remote Tools

树外 dsh 捆绑包:远程主机发现(JumpServer + 文件提供程序)、SSH 终端后端,以及面向模型的远程工具

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

npx -y @deepseek-ai/dsh plugin --profile web add github:cryptocurpays/dsh-remote-tools#28f8d7eecdd491f769e5f60dbd4aea365a6c3e5e
README兼容性版本

兼容性与来源证明

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

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

版本

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

相关插件

正在加载相关插件…

最新版
0.1.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/14
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。Plugindsh-pluginDeepSeek Harness 社区插件市场,遵循官方插件规范——无需离开应用即可浏览、搜索并安装 9000+ 个由人工精选的社区插件。· DeepSeek Harness 社区插件市场(遵循官方开发规范):9000+ 人工精选社区插件,每日更新。Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话

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.