codewhale-tui 0.9.8

Terminal UI for open-source and open-weight coding models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! TOML execpolicy rules consumed by the shell tool.
//!
//! The legacy Starlark policy engine (`PolicyParser`, `Policy`, `Rule`, the
//! `execpolicy check` CLI verb) was deleted for v0.9.4: the runtime never
//! enforced it, so a green `check` meant nothing. The live policy surface is
//! the TOML `execpolicy.toml` rules here plus the `codewhale-execpolicy`
//! crate's permission engine.

pub mod matcher;
pub mod rules;

pub use rules::{ExecPolicyDecision, load_default_policy};