From 4407967a2fed24391ba7024788111b8254fb2303 Mon Sep 17 00:00:00 2001 From: damocles Date: Fri, 26 Jun 2026 22:13:52 +0200 Subject: [PATCH] fix(#2018): reword tracker tag in agent_exists doc comment to prose (tracker-tag lint) --- hive-c0re/src/bin/hivectl.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hive-c0re/src/bin/hivectl.rs b/hive-c0re/src/bin/hivectl.rs index 90ea17f9..c3a91d99 100644 --- a/hive-c0re/src/bin/hivectl.rs +++ b/hive-c0re/src/bin/hivectl.rs @@ -941,7 +941,8 @@ fn human_bytes(n: u64) -> String { /// silently report `false`, which callers turn into a misleading "no /// such agent" (or, for the create-user paths, a silent misclassify of /// a real agent as a non-agent account). Mapping EACCES to an explicit -/// "needs root" error fixes that first-run footgun (#2018). +/// "needs root" error fixes that first-run footgun, where running a +/// privileged verb without sudo reported as a missing agent. fn agent_exists(name: &str) -> Result { let root = Coordinator::agent_state_root(name); match root.try_exists() {