Claude TimeTrack: macOS menu bar app that reads Claude Code JSONL files to auto-track dev time per project

A developer built a macOS menu bar app called Claude TimeTrack that automatically tracks time spent per project by reading Claude Code's session files and git history — no manual timers required. It's open-source (MIT) on GitHub.
How it works
Two data sources, shown side by side:
- Claude mode: parses every JSONL under
~/.claude/projects/, resolves each event to its git repo root, and stitches consecutive events into "sittings." Gaps longer than 15 minutes split sittings, so leaving Claude open overnight doesn't pad your numbers. - Git mode: for each repo, runs
git log --no-merges --pretty=format:%aIfiltered by your globaluser.emailand applies thegit-hoursheuristic — gaps ≤ 2h count as continuous work, longer gaps mark a new session and add a flat 2h for the opening commit. Both thresholds are configurable. Cached per repo by HEAD SHA.
Each project shows both numbers. Tap either to flip the active view.
What you actually see
- Live total in the menu bar
- Today / Week / All-time toggle
- GitHub-style 26-week activity heatmap, aggregated and per-project
- Click any day to drill in (totals, sorting, sessions all scope to that day)
- Stacked breakdown bar of project shares
- Project detail view with last 20 sittings or commit summary
- Missing-data indicator if Claude Code has pruned old session files
Auto-refresh every minute, launch-at-login, and you can hide projects you don't care about.
Caveats
- macOS 14+ only, built in Swift
- No notarized release yet — install via the included build script
- Git mode obviously needs git history; Claude mode needs Claude Code session files
Who it's for
Developers who work on multiple projects in parallel and want automatic, passive time tracking without remembering to start/stop a timer.
📖 Read the full source: r/ClaudeAI
👀 See Also

AIsbf 0.9.8 adds caching, routing improvements, and expanded AI service support
AIsbf 0.9.8 is an API proxy/router that exposes an OpenAI-compatible interface to multiple AI services. This release adds Redis, SQLite, MySQL, and file-based caching, improved semantic routing, and full OAuth2 support for Claude.ai, Amazon Kiro-cli, OpenAI Codex, and Kilo.ai subscribers.

idea-reality-mcp: MCP server checks for existing tools before Claude writes code
A developer built an MCP server called idea-reality-mcp that scans GitHub repos, Hacker News discussions, npm packages, and PyPI before Claude writes any code, returning a 'reality signal' score from 0-100 indicating market competition.

Your Fair Share Tool: Calculate Your Equal Share of Company Profits
A developer built a web tool using Claude Code and Vercel that calculates what your equal share of your employer's annual profits would be based on SEC 10-K filings. The tool shows specific numbers like Apple's $747,000 per employee and NVIDIA's $2.8 million per employee.

Framework for AI Teammates in Slack, Operated Entirely from Claude Code
ginnie-agents is an open-source framework for running autonomous AI agents with Slack identities, three-tier memory, cron routines, and work hours — all configured and operated through Claude Code. Requires Claude Code Max, Docker, Node 22+, and a Slack workspace with app creation permissions.