selfware 0.6.0

Your personal AI workshop — software you own, software that lasts
Documentation
1
2
3
4
5
6
7
8
use selfware::evolve::gate::Gatekeeper;

#[test]
fn test_gatekeeper_passes_on_clean_repo() {
    let gate = Gatekeeper::new();
    let result = gate.check_code_gates().unwrap();
    assert!(result.passed);
}