Claude Counter: Android app tracks Claude usage limits with real-time notifications

A developer has built Claude Counter, a lightweight Android app that tracks Claude usage limits in real-time by polling the Claude API. The app was created specifically for Claude users who want to monitor their message allowances without waiting for warning pop-ups.
How it was built
The developer used Claude via the Antigravity agentic coding assistant to build the entire app from scratch. Claude translated the logic from an open-source browser extension into a native Kotlin Android app with Jetpack Compose. Claude handled the WebView authentication flow, reverse-engineered the API polling intervals, and built the background foreground service and custom notification UI.
Key features
- Live Dashboard: Shows 5-Hour Session and 7-Day Weekly limits as progress bars
- Rich Notifications: Android notification shade displays horizontal bar graphs with exact percentage and time remaining without opening the app
- Background Polling: Service checks the
claude.ai/api/organizations.../usageendpoint every 2 minutes - Alerts: Notifies users the exact moment their session or weekly limit resets
- Local Only: Users log into Claude securely via an embedded WebView, with the app running locally on the device and pulling the session cookie (no middleman servers)
Technical details
The app is completely free and open source with no paid tiers, ads, or tracking. The developer has uploaded the full source code and compiled APK to GitHub for verification. The app uses a WebView for authentication and runs entirely locally on the device.
📖 Read the full source: r/ClaudeAI
👀 See Also

alogin: A Go-based Security Gateway for AI Agents with Human-in-the-Loop
alogin is an open-source Go-based security gateway that provides a secure conduit between AI agents and infrastructure, featuring built-in MCP server support for Claude Desktop, human-in-the-loop safety rails, and encrypted credential storage.

Claude Sessions: Lightweight Desktop App for Browsing Claude Code History
Claude Sessions is a new desktop application that lets developers browse their Claude Code session history locally. It reads from ~/.claude/projects, organizes sessions by project, handles large sessions up to 500k+ tokens without lag, and includes search functionality and keyboard navigation.

AI-Setup CLI Tool Automatically Generates AI Configuration Files for Local LLM Stacks
AI-Setup is a CLI tool that scans codebases and automatically generates AI configuration files like .cursorrules and claude.md. It detects your stack to eliminate manual rule writing for each new project.

Local AI VS Code extension blocks insecure code generation during saves
A developer built a VS Code extension that runs llama3.1:8b-instruct-q4 locally to intercept saves, map source-to-sink execution flows, and block AI-generated insecure code like CWE-117 Log Injection vulnerabilities.