Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Claude Watch

Monitor Claude Code sessions, subagents, and tasks in real-time

platform License: MIT


The Problem

When using Claude Code, it's hard to know what's happening:

  • Is Claude still working, or did it finish?
  • How many subagents are running in parallel?
  • What is each one doing?
  • Which tasks are completed?

You're left checking the terminal or scrolling through logs to understand the current state.

Claude Watch is a menu bar app that provides a real-time dashboard, showing all active projects, subagents, and tasks at a glance.

Claude Watch Demo

Features

Feature Description
Menu Bar Integration Always accessible from the menu bar
Auto-Detection Automatically detects Claude Code sessions
Subagent Tracking See all parallel subagents and their status
Task Progress View task checklist with completion status
Multi-Project Monitor multiple projects simultaneously
Session Status Real-time session indicator via Claude Code hooks
Notifications macOS notifications when sessions complete
Terminal Selection Choose your preferred terminal app (Terminal, iTerm2, Ghostty, Warp, Kitty, Alacritty)
Zero Configuration Just launch and it works

Requirements

  • macOS 15.0 Sequoia or later
  • Xcode 16.0 or later (for building)

Building

# First-time Xcode setup (if needed)
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -license accept

# Clone and build
git clone https://github.com/sooink/claude-watch.git
cd claude-watch
xcodebuild -scheme ClaudeWatch -configuration Release CONFIGURATION_BUILD_DIR=build build

# Run
open build/ClaudeWatch.app

First Launch (macOS Sequoia+)

The app is unsigned. On first launch:

  1. Open ClaudeWatch.app
  2. macOS will block it
  3. Go to System Settings → Privacy & Security
  4. Click Open Anyway
  5. Enter your password

Or run in Terminal:

xattr -cr build/ClaudeWatch.app

How It Works

Claude Watch monitors ~/.claude/projects/ for session files:

~/.claude/projects/
└── {project-hash}/
    ├── {sessionId}.jsonl              # Main session log
    └── {sessionId}/
        └── subagents/
            └── agent-{agentId}.jsonl  # Subagent logs

When Claude Code runs, it writes activity logs that Claude Watch parses in real-time to show:

  • Projects — Grouped by working directory
  • Subagents — Created via Task tool, with running/completed status
  • Tasks — Created via TaskCreate, with pending/in_progress/completed status

Status Indicators

Menu Bar

Icon Status Description
Stopped Claude Code not detected
● (gray) Watching Claude Code detected, waiting for activity
● (blue) Active Active session with projects
●3 Active Number indicates running subagents
  • Left-click — Toggle main window
  • Right-click — Show menu (Settings, About, Quit)

Window

  • Titlebar — Current watch state with pulse animation when watching
  • Project cards — Click to expand/collapse details
  • Right-click menu — Open in Terminal, Copy Path

Hook Integration (CLI Only)

Claude Watch can integrate with Claude Code CLI hooks for enhanced session tracking:

Feature Description
Session Indicator Green blinking dot when Claude is working
Completion Notifications macOS notification when session ends
One-Click Setup Toggle enables hook — script installed automatically

Setup

  1. Open Settings (right-click menu bar icon)
  2. Enable Hook Integration — this installs the hook script to ~/.claude/hooks/
  3. Optionally enable Notifications

CLI vs VSCode Extension

Feature CLI VSCode Extension
Subagent/Task Detection
Session Status (Hook)
Completion Notifications

Note: VSCode Claude Code Extension does not support hooks (Issue #16114). Session detection and notifications only work with the CLI.

About

macOS menu bar app that shows what Claude Code's parallel subagents are doing. See running agents, task progress, and project status at a glance without scrolling through terminal logs.

Topics

Resources

Stars

5 stars

Watchers

0 watching

Forks

Releases

Contributors

Languages