safe-chains 0.112.0

Auto-allow safe, read-only bash commands in agentic coding tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub(crate) mod git;

use crate::parse::Token;
use crate::verdict::Verdict;

pub(crate) fn dispatch(_cmd: &str, _tokens: &[Token]) -> Option<Verdict> {
    None
}

pub fn command_docs() -> Vec<crate::docs::CommandDoc> {
    Vec::new()
}

#[cfg(test)]
pub(super) fn full_registry() -> Vec<&'static super::CommandEntry> {
    Vec::new()
}