Skip to main content

flow_git/
lib.rs

1//! Git worktree operations for Agent Flow workspace management.
2//!
3//! Provides branch and worktree management using [gitoxide](https://docs.rs/gix),
4//! enabling isolated workspaces for parallel AI agent execution.
5
6pub mod branch;
7pub mod worktree;