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 broker;
8pub mod cli;
9pub mod config;
10pub mod dashboard;
11pub mod detect;
12pub mod dirs;
13pub mod error;
14pub mod git;
15pub mod init;
16pub mod interactive;
17pub mod logging;
18pub mod merge_loop;
19pub mod replay;
20pub mod session;
21pub mod skills;
22pub mod specs;
23pub mod summary;
24pub mod supervisor;
25pub mod tmux;