ssh-cli 0.5.1

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
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Particularidades da plataforma macOS.

use tracing::debug;

/// Initializes macOS-specific behavior.
pub fn initialize() {
    debug!("plataforma macOS detectada");
}