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;

View file

@ -1,7 +1,7 @@
//! Resolve the on-disk path to hyperhive's static assets (branding +
//! claude prompts). Single source of truth for both the host daemon
//! (`hive-c0re`) and the in-container harness (`hive-ag3nt` /
//! `hive-m1nd`) so they agree on the lookup contract.
//! (`hive-c0re`) and the in-container harness (the `hive` binary) so
//! they agree on the lookup contract.
//!
//! At runtime, the path is read from `$HIVE_ASSETS_DIR`. In nix
//! builds that env var is set by the `hive-c0re` / `harness-base` modules

View file

@ -15,7 +15,7 @@
# agents that already imported this file via
# `pkgs.callPackage ../packages/hive-forge-tools.nix { }` keep
# working, getting only the verb they need on PATH (not the full
# `hive-c0re` / `hive-ag3nt` / `hive-m1nd` surface).
# `hive-c0re` / `hive` surface).
#
# Requires the hyperhive overlay (see `flake.nix`'s `overlays.default`)
# so `pkgs.hyperhive` resolves.