zagens-runtime-adapters 0.8.2

Runtime tool/MCP/persist adapters for Zagens sidecar (D16 E1-a)
Documentation
//! Portable tool helpers and host ports (D16 E1-a3+).

pub mod arg_repair;
pub mod diff_format;
pub mod host;
pub mod network_gate;
pub mod path;
pub mod schema_sanitize;
pub mod workspace_walk;

pub use arg_repair::{ArgRepairError, repair};
pub use diff_format::make_unified_diff;
pub use host::{
    RuntimeToolHostWire, ToolAutomationHost, ToolProgressEmit, ToolShellEnvHost, ToolTaskHost,
};
pub use network_gate::{
    NetworkGateError, check_host_policy, check_host_with_policy, check_url_policy,
    host_policy_decision, is_http_url, is_restricted_ip,
};
pub use path::path_has_prefix;
pub use schema_sanitize::sanitize;
pub use workspace_walk::{
    SKIP_DIR_NAMES, collect_workspace_files, configure_workspace_walk, is_probably_binary,
};