shellfirm 0.3.7

`shellfirm` will intercept any risky patterns (default or defined by you) and prompt you a small challenge for double verification, kinda like a captcha for your terminal.
Documentation
pub mod agent;
pub mod audit;
pub mod blast_radius;
pub mod checks;
mod config;
pub mod context;
mod data;
pub mod env;
pub mod error;
#[cfg(feature = "llm")]
pub mod llm;
#[cfg(feature = "mcp")]
pub mod mcp;
pub mod policy;
pub mod prompt;
#[cfg(feature = "wrap")]
pub mod wrap;
pub use config::{
    value_set, AgentConfig, Challenge, Config, LlmConfig, Settings, SeverityEscalationConfig,
    WrapperToolConfig, WrappersConfig, DEFAULT_ENABLED_GROUPS,
};
pub use data::CmdExit;