git_paw/lib.rs
1//! git-paw — Parallel AI Worktrees.
2//!
3//! Orchestrates multiple AI coding CLI sessions across git worktrees
4//! from a single terminal using tmux.
5
6pub mod agents;
7pub mod cli;
8pub mod config;
9pub mod detect;
10pub mod dirs;
11pub mod error;
12pub mod git;
13pub mod init;
14pub mod interactive;
15pub mod logging;
16pub mod replay;
17pub mod session;
18pub mod specs;
19pub mod tmux;