onWatch: Open-source local API quota tracker with SQLite storage

onWatch is an open-source tool for tracking AI API quotas locally, designed specifically for the local-first software community. It keeps all data on your machine with no external dependencies.
Key Details
The tool's local-first approach includes:
- All data stored in local SQLite database
- No cloud service, no account creation, no telemetry
- Single binary (~13MB) - no runtime dependencies
- Background daemon, <50MB RAM usage
- Dashboard served locally on localhost
onWatch currently tracks 6 cloud API providers: Anthropic, Codex, Copilot, Synthetic, Z.ai, and Antigravity. This is useful for developers who use cloud APIs alongside local models and want visibility into their cloud spending.
The developer mentions potential future features including local model monitoring, such as ollama resource usage and VRAM tracking, if there's community interest.
The tool is available on GitHub at https://github.com/onllm-dev/onwatch.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Benchmarking 88 Small GGUF Models on a 16GB Mac Mini M4
An automated pipeline tested 88 GGUF models on a Mac Mini M4 with 16GB RAM, identifying 9 as unusable and 4 LFM2-8B-A1B MoE models on the Pareto frontier for speed and quality.

Agent Image Skills: Simple Image Hosting for Claude Code Agents
A developer built a simple image hosting service at https://images.labnocturne.com to solve the problem of Claude Code agents generating images with nowhere to store them. The service provides instant test keys via curl, auto-deletes files after 7 days, and includes Claude Code MCP skills for upload, file listing, and deletion.

MCP + Skills Framework: Guiding AI Agents for Efficient Data Science Workflows
A practical approach using MCP server + skills framework to constrain Claude/GPT agents toward platform-aware, efficient data science workflows — avoiding client-heavy code and unnecessary data movement.

Open-source Go port of Claude Code CLI released as claw-code-go
Developer dolm09 has released claw-code-go, a full Go port of the Claude Code CLI with a self-contained binary under 10K lines of code. The project includes a TUI with bubbletea, multi-provider support, MCP client, and tool execution engine.