diff --git a/hive-subagent-mcp/src/session.rs b/hive-subagent-mcp/src/session.rs index ee8bb91c..dcb5367b 100644 --- a/hive-subagent-mcp/src/session.rs +++ b/hive-subagent-mcp/src/session.rs @@ -1630,11 +1630,18 @@ pub fn status(state: &State, name: &str, dir: Option<&str>) -> anyhow::Result) -> anyhow::Result) -> String { match age { None => String::new(), - Some(age) => format!( - " Last event {}s ago — how long since this turn's claude process produced any output \ - at all, whatever it was: a few seconds means it's working, an age that keeps \ - climbing into the minutes means it's wedged. It resets at each turn's spawn, so on a \ - goal run it describes the turn in flight, not the run.", - age.as_secs() - ), + Some(age) => format!(" Last event {}s ago.", age.as_secs()), } }