agent-locker 0.1.0-alpha.1

A sandbox for running coding agents with restricted filesystem access.
1
2
3
4
5
6
7
8
mod landlock;

use crate::Result;
use crate::policy::Policy;

pub fn exec(policy: &Policy) -> Result<()> {
    landlock::exec(policy)
}