From b864dd6a7bc924858ac1952780d99af390109783 Mon Sep 17 00:00:00 2001 From: lexis Date: Fri, 10 Jul 2026 12:37:13 +0200 Subject: [PATCH] docs(hivectl): clarify start command restores previously-running agents (follow-up to #1946) --- hive-c0re/src/bin/hivectl.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hive-c0re/src/bin/hivectl.rs b/hive-c0re/src/bin/hivectl.rs index f2b20942..5f4398b7 100644 --- a/hive-c0re/src/bin/hivectl.rs +++ b/hive-c0re/src/bin/hivectl.rs @@ -152,9 +152,12 @@ enum Cmd { no_wait: bool, }, /// Start containers hive-wide — the inverse of `hivectl stop`. Bare - /// `hivectl start` starts everything back up; the same scope flags as - /// `stop` narrow it (`--agents`, `--ci`, `--forge`, `--gateway`, - /// `--matrix`, `--agent `). Requires the hive-c0re daemon. + /// `hivectl start` restores the previously-running agents from the + /// last broad-scope `stop`, or starts everything if no prior stop + /// exists; the same scope flags as `stop` narrow it (`--agents`, + /// `--ci`, `--forge`, `--gateway`, `--matrix`, `--agent `). A + /// targeted `--agent ` start is never filtered. Requires the + /// hive-c0re daemon. Start { #[command(flatten)] scope: ScopeArgs,