DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

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

dsh-remote-ssh

Remote Ssh

使用原生 DSH 工具的 DeepSeek Harness 远程 SSH 执行提供程序

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

npx -y @deepseek-ai/dsh plugin --profile web add github:NaNQiQ/deepseek-harness-remote-ssh#93190752913ef73f7b401c1ac340cf28a9c1750a
README兼容性版本

兼容性与来源证明

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

DSH 兼容范围
*
运行环境
web
发布来源
github
Registry 更新时间
2026/8/24

版本

1.0.3stable
2026/8/24

相关插件

正在加载相关插件…

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

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

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

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

认领这个 Plugin →
报告问题

相关插件

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

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 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

DSH Remote SSH

English | 简体中文

Use the native DeepSeek Harness (DSH) tools directly on remote Linux servers.

Select a saved server next to the conversation composer and DSH's existing read / write / edit / glob / grep / bash / terminal tools run remotely. The plugin does not modify DSH source code, and the server does not need DSH, this plugin, Node.js, or Python installed.

Features

  • Add, test, manage, and select SSH servers inside the DSH Web UI.
  • Switch the execution environment between the local computer and saved servers.
  • Keep the official DSH tools instead of adding reduced ssh_* replacements.
  • Use SFTP for files, SSH exec / Shell for commands, and SSH PTY for interactive terminals.
  • Preserve native glob / grep behavior while resolving and caching ripgrep for the remote Linux host.
  • Authenticate with SSH Agent, a private-key file, or a temporary password.
  • Verify SSH Host Key fingerprints on first connection and reject unexpected changes.
  • Reuse connections maintained by the DSH Host instead of logging in for every message.

Install

Requires Node.js 24 or newer, with dsh and pnpm available on PATH.

dsh plugin --profile web add github:NaNQiQ/deepseek-harness-remote-ssh
dsh web

If Windows cannot find pnpm, run npm install -g pnpm@11 in CMD and reopen CMD.

Use

  1. Start dsh web.
  2. Open the execution-environment selector next to the composer.
  3. Select Add server.
  4. Enter the connection, authentication, and default working-directory settings.
  5. Follow the built-in authentication guide and verify the server fingerprint.
  6. Select Test and save.
  7. Select the saved server next to the composer.

For later conversations, simply select the saved server. The model continues to use official DSH tools; only the location behind those tools changes.

Screenshots

Add and configure an SSH server

Add and configure an SSH server

Switch between local and remote execution environments

Switch execution environment

Use native DSH tools on the remote server

Remote server execution result

Architecture

flowchart TB
    M[Model]
    T[Official DSH tools<br/>read · write · edit · glob · grep · bash · terminal]
    I[Official DSH execution interfaces<br/>ctx.fs · ctx.subprocess · ctx.shell · ctx.terminals]

    M --> T --> I

    subgraph W[Execution World]
        direction LR

        subgraph L[Local]
            LP[Native DSH providers]
            LOS[Local operating system]
            LP --> LOS
        end

        subgraph R[Remote SSH]
            RP[DSH Remote SSH providers]
            FS[SFTP<br/>remote filesystem]
            EX[SSH exec<br/>processes / shell]
            PTY[SSH PTY<br/>interactive terminal]
            RG[Official glob / grep arguments<br/>remote Linux ripgrep]

            RP --> FS
            RP --> EX
            RP --> PTY
            RP --> RG
        end
    end

    I --> LP
    I --> RP
Native DSH @ Linux
        ≈
DSH @ local computer + DSH Remote SSH → the same Linux host

The plugin changes where DSH executes, not how the model uses DSH tools. See ARCHITECTURE.md for implementation details.

Authentication

MethodBehavior
SSH AgentRequests signatures without reading private-key contents or enabling Agent Forwarding; suited to personal desktops
Private-key filePersists only the path and reads the file when connecting; suited to dedicated accounts or server deployments
Temporary passwordKept only in current DSH Host process memory and must be entered again after restart

Remote requirements and security boundary

  • The target is a Linux / Unix host with SSH, SFTP, and a POSIX shell.
  • Each server can define a default working directory; it is the initial cwd, not a path sandbox.
  • Effective access equals the permissions of the remote SSH account.
  • The Remote Provider does not expose the DSH Host's local filesystem to the remote execution world.
  • Model API keys and Base URLs remain managed by DSH; this plugin does not read or store them.

See SECURITY.md for details.

Update and remove

dsh plugin --profile web update dsh-remote-ssh
dsh plugin --profile web remove dsh-remote-ssh

Restart DSH after updating or removing the plugin.

Documentation

  • ARCHITECTURE.md — architecture and implementation
  • SECURITY.md — security model and credential handling
  • CHANGELOG.md — release history
  • CONTRIBUTING.md — development and contributions

Related project

  • DeepSeek Harness

Friends

License

MIT