// vapora-worktree: Git worktree isolation for code-modifying agents // Phase 3: Sandbox execution environment pub mod error; pub mod handle; pub mod manager; pub use error::{Result, WorktreeError}; pub use handle::WorktreeHandle; pub use manager::WorktreeManager;