agentflow-core 0.1.1

Shared types, configuration, themes, and error handling for the Flow workspace manager
Documentation
pub mod agent;
pub mod config;
pub mod error;
pub mod event;
pub mod feature;
pub mod project;
pub mod state;
pub mod task;
pub mod theme;

pub use agent::AgentConfig;
pub use config::Config;
pub use error::FlowError;
pub use event::FlowEvent;
pub use feature::{CreateFeatureInput, DependencyRef, Feature, FeatureGraphNode, FeatureStats};
pub use task::{SessionListItem, SessionMeta, Task, TaskWithSession};
pub use theme::{AnsiColor, Theme, ThemeColors};

/// Convenience type alias for Results using `FlowError`.
pub type Result<T> = std::result::Result<T, FlowError>;