← Hacker News

Show HN: LimitBar, a macOS menu bar app showing your Claude usage limits

Hacker News · MikaW · July 3, 2026
LimitBar is a macOS menu bar application that displays Claude API usage limits by polling Anthropic's usage endpoint every 60 seconds, allowing users to monitor their quota without repeatedly accessing the usage interface. Built in native Swift/AppKit as a sub-1 MB binary with no telemetry or external network calls beyond Anthropic's endpoints, the app integrates with existing Claude Code CLI authentication through the system Keychain. The tool costs €2.99 as a one-time purchase on Gumroad and requires macOS 13 or later, a Pro or Max subscription, and the Claude Code CLI to function.

Detailed Analysis

A developer has released LimitBar, a lightweight macOS menu bar utility designed to solve a specific pain point for Claude Code power users: tracking usage limits without repeatedly opening the terminal or clicking through the desktop app's usage wheel. Built natively in Swift/AppKit rather than Electron, the app compiles to a binary under 1 MB and polls Anthropic's existing usage metadata endpoint every 60 seconds—the same endpoint that powers the official `/usage` command and usage wheel—meaning it displays consumption data without invoking a model or spending any tokens itself. The tool authenticates by reusing the existing Claude Code CLI login stored in macOS Keychain, refreshing credentials through Anthropic's official OAuth flow, with an opt-in alternative using a long-lived token file for users wary of Keychain access. It's being sold on Gumroad for €2.99 with a 30-day refund policy, marking the developer's first paid software release.

The underlying frustration driving this project reflects a broader tension in how Anthropic has structured its Claude Code product for Pro and Max subscribers. As usage limits have become more granular—including separate allocations for specific features, referenced in the post as "dedicated Fable limits"—users increasingly need to budget their sessions around consumption caps rather than working freely. This turns usage-awareness into an active, recurring task rather than a passive background concern, which explains why even a simple always-visible menu bar indicator has real utility. The fact that a developer felt compelled to build and monetize a solution to what seems like a minor UX friction point (glancing at usage) speaks to how central limit-management has become to the day-to-day workflow of heavy Claude Code users on subscription tiers, as opposed to API-key users billed by consumption who don't face the same planning constraints.

Technically, the project is notable for its restraint: no Electron, no Node, negligible CPU/RAM footprint, no telemetry or analytics, and no network calls beyond Anthropic's own servers. The developer also ships the source code alongside the installer and compiles it locally on the user's machine, an unusual trust-building measure for a paid indie app, especially one requesting Keychain-adjacent OAuth access to a user's Anthropic account. This transparency is particularly relevant given the sensitivity of the credentials involved—since the tool piggybacks on the Claude Code CLI's authenticated session rather than requiring a separate API key, any auth-handling missteps could have real security implications, which is likely why the developer explicitly solicited feedback on that aspect of the implementation.

More broadly, LimitBar is emblematic of a growing ecosystem of third-party tooling built around Claude Code and Anthropic's developer surfaces—unofficial utilities, wrappers, and dashboards that fill gaps left by official tooling. Because the product depends entirely on an undocumented, unofficial usage endpoint, it carries inherent fragility: any change Anthropic makes to that endpoint could break the app, and the developer acknowledges this risk openly rather than pretending permanence. This dynamic mirrors a common pattern in fast-moving developer platforms, where the core product ships quickly and a long tail of community-built micro-tools emerges to patch UX gaps, often faster than the platform vendor addresses them natively. Whether Anthropic eventually builds this kind of persistent usage-visibility feature into Claude Code itself, as some platforms do with API dashboards, will determine whether tools like LimitBar remain a viable niche business or get absorbed into the core product over time.

Read original article →