agit 1.3.0

AI-native Git wrapper for capturing context alongside code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Safety primitives for AGIT.
//!
//! This module provides atomic write operations, file locking,
//! and path validation to ensure data integrity and security.

mod atomic;
mod lock;
mod paths;

pub use atomic::*;
pub use lock::*;
pub use paths::*;