Hardware widget and Chrome extension monitor Claude API rate limits

What this is
A developer created a hardware widget and Chrome extension combination to monitor Claude's API rate limits in real time, eliminating the need to rely on Claude's rate limit banner notifications.
Key details from the source
The solution consists of two components:
- Chrome extension: Intercepts Claude's internal /usage API, shows a live badge on the browser icon, and tracks a 14-day hourly heatmap of usage patterns. The extension works standalone without the hardware component.
- Hardware widget: Uses an ESP8266 microcontroller with an OLED display that counts down to the rate limit reset window in real time, even with the browser closed. The NodeMCU polls Claude's API directly.
The system architecture includes:
- The Chrome extension silently handles session cookie rotation in the background
- The hardware widget provides continuous monitoring independent of browser state
- Total bill of materials cost: approximately ₹550 (~$6.50 USD)
The project is available on GitHub at github.com/acervenky/over-engineered-claude-usage-monitor.
📖 Read the full source: r/ClaudeAI
👀 See Also

Local Trello-Style Project Manager for OpenClaw Agents
A developer built a local Trello-like project management tool that runs on the same machine as their OpenClaw agent, storing cards as markdown files with YAML frontmatter. The system uses Node.js/Express for the API, React for the UI, and allows the AI agent to read/write files directly on the filesystem.

mcp-optimizer reduces token waste from idle MCP servers in Claude Code
mcp-optimizer is a plugin that addresses token waste from MCP servers in Claude Code by analyzing tool usage and generating optimized configurations. It includes four utilities: mcp-doctor for server health checks, mcp-audit for usage analysis, mcp-optimize for creating project-local configs, and mcp-to-skills for converting tools to on-demand Skills.

Lobster Cage: Dockerized Security Environment for Self-Hosting OpenClaw on Raspberry Pi
A developer built Lobster Cage, a Docker Compose environment with restricted outbound access and proxy-based routing to run OpenClaw securely on a Raspberry Pi for experimentation.

Infracost cuts Claude token usage 79% by redesigning CLI for AI agents
Infracost redesigned its CLI for AI agent callers, cutting Claude output tokens by 79% and API cost by 67% vs a bare-Claude baseline. Key moves: predicate pushdown into the CLI and a token-efficient output format.