@@ -2584,13 +2584,13 @@ def render(self) -> Panel:
25842584 (str (m .metaswarm_children_stale ), "bold #FFD166" ),
25852585 )
25862586 metrics_line_3 = Text .assemble (
2587- ("launches 5m " , "#8D99AE" ),
2587+ ("launch events 5m " , "#8D99AE" ),
25882588 (str (m .subagents_last5m ), "bold #00F5D4" ),
25892589 (" · velocity " , "#8D99AE" ),
25902590 (f"{ m .velocity } /hr" , "bold #FFD166" ),
25912591 (" · peak " , "#8D99AE" ),
25922592 (f"{ m .peak_velocity } /hr" , "bold #FFD166" ),
2593- (" · launches today " , "#8D99AE" ),
2593+ (" · launch events today " , "#8D99AE" ),
25942594 (str (m .spawned_today ), "bold #FF4D6D" ),
25952595 )
25962596 else :
@@ -2704,7 +2704,7 @@ def bar(val: int, max_val: int = 20, width: int = 16) -> Text:
27042704 )
27052705 trend = "▲ trending up" if m .spawned_today > 0 else "—"
27062706 t .add_row (
2707- Text ("Launches today :" , style = "bold white" ),
2707+ Text ("Launch events today :" , style = "bold white" ),
27082708 Text (str (m .spawned_today ), style = "bold #FF4D6D" ),
27092709 Text (trend , style = "#8D99AE" ),
27102710 )
@@ -2753,7 +2753,7 @@ def render(self) -> Panel:
27532753 Text (str (m .sessions_month ), style = "bold #B388FF" ),
27542754 )
27552755 t .add_row (
2756- Text ("Launches " , style = "bold #7CFF6B" ),
2756+ Text ("Launch events " , style = "bold #7CFF6B" ),
27572757 Text (str (m .spawned_today ), style = "bold #FFD166" ),
27582758 Text (str (m .spawned_week ), style = "bold #00F5D4" ),
27592759 Text (str (m .spawned_month ), style = "bold #B388FF" ),
@@ -2765,7 +2765,7 @@ def render(self) -> Panel:
27652765 t2 .add_column (justify = "left" )
27662766 t2 .add_column (justify = "left" )
27672767 t2 .add_row (
2768- Text ("14d launches " , style = "bold #7CFF6B" ),
2768+ Text ("14d launch events " , style = "bold #7CFF6B" ),
27692769 Text (sparkline (daily_agents , width = 14 ), style = "#7CFF6B" ),
27702770 )
27712771 t2 .add_row (
@@ -2884,7 +2884,7 @@ def render(self) -> Panel:
28842884 Text (sparkline (sessions , width = 24 ), style = "#7CFF6B" ),
28852885 )
28862886 grid .add_row (
2887- Text ("launches (5m)" , style = "bold #FFD166" ),
2887+ Text ("launch events (5m)" , style = "bold #FFD166" ),
28882888 Text (sparkline (launches , width = 24 ), style = "#FFD166" ),
28892889 )
28902890 return Panel (grid , border_style = "#B388FF" , title = "[bold #FF4D6D]🔥 HEATMAP + SIGNAL[/]" )
0 commit comments