CrazyShout/dsh-ssh-remote ↗★ 0
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 分析
核心用途是让 AI 智能体直接驱动和管理远程服务器。适合需要在 GPU 服务器或远程开发机上进行实验和代码部署的用户。必要条件是 Node 22+。
インストール
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:CrazyShout/dsh-ssh-remoteドキュメント
README 全文を読む ↗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).