docs: drop stale hive-m1nd references (single hive binary)

This commit is contained in:
damocles 2026-06-10 19:45:08 +02:00 committed by mara
commit 0c1c06ad76
5 changed files with 10 additions and 10 deletions

View file

@ -28,8 +28,7 @@ const TOKEN_RETRY_SECS: u64 = 30;
/// Avoids an infinite wait on agents that genuinely have no forge account.
const TOKEN_RETRY_MAX: u32 = 20;
/// Spawn point: called once from `hive-ag3nt serve` (agent) or
/// `hive-m1nd serve` (manager). Returns immediately if the forge is not
/// Spawn point: called once from `hive serve`. Returns immediately if the forge is not
/// configured. Otherwise loops forever, polling every
/// `POLL_INTERVAL_SECS` seconds. Errors are never fatal.
///

View file

@ -1,5 +1,6 @@
//! Shared in-container harness code used by both `hive-ag3nt` (agent) and
//! `hive-m1nd` (manager) binaries.
//! Shared in-container harness code for the single `hive` binary that
//! serves every agent role (the manager is just an agent role, not a
//! separate binary).
pub mod client;
pub mod events;

View file

@ -1,7 +1,7 @@
//! Helpers shared between `hive-ag3nt` (agent) and `hive-m1nd` (manager)
//! serve loops. Only pure functions with no wire-type dependency live here;
//! Pure helpers factored out of the `hive` serve loop (`bin/hive.rs`).
//! Only functions with no wire-type dependency live here;
//! request/response-flavored helpers (`requeue_inflight`, `ack_turn`, etc.)
//! stay in each binary because they use different request enum variants.
//! stay in the binary because they touch the request enum variants directly.
use crate::events::Bus;
use crate::mcp::REDELIVERY_HINT;