//! Task management and execution. pub mod completion_gate; pub mod manager; pub mod progress_log; pub mod state; pub use completion_gate::CompletionGate; pub use manager::{ManagedTask, TaskConfig, TaskManager}; pub use progress_log::{Learning, ProgressLogEntry, TaskCompletionStatus}; pub use state::TaskState;