Skip to main content

agent_block_core/
lib.rs

1//! agent-block-core — host runtime + Lua stdlib bridge + EventBus.
2//!
3//! Depends on `agent-block-types` (error / obs) and `agent-block-mcp`
4//! (rmcp wrapper).  The bin crate `agent-block` is a thin CLI on top.
5
6pub mod bridge;
7pub mod bus;
8pub mod host;
9
10pub use host::{run, BlockConfig, HostContext};