namespace ClaudeDo.Worker.Usage.Interfaces;
///
/// Tells the usage monitor whether ClaudeDo is currently burning tokens, so it can poll
/// often while work is in flight and back off to a slow heartbeat while idle.
///
public interface IRunningTaskProbe
{
Task AnyRunningAsync(CancellationToken ct = default);
}