From cc73bc7cd01a81e80fc2d5851c17d13ef87f269a Mon Sep 17 00:00:00 2001 From: damocles Date: Fri, 26 Jun 2026 23:44:38 +0200 Subject: [PATCH] fix(#2030): point pending-login warning at the dashboard, not a nonexistent hivectl login verb --- hive-c0re/src/host_stats.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive-c0re/src/host_stats.rs b/hive-c0re/src/host_stats.rs index 712e5568..819c90d0 100644 --- a/hive-c0re/src/host_stats.rs +++ b/hive-c0re/src/host_stats.rs @@ -99,7 +99,7 @@ pub fn agent_state_warnings( level: "warn", message: format!( "{n} agent{plural} {verb} claude login: {list} \ - — run `hivectl login ` to authenticate", + — open the agent's page in the dashboard to complete the login", n = pending.len(), plural = if pending.len() == 1 { "" } else { "s" }, verb = if pending.len() == 1 { "needs" } else { "need" },