Free macOS Menu Bar App Shows Real-Time Claude Usage Stats via SQLite Cookie Decryption

Claude Usage Tracker is a free macOS menu bar app that shows real-time Claude usage stats — including session percentage, weekly limit, monthly spend, and routine runs — without requiring an API key or manual token setup.
How It Works
The app reads Claude desktop app's encrypted SQLite cookie database, decrypts the session key via macOS Keychain, then hits Claude's internal usage API. Everything stays local — no data is sent anywhere.
Features
- Live session % in menu bar with color changes (green → yellow → red) as you approach limits.
- Dropdown shows: session reset countdown, weekly %, monthly spend vs budget, routine runs (x/5), and design limit %.
- Local web dashboard at
localhost:8080with charts and CSV export. - Auto-syncs every 2 minutes by reading Claude desktop app session.
- Notifications at 25%, 50%, 75% session usage.
Setup
Three commands:
git clone https://github.com/divaaker/claude-usage-tracker
cd claude-usage-tracker
pip3 install -r requirements.txt && cp override.example.json override.json && bash run.sh
Requirements
macOS only (uses Keychain + rumps menu bar framework). The source is open for forks and PRs — the author welcomes auto-launch on login or a notification center widget contributions.
📖 Read the full source: r/ClaudeAI
👀 See Also

Argus: A VS Code Extension to Debug Claude Code Session Costs and Behavior
A developer built Argus, a VS Code extension that parses Claude Code JSONL transcripts into a real-time timeline with per-step token/cost breakdown, cache hit ratio, and flagging of retry loops, duplicate reads, and context pressure.

MemAware benchmark shows RAG-based agent memory fails on implicit context retrieval
The MemAware benchmark tests whether AI agents can surface relevant past context when users don't explicitly ask for it, revealing that current memory systems score only 2.8% accuracy on hard implicit queries versus 0.8% with no memory.

devcontainer-mcp: Give AI Agents Their Own Dev Environment, Not Yours
devcontainer-mcp is an MCP server that exposes 45 tools for AI agents to create, manage, and work inside dev containers backed by Docker, DevPod, or GitHub Codespaces — keeping host machines clean.

Tocket CLI: A Context Engineering Framework for AI Coding Agents
Tocket is a CLI tool that creates a .context/ folder with markdown files for AI agents to maintain project memory across sessions. It auto-detects tech stacks from package.json and generates a pre-configured .cursorrules file.