List active Claude sessions for the current user with their state.
Project description
claude-busy-monitor
Live view of your Claude Code sessions on your machine: which one is busy, which one is asking for your input, which one is idle (with cumulative token totals).
Ships as a claude-busy-monitor command and a Python library (get_sessions(), get_state_counts()).
1. Why
When you run many Claude Code sessions in parallel, keeping an overview of their states is a job in itself. You want every session working; every minute it isn't is time you don't get back:
- A busy session is the productive one; Claude is doing the work you asked for.
- An idle session is waiting for your next prompt; feed it.
- An asking session is fully stalled on a menu (most often a permission prompt); answer it to unstuck Claude.
claude-busy-monitor surfaces the asking sessions instantly so they don't sit there burning your wall-clock.
2. Scope
What it sees and does:
- Local Claude Code sessions of the running user.
- Their live state (
busy/asking/idle) and cumulative token totals.
What it deliberately does not do:
- No API calls: works entirely from local files; no quota burn, no auth needed.
- No web or desktop sessions: those don't write the local probe files this tool reads.
- No mutation, no daemon, no IPC: read-only, ephemeral, nothing to start or supervise.
3. Features
| Feature | What it gives you |
|---|---|
| Authoritative state | status comes straight from Claude Code's own probe files; no race-prone proxies. |
| Cache-aware token totals | Sums all four usage categories (fresh, cache-create, cache-read, output). Naïvely counting only input_tokens underreports by ~10× on cached prompts. |
| Summary at a glance | Coloured pill counts on the first line; scannable from across the room. |
watch-friendly |
Stable, line-oriented output; no spinners, no cursor-move escapes. |
| Zero configuration | Nothing to set up; reads only files Claude Code already writes. |
4. Install
Python 3.11+ is the only prerequisite.
4.1. As a command (most users)
pipx install claude-busy-monitor
# or, with uv:
uv tool install claude-busy-monitor
Both put claude-busy-monitor in ~/.local/bin/ inside an isolated per-tool venv; no risk to system Python, clean uninstall. If you have neither: apt install pipx (Debian/Ubuntu).
Avoid pip install claude-busy-monitor system-wide on modern distros (PEP 668 marks system Python as managed; you'd hit externally-managed-environment and --break-system-packages is a last-resort override, not a recommendation).
4.2. As a library
In your project's virtualenv:
pip install claude-busy-monitor
# or, with uv:
uv add claude-busy-monitor
Then from claude_busy_monitor import get_sessions, get_state_counts, ClaudeState (full API in README-LIBRARY.md).
4.3. From source (contributors)
git clone https://github.com/pbauermeister/claude-busy-monitor.git
cd claude-busy-monitor
make require # installs uv if missing (idempotent)
make venv-activate # creates .venv, syncs dev deps, opens an activated shell
# or, to install the local source globally for end-to-end use:
make install # = uv tool install .
For the full list of make targets, see README-LIBRARY.md.
5. Usage
5.1. Command
claude-busy-monitor # one-shot listing
watch claude-busy-monitor # live refresh
The output is one summary line followed by one line per session. Each session line reads:
| Column | Meaning |
|---|---|
| 1 | session id (first 12 hex chars) |
| 2 | state pill: busy (red) / asking (yellow) / idle (green) |
| 3 | working directory (basename) |
| 4 | output tokens, cumulative (out:) |
| 5 | input tokens, cumulative (in:, fresh + cached, summed) |
5.2. Library
The same data is exposed as a Python library; build your own tmux notifier, status-bar widget, or custom dashboard.
from claude_busy_monitor import get_sessions, ClaudeState
asking = [s for s in get_sessions() if s.state == ClaudeState.ASKING]
for s in asking:
print(f"waiting: {s.path} ({s.id[:12]})")
Full API and make reference: README-LIBRARY.md.
6. How it works
claude-busy-monitor reads two on-disk sources that Claude Code itself writes:
~/.claude/sessions/<pid>.json: one probe file per live session, with the authoritativestatusfield (busy/idle/waiting).~/.claude/projects/<encoded-cwd>/<sid>.jsonl: the per-session transcript, used only to total token usage.
State classification is a one-row table; no inference, no heuristics.
Token usage sums the four usage categories per assistant entry.
For the full design (assumptions the classifier depends on, diagnostic recipes for when something looks wrong, and the repair playbook), see README-STATE-DETECTION.md.
7. Compatibility
- Operating system: Linux only (relies on
/proc/<pid>/comm); macOS is not supported yet. Help welcome: please open a Discussion before any issue or PR. - Claude Code: v2.1.119 introduced the
statusfield this tool relies on; older versions are silently dropped./exitandclaude --resume <sessionId>will migrate them.
8. License
MIT; see CHANGES.md for the version history.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file claude_busy_monitor-1.0.4.tar.gz.
File metadata
- Download URL: claude_busy_monitor-1.0.4.tar.gz
- Upload date:
- Size: 103.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22","id":"wilma","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f05fdf9efb9a5a619bc249379aa23ae90b71fdf15483dc32c9bcd4dc52bc904b
|
|
| MD5 |
b9d02a83a30d679009c1eb44f14fd98c
|
|
| BLAKE2b-256 |
5c1e2502805e925cab06ee1ea385676be8e050ee7ac76967fcdaf609c3fd5a97
|
File details
Details for the file claude_busy_monitor-1.0.4-py3-none-any.whl.
File metadata
- Download URL: claude_busy_monitor-1.0.4-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22","id":"wilma","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13fc4b999140aa2190df44456ae76f935fbdccc4a55db9f5f34572a020fbafb3
|
|
| MD5 |
08e3d8fac8d873b4f1a1ca98a1160250
|
|
| BLAKE2b-256 |
63424969621f575631158c58e532ac15344c2b7ac3cbcd2dc8f36512374b6682
|