telos_agent/tools/command_security/powershell/mod.rs
1//! PowerShell command parsing, prefix extraction, and safety analysis.
2
3pub mod aliases;
4pub mod analyzer;
5pub mod dangerous_cmdlets;
6pub mod parser;
7pub mod path_validation;
8pub mod read_only;
9pub mod static_prefix;
10
11pub use analyzer::{CommandSafety, analyze};
12pub use static_prefix::{PrefixResult, extract_command_prefix};