Skip to main content

haki_agents/
lib.rs

1//! haki-agents — agent definitions, roles, and concurrent spawning
2
3pub mod definition;
4pub mod spawner;
5
6pub use definition::{AgentDef, AgentRole};
7pub use spawner::{AgentHandle, AgentSpawner};