From 465dd2d433b0d39ed79b54df1c2f90b20ff2eaa4 Mon Sep 17 00:00:00 2001 From: atlas Date: Fri, 19 Jun 2026 00:33:28 +0200 Subject: [PATCH] hivectl: note that stop --graceful is not yet effective Until the per-agent quiesce lands, --graceful falls through to a hard stop. Help-text the limitation so an operator passing the flag isn't misled into thinking the agent quiesced. --- hive-c0re/src/bin/hivectl.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hive-c0re/src/bin/hivectl.rs b/hive-c0re/src/bin/hivectl.rs index 40a9c81e..1fe74ed1 100644 --- a/hive-c0re/src/bin/hivectl.rs +++ b/hive-c0re/src/bin/hivectl.rs @@ -113,6 +113,11 @@ enum Cmd { scope: ScopeArgs, /// Gracefully quiesce each agent (finish the current turn, drain /// the inbox) before stopping, instead of a hard stop. + /// + /// NOTE: not yet effective — the per-agent quiesce is still being + /// implemented (see the graceful-agent-stop tracker), so today + /// this falls through to a hard stop. The flag is accepted now so + /// the wire/CLI shape is stable when the quiesce lands. #[arg(long)] graceful: bool, /// Path to the hive-c0re host admin socket.