oy-cli 0.10.4

Local AI coding CLI for inspecting, editing, running commands, and auditing repositories
Documentation
//! Workspace filesystem tools and path trust boundary.
//!
//! Listing, reading, searching, line counting, replacement, and patching all
//! validate paths against the configured workspace before touching the host.

mod diff;
mod discovery;
mod list;
mod output;
mod patch;
mod paths;
mod read;
mod replace;
mod search;
mod sloc;

pub(super) const MAX_WORKSPACE_FILE_BYTES: u64 = 2 * 1024 * 1024;

pub(super) use list::tool_list;
pub(super) use patch::tool_patch;
pub(super) use read::tool_read;
pub(super) use replace::tool_replace;
pub(super) use search::tool_search;
pub(super) use sloc::tool_sloc;