swarm_engine_core/context/mod.rs
1//! Context System - スコープ付きコンテキスト管理
2//!
3//! Manager/Worker が「見えるべき」情報を制御するためのスコープシステム。
4
5pub mod resolver;
6pub mod store;
7pub mod summary;
8
9pub use resolver::{AdjacentStrategy, AllVisibleStrategy, ContextResolver, NeighborStrategy};
10pub use store::{
11 ActionCandidate, ActionParam, ContextStore, ContextTarget, ContextView, GlobalContext,
12 ManagerContext, ResolvedContext, WorkerContext,
13};
14pub use summary::{TaskContext, WorkerSummary};