CrazyShout/dsh-ssh-remote0

dsh-ssh-remote

DeepSeek Harness SSH remote workspaces: browse, read/write, run commands and open terminals on remote hosts, with connection status dots in the sidebar.

AI Analysis

核心用途是让 AI 智能体直接驱动和管理远程服务器。适合需要在 GPU 服务器或远程开发机上进行实验和代码部署的用户。必要条件是 Node 22+。

Package
dsh-ssh-remote
Version
0.1.0
License
MIT
Last updated
Aug 13, 2026

Install

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:CrazyShout/dsh-ssh-remote

Usage

The agent drives remote hosts through the ssh_remote tool:

ssh_remote { action: "add",    uri: "ssh://user@gpu-server:22/home/user/exp" }
ssh_remote { action: "connect", id: "" }
ssh_remote { action: "exec",    id: "", command: "nvidia-smi" }
ssh_remote { action: "read",    id: "", path: "train.py" }
ssh_remote { action: "write",   id: "", path: "notes.txt", content: "..." }
ssh_remote { action: "list" }

path accepts a remote absolute path (/home/user/exp/a.py) or a workspace-relative path (a.py).