//! Per-agent configuration registries: tool groups, capabilities, //! resource limits, topology (all JSON files under //! `/var/lib/hyperhive/meta/`) and the shared wire-protocol size //! limits. Each submodule is re-exported at the crate root, so //! `crate::topology::…` etc. keep working unchanged. //! //! Note the two similarly-named modules: [`limits`] caps inline //! *message body* sizes on the sockets, while [`resource_limits`] holds //! per-agent CPU/memory caps for the container drop-in. pub mod capabilities; pub mod limits; pub mod resource_limits; pub mod tool_groups; pub mod topology;