← DASHBOARD
SETTINGS
INSTALLED

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).

ADD A SOURCE
PROJECTS

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.

PREFERENCES
How often the dashboard polls for fresh data. Shorter = snappier, longer = lighter on the upstream APIs. Takes effect on the next dashboard load.
CLAUDE.AI COOKIE — HOW TO

For the claude-web source: open claude.ai while logged in, press F12Application / StorageCookieshttps://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.

WEBHOOK FORMAT

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.