marver 0.0.25

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.

pub mod agent;
pub mod archive;
pub mod brief;
pub mod daemon;
pub mod domain;
pub mod git;
pub mod harness;
pub mod hook;
pub mod launcher;
pub mod notify;
pub mod pause;
pub mod repos;
pub mod review;
pub mod scan;
pub mod scheduler;
pub mod store;
pub mod term;
pub mod tmux;
pub mod tui;
pub mod usage;
pub mod worktree;

// Re-exported because this crate's API cannot be used without them: almost
// every write takes a `chrono::DateTime<Utc>`, and `Event::payload` is a
// `serde_json::Value`.
pub use chrono;
pub use serde_json;

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