The file /Users/neog/Apps/macOS/NEOGHub/NEOGCommand/Services/Monitoring/ConsumptionTracker.swift has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 36→ // History 37→ @Published var consumptionHistory: [ConsumptionDataPoint] = [] 38→ @Published var recentActivities: [ConsumptionActivity] = [] 39→ 40→ // Live session (real-time from cc-live-tracker.py) 41→ @Published var liveSessionId: String? 42→ @Published var liveSessionActive: Bool = false 43→ @Published var liveSessionCost: Double = 0 44→ @Published var liveSessionDurationSeconds: Double = 0 45→ 46→ // MARK: - Private Properties 47→ 48→ private var monitoringTask: Task? 49→ private var liveSessionTask: Task? 50→ private var rateCalculationTimer: Timer? 51→ private var historyTimer: Timer? 52→ private var cancellables = Set() 53→ 54→ private let ccService = CCTrackingService() 55→ private var lastCostSnapshot: Double = 0 56→ private var lastSnapshotTime: Date = Date() 57→ private var lastLiveSessionUpdate: Date? 58→ 59→ // Token pricing (Claude Opus 4.5) 60→ private let inputTokenPrice: Double = 15.0 / 1_000_000 // $15 per 1M 61→ private let outputTokenPrice: Double = 75.0 / 1_000_000 // $75 per 1M