ssh-cli 0.5.2

Native Rust CLI that gives LLMs (Claude Code, Cursor, Windsurf) the ability to operate remote servers via SSH over stdin/stdout
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/danilo-aguiar-br/ssh-cli/docs/schemas/secrets-init.schema.json",
  "title": "secrets-init",
  "type": "object",
  "required": ["ok", "event", "key_source", "key_file"],
  "properties": {
    "ok": { "const": true },
    "event": { "const": "secrets-init" },
    "key_source": { "type": "string" },
    "key_file": { "type": "string" },
    "reencrypted_hosts": { "type": "integer", "minimum": 0 },
    "force": { "type": "boolean" }
  },
  "additionalProperties": true
}