452926826/dsh-ssh-logs0

dsh-ssh-logs

Read allowlisted remote logs over SSH from DeepSeek Harness conversations

AI 分析

适合需要让 AI 协助排查服务器问题的运维或开发人员。支持通过 SSH 安全读取指定服务器的白名单日志,需配置服务器连接信息。

パッケージ
dsh-ssh-logs
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/08/26

インストール

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

ドキュメント

README 全文を読む ↗

Configuration

defaults:
  maxBytes: 131072
  connectTimeoutSeconds: 10
  commandTimeoutMs: 120000

servers:
  production:
    description: Production application server
    host: prod-app.example.com
    user: log-reader
    port: 22
    identityFile: ~/.ssh/prod_log_reader
    knownHostsFile: ~/.ssh/known_hosts
    proxyJump: bastion.example.com
    roots:
      app: /srv/myapp/logs
      nginx: /var/log/nginx

Each server supports description, host, user, port, identityFile, knownHostsFile, proxyJump, roots, maxBytes, connectTimeoutSeconds, and commandTimeoutMs.