@dsh-external/dsh-ssh-control
Unified SSH control center for DeepSeek Harness with stateless multi-host dispatch, direct SSH pipes, and zero-intrusive local development.
AI Analysis
核心用途是让 DSH 具备多服务器 SSH 运维管理能力,支持状态查询、批量上传和日志提取。适合需要通过 AI 助手直接控制和维护多台远程服务器的系统管理员或开发者。
Install
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:pipipigu/dsh-ssh-controlREADME
Read the full README ↗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"
}