Claude Pulse Browser Extension Surfaces Token Counts, Cache Timers, and Rate Limits on Claude.ai

Frustrated by hitting the 5-hour limit mid-conversation with no visibility into token or context usage, a developer built Claude Pulse — a Chrome extension that adds a small dashboard to claude.ai.
Key Features
- Real-time token counts per message and total context used
- Prompt cache window timer showing when caching is about to expire
- Rate limit progress bar tracking usage against limits
- Chat export to Markdown format without copy-pasting
All processing is client-side — no data leaves your browser. Token counts are approximations using a tiktoken-style method since Anthropic doesn't expose exact numbers in the UI; the developer estimates error within a few percent.
Open Source & Future Plans
Source available on GitHub: samirpatil2000/claude-pulse. The author describes it as "rough around the edges" and is considering adding per-conversation cost estimates, but is unsure if that would be useful or just noise.
📖 Read the full source: r/ClaudeAI
👀 See Also

Tredict MCP Server Enables Claude to Create and Push Training Plans to Sports Watches
A developer built a Tredict MCP Server for Claude.ai and Claude Code that creates complex endurance training plans via prompts and automatically uploads structured workouts to Garmin, Coros, Suunto, and Wahoo watches. The server includes an MCP App for visual feedback within Claude chat.

GoModel: A Lightweight Open-Source AI Gateway Written in Go
GoModel is an open-source AI gateway that provides a unified OpenAI-compatible API for multiple providers including OpenAI, Anthropic, Gemini, Groq, xAI, and Ollama. It features a 17MB Docker image, 44x smaller than LiteLLM, with environment-variable-first configuration and built-in observability.

OpenClaw A2A Plugin: Delegate Work to Remote Agents and Replay Continuation State
A new open-source plugin adds the `remote_agent` tool to OpenClaw, enabling cross-agent delegation with A2A protocol support and continuation state replay.

Sponsio: Deterministic Guard Rails for OpenClaw — Blocking 'Legal but Wrong' Tool Calls
Open-source tool that sits at the tool boundary, evaluating each call with temporal logic contracts (~0.14ms p50). Prevents agents from editing files outside the working directory, force-pushing, or running migrations against the wrong database.