Skip to content

Commit 8a06511

Browse files
committed
fix(overview): "Turns" → "Turns left" with ± uncertainty
The emu plugin's turn_estimate is already a FORECAST of remaining turns (per its v0.2 algorithm description: "Token economy monitor + ±CI runway forecast"). The cockpit was showing the raw value as "Turns" which suggests cumulative count — opposite of the meaning. Display now: "Turns left 25 ±3" — uses the (estimate, uncertainty) pair stored in metrics.turns. Matches emu's emission semantics.
1 parent b2d5110 commit 8a06511

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

inspector/src/views/overview.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ fn render_session_metrics(frame: &mut Frame, area: Rect, app: &AppState) {
414414
}
415415
};
416416
let rows = vec![
417-
kv_row("Turns", &format!("{}", m.turns.0)),
417+
kv_row("Turns left", &format!("{} ±{}", m.turns.0, m.turns.1)),
418418
kv_row("Spent", &fmt_money(m.spent_session_usd)),
419419
kv_row("Spend rate", &format!("{}/hr", fmt_money(m.spend_rate_per_hour_usd))),
420420
kv_row("Security", &format!("{}", m.security_incidents_session)),

0 commit comments

Comments
 (0)