Use the HIDE pill on a connection to drop it from totals, cards, and tasks — hidden connections are also skipped on every poll (no upstream API calls).
Hide a project (Git repo) to keep its Claude Code tasks out of the UPDATES view and the project list. Only projects seen in the latest poll are listed.
For the claude-web source: open claude.ai while logged in,
press F12 → Application / Storage →
Cookies → https://claude.ai → find sessionKey
and copy its value. Paste it into the field above. The cookie expires every couple of weeks —
when you see account_session_invalid in PROBE, refresh the cookie the same way.
The webhook provider expects a JSON response like
{ "today": { "cost": 1.23 }, "month": { "cost": 9.87 }, "rate": { "perHour": 0.05 }, "lastActivityAt": "2025-05-13T10:00:00Z" }.
Use it to bridge any tool you can scrape on your own. lastActivityAt may be an ISO string or epoch (ms / seconds).
New providers are plug-and-play: drop a module into
src/providers/ that exports
{ type, name, fields, fetchUsage }
and register it in src/providers/index.js.