pipipigu/dsh-ssh-control0

@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 分析

核心用途是让 DSH 具备多服务器 SSH 运维管理能力,支持状态查询、批量上传和日志提取。适合需要通过 AI 助手直接控制和维护多台远程服务器的系统管理员或开发者。

パッケージ
@dsh-external/dsh-ssh-control
バージョン
0.3.0
ライセンス
Apache-2.0
最終更新
2026/09/02

インストール

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

ドキュメント

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"
}