Adds a Usage Monitor modal (Worker menu + wired to the footer/Mission-Control usage pill's Open command): dynamic gauges built from UsageSnapshotDto.Limits with gate-threshold marks, a stale/blocked-gate band, and Models/Tasks tabs backed by GetModelUsageAsync/GetTaskUsageAsync over a 7d/30d/custom range.
9 lines
180 B
C#
9 lines
180 B
C#
using Avalonia.Controls;
|
|
|
|
namespace ClaudeDo.Ui.Views.Modals;
|
|
|
|
public partial class UsageMonitorModalView : Window
|
|
{
|
|
public UsageMonitorModalView() => InitializeComponent();
|
|
}
|