Skip to main content

bzzz_core/
lib.rs

1//! Bzzz Core Library
2//!
3//! Core primitives for Agent orchestration:
4//! - Protocol types (Agent Spec, SwarmFile, RuntimeAdapter)
5//! - State objects (Run, Step, Session, Artifact)
6//! - Patterns (sequence, parallel, conditional, loop, delegate, supervisor, compete, escalation, alongside)
7//! - Parser and Validator
8//! - Runtime implementations (Local, Docker, HTTP, Cloud)
9//! - Template module for parameter substitution
10
11pub mod parser;
12pub mod pattern;
13pub mod protocol;
14pub mod runtime;
15pub mod template;
16
17pub use parser::*;
18pub use pattern::*;
19pub use protocol::*;
20pub use runtime::*;
21pub use template::*;