ssh-cli 0.4.1

Native Rust CLI that gives LLMs (Claude Code, Cursor, Windsurf) the ability to operate remote servers via SSH over stdin/stdout
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/danilo-aguiar-br/ssh-cli/docs/schemas/su-exec.schema.json",
  "title": "su-exec JSON",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "stdout",
    "stderr",
    "truncated_stdout",
    "truncated_stderr",
    "duration_ms"
  ],
  "properties": {
    "stdout": {
      "type": "string"
    },
    "stderr": {
      "type": "string"
    },
    "exit_code": {
      "type": [
        "integer",
        "null"
      ]
    },
    "truncated_stdout": {
      "type": "boolean"
    },
    "truncated_stderr": {
      "type": "boolean"
    },
    "duration_ms": {
      "type": "integer"
    }
  }
}