Tab · Knowledge

Active sessions

See what other Claude Code sessions are editing right now. Per-turn JSONL capture (K1) + a 4-surface decoration on every brain twin (K2) means you never branch into work another session is already doing — across worktrees, across repos, in one panel.

Where to find it

  • Localhost: /sessions-active.html
  • API: GET /api/sessions/active (SSE optional)
  • Keyboard: K then active
  • Sidebar: Knowledge → Active sessions

What it does for you

Never step on another session's edits.Every concurrent Claude Code session shows up with its branch, the files it's touching, and how long it's been active — before you pick a task, you see who's already on it.
Conflict-detection without the conflict.The check_session_overlap MCP tool lets an agent ask, "is anyone else editing these files?" before it claims them — soft locks via claim_files are mtime-expiring so abandoned sessions release on their own.
Live SSE stream, no polling.The dashboard subscribes via Server-Sent Events; sessions appear and clear in real time across the team.

Read more