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 Control — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
S

@dsh-external/dsh-ssh-control

Ssh Control

Unified SSH control center for DeepSeek Harness with stateless multi-host dispatch, direct SSH pipes, and zero-intrusive local development.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:pipipigu/dsh-ssh-control#c5bb2cf97be9e647fc799d614528fc71c8e810d3
READMECompatibilityVersions

Compatibility and provenance

Ssh Control is published as @dsh-external/dsh-ssh-control and currently resolves to version 0.3.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/28/2026

Versions

0.3.0stable
8/28/2026

Related plugins

Loading related plugins…

Latest
0.3.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
Apache-2.0
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/2/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 Control Center

English | 中文

A unified, non-intrusive SSH control center plugin for DeepSeek Harness (DSH) (@dsh-external/dsh-ssh-control).

This plugin equips DSH with cross-platform (Linux & Windows), encoding self-healing (UTF-8 & GBK), stateless, and multi-host concurrent dispatch capabilities. AI agents can seamlessly interact with remote Linux, NAS, Windows, and container hosts in the same session without hijacking or breaking the native local development environment.


📸 Settings & Dashboard Preview

SSH Control Center Settings Preview


🌟 Key Features

  • Unified Composite Hub (ssh_control): Consolidates remote command execution, file IO, file transfer (upload/download), container inspection (docker), dynamic logs (tail), and port tunnels into a single tool, reducing Tool Schema token overhead by 85%+.
  • Cross-Platform Dual-Dialect (Linux POSIX + Windows PowerShell): Automatically senses remote OS types. Uses standard POSIX syntax for Linux hosts and PowerShell commands/paths for Windows hosts.
  • Intelligent Encoding Self-Healing (UTF-8 + GBK/CP936): Native multi-encoding detection and auto-transcoding for Windows Chinese systems, eliminating broken characters and garbled output.
  • Bi-Directional File Transfer (SCP Stream): Supports single file and directory upload (upload) and download (download), with multi-host batch dispatch.
  • Batch Multi-Host Concurrent Dispatch: Natively supports comma-separated targets (e.g. server: "nas-server, app-node, web-cluster"). Powered by Promise.all concurrent SSH pipes for parallel batch execution and aggregated reporting.
  • Structured Container Inspection (Docker): Real-time structured extraction of container states, images, ports, and health status.
  • Dynamic Log Tail & Filter (Tail + Grep): Fast bounded log inspection from the end of files with regex error filtering (ERROR|FATAL).

🏛️ Architecture Overview

SSH Control Center Architecture


🛠️ Tool Specification (ssh_control)

DSH exposes a single compound tool ssh_control:

ActionParametersDescription
execserver, command, workdir?, timeoutMs?Execute shell commands on single or multiple hosts in parallel (cross-platform)
readserver, path, offset?, limit?Read remote files bounded by lines
writeserver, path, contentWrite remote file content via stdin stream (zero quoting loss)
uploadserver, localPath, remotePath, recursive?Upload local file or directory to remote host(s)
downloadserver, remotePath, localPath, recursive?Download remote file or directory to local machine
tailserver, path, lines?, pattern?Tail end of logs with optional regex/keyword filtering
dockerserver, command?Structured Docker container inspection or docker commands
statusserver?Probe target host uptime, memory, OS, and all disk mount watermarks
tunnelserver, port, targetPort?, tunnelActionManage background SSH port-forwarding tunnels
list

🚀 Getting Started

1. Installation

# Option A: One-click install from GitHub (prebuilt bundles included)
dsh plugin --profile web add github:pipipigu/dsh-ssh-control

# Option B: Local development via link
dsh plugin --profile web add link:/path/to/dsh-ssh-control

# Launch DSH Web
dsh web

2. Usage Examples

Scenario 1: Status & Multi-Mount Disk Watermarks

{
  "action": "status",
  "server": "nas-server"
}

Scenario 2: Batch Upload to Multiple Servers

{
  "action": "upload",
  "server": "app-node-01, app-node-02",
  "localPath": "dist",
  "remotePath": "/srv/web"
}

Scenario 3: Log Extraction with Error Filtering

{
  "action": "tail",
  "server": "web-cluster",
  "path": "/var/log/app.log",
  "lines": 100,
  "pattern": "ERROR|FATAL"
}

🧪 Testing & Verification

# Run typecheck and all 24 unit test suites
pnpm run check

# Run automated isolated port boot check & health probe in DSH root
./test-boot.sh

📄 License

Licensed under the Apache-2.0 License.

none
Parse local ~/.ssh/config to discover available SSH hosts
attach / detachserver?, path?(Optional) Bind or unbind default server for active session