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
16
17
pub mod dag;
pub mod dag_exec;
pub mod store;
pub mod scheduler;
pub mod trigger;
pub mod batch;
pub mod stream;
pub mod fanout;
pub mod fsm;

pub use dag::DagEngine;
pub use scheduler::SchedulerEngine;
pub use trigger::TriggerEngine;
pub use batch::BatchEngine;
pub use stream::StreamEngine;
pub use fanout::FanOutEngine;
pub use fsm::FsmEngine;