tam_worktree/lib.rs
1//! Git worktree management and project discovery.
2//!
3//! This crate provides the library layer for worktree lifecycle (create, delete),
4//! project discovery (scanning directories for git repos), pretty naming
5//! (disambiguated display names), and worktree initialization (copying files,
6//! running setup commands). It has no dependency on agents, daemons, or TAM-specific
7//! concepts and can be used standalone.
8
9pub mod config;
10pub mod discovery;
11pub mod git;
12pub mod init;
13pub mod pretty;
14pub mod worktree;