agentic-workflow 0.1.0

Universal orchestration engine — workflows, pipelines, state machines, batch processing, and every coordination pattern
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! AgenticWorkflow — Universal Orchestration Engine
//!
//! Coordinates workflows, pipelines, state machines, batch processing,
//! and every coordination pattern through a single engine.

pub mod types;
pub mod engine;
pub mod resilience;
pub mod governance;
pub mod template;
pub mod intelligence;
pub mod format;

// Re-export core types for convenience
pub use types::*;