diff --git a/hive-agent/src/state_entry_watch.rs b/hive-agent/src/state_entry_watch.rs index dadc4728..33ffa2c5 100644 --- a/hive-agent/src/state_entry_watch.rs +++ b/hive-agent/src/state_entry_watch.rs @@ -95,9 +95,10 @@ fn summary_for(count: u64) -> Option { let bucket = count / BUCKET * BUCKET; Some(format!( "your state dir has {bucket}+ entries at the top level — worth a look if it's \ - gotten unwieldy, no pressure. Splitting a long-lived file into dated pieces or \ - moving one-off scratch out of the top level are both fine ways to trim it; \ - nothing here is a hard limit and nothing gets deleted for you." + gotten unwieldy, no pressure. Grouping related top-level entries into subdirectories \ + is what actually lowers this count; nothing here is a hard limit and nothing gets \ + deleted for you. No need to act on this now — leave the todo open and come back to \ + it whenever." )) }