sibling to agent_ports.rs (#748 / #15). Writes /var/lib/hyperhive/agent-sockets.json mapping agent name → unix socket path under /run/hive-agent/<name>.sock — the source of truth for the gateway's eventual unix-socket upstreams once it flips off TCP per #784's transition plan. shape mirrors agent_ports.rs: - BTreeMap for deterministic JSON output - atomic <path>.tmp + rename for partial-write safety - idempotent (skip rewrite when content unchanged) - MANAGER_NAME filter (gateway routes manager via dashboard upstream, not /agent/<n>/) socket_path_for(name) is pure-deterministic so a name alone resolves to the same path the c0re writes + the harness binds via HIVE_WEB_SOCKET (post-PR #800). hooked into meta::sync_agents alongside the existing agent_ports::write call (same best-effort + non-fatal shape). next: step 2b (lifecycle bind-mount /run/hive-agent/ into agent + gateway containers, with per-agent isolation per mara's #800 nudge 'agents can only access their own sockets'). then atlas's step 3 (gateway proxy_pass http://unix:...). then step 4 drops TCP.
46 lines
1.4 KiB
Rust
46 lines
1.4 KiB
Rust
//! `hive-c0re` library — module surface shared by the `hive-c0re`
|
|
//! daemon binary and the `hivectl` operator CLI.
|
|
//!
|
|
//! `hive-c0re` (daemon) keeps the systemd service shape it always had:
|
|
//! coordinator, broker, axum dashboard, admin/manager/agent unix
|
|
//! sockets, background sweepers. `hivectl` (sibling bin under
|
|
//! `src/bin/hivectl.rs`) reuses a thin subset (`forge`, `matrix`,
|
|
//! `lifecycle`) to expose host-side administration verbs — manually
|
|
//! provisioning forge / matrix users for an agent, etc. (#655).
|
|
//!
|
|
//! Every module is re-exported `pub` so anything in the crate is
|
|
//! addressable from either binary; the lib doesn't have a curated
|
|
//! surface beyond "this is where the modules live".
|
|
|
|
pub mod actions;
|
|
pub mod agent_ports;
|
|
pub mod agent_server;
|
|
pub mod agent_sockets;
|
|
pub mod approvals;
|
|
pub mod auto_update;
|
|
pub mod broker;
|
|
pub mod client;
|
|
pub mod container_view;
|
|
pub mod coordinator;
|
|
pub mod crash_watch;
|
|
pub mod dashboard;
|
|
pub mod dashboard_events;
|
|
pub mod events_vacuum;
|
|
pub mod flake_check;
|
|
pub mod forge;
|
|
pub mod lifecycle;
|
|
pub mod limits;
|
|
pub mod loose_ends;
|
|
pub mod manager_server;
|
|
pub mod matrix;
|
|
pub mod meta;
|
|
pub mod migrate;
|
|
pub mod operator_questions;
|
|
pub mod questions;
|
|
pub mod rebuild_queue;
|
|
pub mod reminder_scheduler;
|
|
pub mod scheduled_prompts;
|
|
pub mod scheduled_prompts_worker;
|
|
pub mod server;
|
|
pub mod stats_vacuum;
|
|
pub mod topology;
|