marver 0.0.3

A TUI workspace for AI agent sessions: tmux orchestration, git worktree management, and repo control in one place.
Documentation
//! marver — a TUI workspace for running AI coding agents.
//!
//! See `ARCHITECTURE.md` for the design. Implementation is in progress; only
//! the store and domain model exist so far.

pub mod daemon;
pub mod domain;
pub mod git;
pub mod hook;
pub mod launcher;
pub mod notify;
pub mod review;
pub mod scan;
pub mod scheduler;
pub mod store;
pub mod term;
pub mod tmux;
pub mod tui;
pub mod worktree;

pub use domain::{BlockedKind, Event, Repo, Task, TaskRepo, TaskState};
pub use scan::{Scanner, SyncOutcome};
pub use store::{BlockedInfo, Store, Transition};
pub use tmux::{ControlClient, Tmux};
pub use worktree::{WorktreeManager, branch_name};