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
//! Test-only helpers that encapsulate process-global mutations requiring `unsafe`.
//!
//! Product modules keep `#![forbid(unsafe_code)]` and call these safe wrappers.
//! Call sites **must** run under `#[serial_test::serial]` (or equivalent isolation).

#![cfg(test)]

pub mod env;