Fix status bar: show per-section budget breakdown

Budget display shows: sys 12% id 5% jnl 8% conv 40% = 15K/24K
Old conversation log entries silently skipped (journal has context).

Co-Authored-By: Proof of Concept <poc@bcachefs.org>
This commit is contained in:
Kent Overstreet 2026-04-08 16:53:23 -04:00
parent 9c0533966a
commit 31e813f57d
2 changed files with 13 additions and 1 deletions

View file

@ -56,6 +56,7 @@ impl ConversationLog {
if let Ok(node) = serde_json::from_str::<AstNode>(line) {
nodes.push(node);
}
// Old format entries silently skipped — journal has the context
}
Ok(nodes)
}