cflx 0.6.153

Conflux – a spec-driven parallel coding orchestrator that runs AI agents on git worktrees
//! TUI Dashboard for OpenSpec Orchestrator
//!
//! This module provides an interactive terminal user interface for:
//! - Selecting changes to process
//! - Monitoring execution progress
//! - Dynamic queue management
//! - Auto-refresh of change list

mod command_handlers;
pub mod config;
mod events;
mod key_handlers;
pub mod log_deduplicator;
mod orchestrator;
mod qr;
pub mod queue;
mod render;
mod runner;
mod state;
mod terminal;
mod type_impls;
pub mod types;
mod utils;
mod worktrees;

// Public API re-exports
pub use runner::run_tui_with_remote;