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.

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

dsh-ssh-pro

Ssh Pro

Enhanced SSH ops for DeepSeek Harness: adds agent tools the base dsh-ssh plugin leaves uncovered — host testing, remote ls, ~/.ssh/config import, known_hosts fingerprint check and multi-host exec — on top of the shared ssh2 engine.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:WODE25500/dsh-ssh-pro#d3785e4c8a77c9e59156a68f8794af35e24ff6e0
READMECompatibilityVersions

Compatibility and provenance

Ssh Pro is published as dsh-ssh-pro 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/20/2026

Versions

0.1.0stable
8/20/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
Apache-2.0
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
8/20/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

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-ssh-pro

DeepSeek Harness 的 SSH 增强运维插件 —— 补齐 base dsh-ssh 插件容易忽略的操作: 连接测试、远程目录浏览、~/.ssh/config 导入、known_hosts 指纹检查、多主机批量执行。

独立社区项目。复用 @linxin666/dsh-ssh 的主机配置存储(Apache-2.0),但无运行时依赖——只依赖 ssh2 库,可与任何 SSH 插件共存。

为什么做这个

原版 dsh-ssh 提供了 ssh_list/exec/upload/download/tunnel/cluster 和完整 GUI,但 5 个引擎已有能力没暴露给 agent,正是"存在但容易被忽略"的缺口:

缺失的能力原版状态本插件
连接测试引擎有 test(),无工具✅ ssh_test
远程目录浏览引擎有 ls(),无工具✅ ssh_ls
ssh-config 导入store 有 importFromSshConfig,无工具✅ ssh_import
指纹确认无✅ ssh_keyscan
多主机批量cluster 依赖 GUI 面板✅ ssh_multi_exec(独立实现)

特性

  • 5 个原生工具:ssh_test / ssh_ls / ssh_import / ssh_keyscan / ssh_multi_exec
  • 直接读 ~/.dsh/dsh-ssh.json(与 dsh-ssh GUI 配置互通)
  • ssh_multi_exec 支持别名/环境/标签过滤 + 并发控制
  • 附带 SKILL.md 技能文件
  • Schemastery 配置 + bundle patch 层
  • 安全模型与 dsh-ssh 一致:0600 主机库、输出原样返回、无密钥泄露

前置要求

  • DeepSeek Harness(dsh)
  • ssh2 npm 包(插件依赖)
  • 主机配置:dsh-ssh GUI 配置,或 ~/.dsh/dsh-ssh.json(可用 ssh_import 从 ~/.ssh/config 导入)

安装

# profile 的 cordis.patch.yml
- insert:
    - id: ssh-pro
      name: './src/index.js'
      config:
        storePath: ~/.dsh/dsh-ssh.json
        sshConfigPath: ~/.ssh/config
        timeoutMs: 30000
# 或本地开发
pnpm dsh web --patch ./dsh-ssh-pro/cordis.patch.yml

工具

工具行为
ssh_test连接并跑 true,报延迟/错误
ssh_lsSFTP 列目录(名字/类型/大小/mtime)
ssh_import解析 ~/.ssh/config 导入主机库(跳过已存在/通配符)
ssh_keyscan检查 known_hosts 是否已有该主机指纹
ssh_multi_exec并发多主机执行(别名/环境/标签过滤)

配置项

键默认说明
storePath~/.dsh/dsh-ssh.json主机库路径
sshConfigPath~/.ssh/config导入源
knownHostsPath~/.ssh/known_hosts指纹检查
timeoutMs30000默认超时

安全说明

  • 密码/passphrase 存 0600 主机库;工具从不输出密钥
  • ssh_multi_exec 输出原样返回(env 等命令可能带回远端环境变量)
  • ssh_keyscan 只读;新主机提示需用户确认指纹

目录结构

dsh-ssh-pro/
  src/index.js            # 插件入口:5 个工具 + ssh2 引擎 + 配置
  skills/ssh-pro/SKILL.md # agent 技能
  docs/                   # 文档
  cordis.patch.yml        # bundle patch 层

许可

Apache-2.0。