Skip to main content

worldinterface_host/
lib.rs

1//! Embedded Host for WorldInterface.
2//!
3//! The Host is the primary programmatic API surface. It owns the ActionQueue
4//! engine, ContextStore, and ConnectorRegistry, and exposes flow submission,
5//! capability discovery, and single-op invocation.
6//!
7//! This is the integration surface for agents and other embedders.
8
9pub mod config;
10pub mod error;
11mod helpers;
12pub mod host;
13pub mod status;
14mod tick;
15
16pub use config::HostConfig;
17pub use error::HostError;
18pub use host::EmbeddedHost;
19pub use status::{FlowPhase, FlowRunStatus, FlowRunSummary, StepPhase, StepStatus};