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
// SPDX-License-Identifier: MIT OR Apache-2.0
// G-CLOSE-04: pure module — no `unsafe` permitted.
#![forbid(unsafe_code)]
//! Canonical error module path (`error.rs`) required by clap project layout rules.
//!
//! Implementation lives in [`crate::errors`]; this module re-exports it so both
//! `use ssh_cli::error::*` and `use ssh_cli::errors::*` work.

pub use crate::errors::*;