A lightweight desktop app for monitoring Claude.ai usage limits in real time. Built with Tauri v2, Rust, and React.
- Live usage bars — live usage bars for your 5-hour, 7-day, and 7-day Sonnet limits
- Reset time tooltip — hover the relative reset time to see the exact date and time
- System tray — compact tray menu with usage summary, one-click refresh, and last-updated timestamp, always synced with the main window
- Background polling — automatic background polling with a configurable interval
- Desktop notifications — rule-based alerts for usage thresholds, spikes, resets, and recoveries
- ntfy support — push notifications to any ntfy server using the same rule system
- HTTP API server — optional local (or network-accessible) REST API for reading usage data, triggering refreshes, and querying settings from scripts and external tools
- Minimize to tray — close button hides the window; the app keeps running in the background
- Launch at startup — register as a login item on all platforms
- Credential security — session key stored in the OS keychain (Windows Credential Manager, macOS Keychain, libsecret on Linux), never written to disk in plain text
- Minimal footprint - built with Tauri instead of Electron
Download the latest release for your platform from the Releases page:
| Platform | File |
|---|---|
| Windows | .msi or .exe installer |
| macOS | .dmg (universal — Apple Silicon + Intel) |
| Linux | .deb or .AppImage |
- Open Claude.ai in your browser and sign in
- Open DevTools → Application → Cookies → find
sessionKey - Copy the value and paste it into Claudeometer when prompted
The session key is saved to your OS keychain and never stored anywhere else.
Want to leave usage monitoring running on a server — so a coding agent can
curl its usage before doing more work and stop cleanly instead of getting
cut off — without the desktop app? claudeometer-service is a small
standalone binary for exactly that:
curl -fsSL https://raw.githubusercontent.com/Antoinenz/Claudeometer/main/scripts/install.sh | sh
claudeometer-service login <your-session-key>
claudeometer-service installThree commands, and it's running in the background (systemd on Linux, a
LaunchAgent on macOS, a Windows service on Windows) serving GET /usage on
http://127.0.0.1:7842. claudeometer-service status gives a quick terminal
glance any time. See docs/SERVICE.md for the full CLI and
API reference.
Prerequisites: Rust (stable), Node.js (LTS), platform WebView runtime (WebView2 on Windows, pre-installed on macOS/Linux)
# Install dependencies
npm install
# Run in dev mode (hot-reloads both Vite and Tauri)
npm run tauri dev
# Build a production bundle
npm run tauri buildSee docs/DEVELOPER.md for architecture details, the full Tauri event system, and the complete API server reference.
Rules are edge-triggered — each rule fires once per crossing rather than on every poll:
| Type | Fires when |
|---|---|
| Threshold | Usage rises above a set percentage |
| Spike | Usage jumps by more than a set amount between polls |
| Reset soon | A window is within a set time of resetting |
| Recovery | Usage falls back below a set percentage |
Both desktop notifications and ntfy push notifications are supported, each with their own independent rule sets.