| summary | Refresh cadence, background updates, and error handling. | ||
|---|---|---|---|
| read_when |
|
RefreshFrequency: Manual, 1m, 2m, 5m, 15m, 30m, Adaptive (fresh-install default), and Adaptive (agent-aware).- Stored in
UserDefaultsviaSettingsStore. An unset cadence resolves to Adaptive only when no prior-launch marker or existing config is present, and the resolved value is persisted immediately. Existing installations without a stored cadence and unrecognized stored values resolve to the legacy 5-minute fallback. Every valid stored choice, including Manual and each fixed interval, remains unchanged.
- Background refresh runs off-main and updates
UsageStore(usage + credits + optional web scrape). - Manual “Refresh now” always available in the menu.
- Stale/error states dim the icon and surface status in-menu.
- Optional provider-storage scans run only when “Show provider storage usage” is enabled. They are scheduled in the background, coalesced/throttled during automatic refreshes, and forced by manual refresh without blocking the usage refresh path.
-
AdaptiveRefreshPolicy(Sources/CodexBar/AdaptiveRefreshPolicy.swift) is a pure function of anInput(current time, last menu-open time, latest local coding-activity time, Low Power Mode, thermal state) that returns the next delay and a stableReason. It reads no clock and noProcessInfostate itself;UsageStore.startTimer()gathers those impure signals immediately before each tick. -
Policy table, first match wins:
Condition Delay Reason Low Power Mode enabled, or thermal state .serious/.critical30 min constrainedMenu opened at most 5 min ago (including future/clock-adjusted timestamps) 2 min recentInteractionMenu opened more than 5 min and at most 1 h ago 5 min warmLocal Codex or Claude transcript activity observed less than 5 min ago, when the menu rule would be slower 5 min codingActivityMenu opened 1–4 h ago 15 min idleNo recorded menu open, or opened 4+ h ago 30 min longIdle -
Every decision falls in the 2–30 min range by construction. Deliberately excludes quota, latency, error, account, and time-of-day signals.
-
UsageStoretrackslastMenuOpenAtandlastCodingActivityAtin memory only (never persisted; both reset on launch). A menu open can bring either adaptive mode forward. A newer local activity observation can affect only Adaptive (agent-aware); it never affects plain Adaptive, postpones an earlier tick, or refreshes synchronously. -
Adaptive (agent-aware) reuses
LocalAgentSessionScannerevery 30 seconds only after the user allows local coding activity. The persistedadaptiveActivityScanConsentvalue isundecided,allowed, ordeclined; missing or invalid values are repaired toundecided, which never authorizes a scan. Declining selects plain Adaptive; explicitly selecting the agent-aware option again asks again. -
An allowed scan runs
ps -axo ... command=to inspect the running-process list and identify Codex/Claude, then runslsofwhen needed and enumerates known session metadata only when an agent process is detected. It then reads recent Codex rollouts, reads rollout first-line metadata and mtimes, and inspects Claude transcript metadata. When the Agent Sessions UI is off, CodexBar discards the resulting session records and retains only the latestDate. Each scan considers at most 64 agent processes, parses at most 128 Codex rollout metadata records, keeps at most 64 Claude transcript candidates per project, and shares a 512-entry, depth-1, 150 ms agent-aware directory metadata budget. Future transcript mtimes are clamped to one scanner-lifetime timestamp. The clamp retains no file paths, and unchanged future-dated files cannot manufacture newer activity every 30 seconds. Agent-aware scans pause under Low Power Mode and serious/critical thermal pressure. Explicitly enabling Agent Sessions continues to authorize its local scan independently of the Adaptive consent choice. Tailscale discovery and SSH remain behind the Agent Sessions setting. The activity timestamp is not persisted, logged, or uploaded, and it is cleared when consent is revoked. -
Each adaptive tick recomputes the delay after the previous refresh completes, sleeps, then calls the same
UsageStore.refresh()used by fixed-interval mode, so the existingisRefreshingcoalescing guard still applies — only one provider-batch refresh runs at a time regardless of cadence mode. -
Selected delay and reason are logged (e.g.
reason=warm delay=300sin theadaptive-refreshcategory) through the existing local logger; never provider identity, account, email, workspace, path, credentials, or response data. -
Interval-derived heuristics (reset-boundary refresh, OpenAI web staleness, persistent-CLI-session idle windows) read
UsageStore.normalRefreshIntervalForHeuristics(), which resolves adaptive mode to the current decision's delay — they stay active in adaptive mode rather than degrading to manual, whose interval is nil.
- Auto-seed a log if none exists via
codex exec --skip-git-repo-check --json "ping"(currently not executed).
See also: docs/status.md, docs/ui.md.