clash 0.7.1

Command Line Agent Safety Harness — permission policies for coding agents
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Shared definitions for policy generation.
//!
//! All policy generators (import_settings, from_trace, etc.) consume
//! these definitions instead of hardcoding tool names, sandbox shapes,
//! and load statements.

pub mod ecosystems;
pub mod loads;
pub mod sandboxes;
pub mod spec;
pub mod tools;

#[cfg(test)]
mod tests;