clt-rs 0.6.10

File-backed task manager with a TUI Kanban board and multi-project Codex agent registry
Documentation
use anyhow::Result;

mod agent;
mod application;
mod cli;
mod managed_git;
mod platform;
mod runner;
mod scheduler;
mod session_control;
mod session_recovery;
mod task;
#[cfg(test)]
mod test_support;
mod tui;
mod worker;

/// Runs the CLT command-line application.
pub fn run() -> Result<()> {
    cli::run()
}