Expand description
Core data models for tasks and phases.
This module defines the fundamental types used throughout SCUD:
models::Task- Individual work items with status, complexity, dependenciesmodels::Phase- A collection of related tasks (identified by a tag)models::TaskStatus- Task lifecycle states (Pending, InProgress, Done, etc.)models::Priority- Task priority levels (Critical, High, Medium, Low)models::IdFormat- ID generation strategy (Sequential or UUID)
Re-exports§
pub use phase::IdFormat;pub use phase::Phase;pub use phase::PhaseStats;pub use task::Priority;pub use task::Task;pub use task::TaskStatus;