AI agents run in tmux panes but give no signal when they finish or need input. You have to keep switching panes to check. This plugin tracks agent state and surfaces it through pane borders, window titles, and status bar icons so you never miss a transition.
demo.mp4
When the agent finishes, the window title background/foreground changes and the pane border updates to signal completion.
![]() |
![]() |
![]() |
|---|---|---|
| needs-input: yellow window title | done: red window title | done: pane background change |
The plugin tracks three states per pane: running, needs-input, and done.
State transitions are driven by hooks. Claude Code and Codex fire hooks on prompt submit, permission request, and stop. OpenCode uses its plugin system. Any other agent can call agent-state.sh directly from a wrapper script or hook.
Each state can change:
- Pane border color
- Pane background (supported but disabled by default to avoid visual noise)
- Window title background and foreground
- Status bar icon (per-agent, e.g.
claude=🤖,codex=🧠)
States reset when you focus the pane/window, or on the next transition.
- Per-agent status icons in the status bar
- Knight Rider animation during
runningstate - Deferred pane reset: keep pane colors until focus, not when the hook fires
- Process detection fallback for agents that don't fire hooks
- Tmux display-message notifications on state transitions
tmux 3.1+, bash 4+, Python 3
curl -fsSL https://raw.githubusercontent.com/accessd/tmux-agent-indicator/main/install.sh | bashThe installer will offer to run the interactive color setup wizard. You can also run it later:
bash ~/.tmux/plugins/tmux-agent-indicator/setup.shThis installs files to ~/.tmux/plugins/tmux-agent-indicator and updates:
~/.claude/settings.jsonhooks for Claude (UserPromptSubmit,PermissionRequest,Stop)~/.codex/hooks.jsonhooks for Codex (UserPromptSubmit,PermissionRequest,Stop)~/.config/opencode/plugins/plugin for OpenCode
After installing Codex hooks, run /hooks in Codex and trust the tmux-agent-indicator hook definitions before they can run.
Integration uninstall options:
./install.sh --uninstall-claude
./install.sh --uninstall-codex
./install.sh --uninstall-opencodeAdd to ~/.tmux.conf:
set -g @plugin 'accessd/tmux-agent-indicator'Reload tmux:
tmux source-file ~/.tmux.confFor native status:
set -g status-right '#{agent_limits} #{agent_indicator} | %H:%M'For minimal-tmux-status:
set -g @minimal-tmux-status-right '#{agent_limits} #{agent_indicator} #(gitmux "#{pane_current_path}")'#{agent_limits} shows the shortest active account-limit window for Claude and Codex:
C 5h 4% used · X 7d 2% used
Percentages are used allowance, matching the provider dashboards. C means Claude and X means Codex. These limits are account-wide, so every pane using the same provider shares them.
The collector reads local agent data:
- Claude:
cachedUsageUtilizationfrom~/.claude.json, plus freshrate_limitscaptured from Claude's status-line input - Codex: the newest
token_count.rate_limitssnapshot under~/.codex/sessions/
The installer wraps an existing Claude status-line command and passes its input and output through unchanged. --uninstall-claude restores the previous command. Expired data is hidden.
Configuration:
set -g @agent-indicator-limits-enabled 'on'
set -g @agent-indicator-limits-providers 'claude,codex'
set -g @agent-indicator-limits-cache-seconds '60'Omit a provider to hide it. Set the cache duration to 0 to read the source files on every status refresh.
Optional visual session indicator in the status bar. Shows all sessions as symbols with the current one highlighted. Sessions where agents need attention (needs-input or done state) are highlighted in a different color.
Includes code from tmux-session-dots by Jack McGinty, used under the MIT License.
Example with 4 sessions, second is current, fourth needs attention: ○●○●
With emoji symbols:
set -g @agent-indicator-session-dots-active '🌕'
set -g @agent-indicator-session-dots-inactive '🌑'
set -g @agent-indicator-session-dots-attention '🤖'Add #{agent_session_dots} to your status bar:
set -g status-right '#{agent_session_dots} #{agent_indicator} | %H:%M'Configuration:
# Symbols
set -g @agent-indicator-session-dots-active '●'
set -g @agent-indicator-session-dots-inactive '○'
set -g @agent-indicator-session-dots-attention '●'
# Colors (empty = inherit from status bar)
set -g @agent-indicator-session-dots-color ''
set -g @agent-indicator-session-dots-active-color ''
set -g @agent-indicator-session-dots-attention-color 'yellow'
# Which agent states trigger attention highlighting (comma-separated)
set -g @agent-indicator-session-dots-attention-states 'needs-input,done'The current session always shows as the active dot, even if it also has agents needing attention.
Quick start with the most useful options:
# Enable/disable visual channels
set -g @agent-indicator-border-enabled 'on'
set -g @agent-indicator-indicator-enabled 'on'
# Per-agent icons
set -g @agent-indicator-icons 'claude=🤖,codex=🧠,opencode=💻,default=🤖'
# Keep pane colors until you focus the pane (instead of clearing immediately)
set -g @agent-indicator-reset-on-focus 'on'
# Knight Rider animation while running
set -g @agent-indicator-animation-enabled 'on'Full configuration reference
# Global toggles
set -g @agent-indicator-background-enabled 'on'
set -g @agent-indicator-border-enabled 'on'
set -g @agent-indicator-indicator-enabled 'on'
# Account limits
set -g @agent-indicator-limits-enabled 'on'
set -g @agent-indicator-limits-providers 'claude,codex'
set -g @agent-indicator-limits-cache-seconds '60'
# Running state (default keeps pane/border unchanged)
set -g @agent-indicator-running-enabled 'on'
set -g @agent-indicator-running-bg 'default'
set -g @agent-indicator-running-border 'default'
set -g @agent-indicator-running-window-title-bg ''
set -g @agent-indicator-running-window-title-fg ''
# Needs-input state
set -g @agent-indicator-needs-input-enabled 'on'
set -g @agent-indicator-needs-input-bg 'default'
set -g @agent-indicator-needs-input-border 'yellow'
set -g @agent-indicator-needs-input-window-title-bg 'yellow'
set -g @agent-indicator-needs-input-window-title-fg 'black'
# Done state
set -g @agent-indicator-done-enabled 'on'
set -g @agent-indicator-done-bg 'default'
set -g @agent-indicator-done-border 'green'
set -g @agent-indicator-done-window-title-bg 'red'
set -g @agent-indicator-done-window-title-fg 'black'
# Per-agent icons
set -g @agent-indicator-icons 'claude=🤖,codex=🧠,opencode=💻,default=🤖'
# Process fallback detection
set -g @agent-indicator-processes 'claude,codex,aider,cursor,opencode'
# Keep pane colors until pane focus-in after done
set -g @agent-indicator-reset-on-focus 'on'
# Running animation in status indicator
set -g @agent-indicator-animation-enabled 'off'
set -g @agent-indicator-animation-speed '300'
# Notifications (tmux display-message on state transitions)
set -g @agent-indicator-notification-enabled 'on'
set -g @agent-indicator-notification-states 'needs-input,done'
set -g @agent-indicator-notification-format '[#{agent_name}] #{agent_state} (#{session_name}:#{window_name})'
set -g @agent-indicator-notification-duration '5000'
set -g @agent-indicator-notification-command ''
# Session dots (visual session indicator in status bar)
set -g @agent-indicator-session-dots-active '●'
set -g @agent-indicator-session-dots-inactive '○'
set -g @agent-indicator-session-dots-attention '●'
set -g @agent-indicator-session-dots-color ''
set -g @agent-indicator-session-dots-active-color ''
set -g @agent-indicator-session-dots-attention-color 'yellow'
set -g @agent-indicator-session-dots-attention-states 'needs-input,done'Pane background coloring is unchanged by default (*-bg 'default' for all states).
To enable background colors, set per-state values in your ~/.tmux.conf, for example:
set -g @agent-indicator-needs-input-bg 'colour94'
set -g @agent-indicator-done-bg 'green'Empty option values are treated as "do not apply this property" (for toggles, empty behaves as disabled). Example:
set -g @agent-indicator-done-bg ''This skips done-state background changes while still allowing done border/title styles.
Note: tmux border coloring is window-scoped (pane-active-border-style / pane-border-style).
You can style the active border differently, but tmux cannot set a fully independent border color for one arbitrary non-active pane.
Color presets
Preset 1 (Balanced):
set -g @agent-indicator-running-bg ''
set -g @agent-indicator-running-border ''
set -g @agent-indicator-needs-input-bg 'colour223'
set -g @agent-indicator-needs-input-border 'colour214'
set -g @agent-indicator-done-bg ''
set -g @agent-indicator-done-border 'colour34'
set -g @agent-indicator-done-window-title-bg 'colour34'
set -g @agent-indicator-done-window-title-fg 'black'Preset 2 (High Contrast):
set -g @agent-indicator-running-bg 'colour52'
set -g @agent-indicator-running-border 'colour196'
set -g @agent-indicator-needs-input-bg 'colour94'
set -g @agent-indicator-needs-input-border 'colour226'
set -g @agent-indicator-done-bg ''
set -g @agent-indicator-done-border 'colour46'
set -g @agent-indicator-done-window-title-bg 'colour46'
set -g @agent-indicator-done-window-title-fg 'black'Preset 3 (Subtle):
set -g @agent-indicator-running-bg ''
set -g @agent-indicator-running-border 'colour244'
set -g @agent-indicator-needs-input-bg ''
set -g @agent-indicator-needs-input-border 'colour220'
set -g @agent-indicator-done-bg ''
set -g @agent-indicator-done-border 'colour70'
set -g @agent-indicator-done-window-title-bg 'colour238'
set -g @agent-indicator-done-window-title-fg 'colour194'Tmux color reference
Tmux supports:
- 8 basic colors:
black,red,green,yellow,blue,magenta,cyan,white - Bright variants (
brightred,brightblue, etc.) - 256-color palette:
colour0...colour255
State transitions trigger a tmux display-message notification. Enabled by default for needs-input and done states.
# Disable notifications entirely
set -g @agent-indicator-notification-enabled 'off'
# Only notify on done
set -g @agent-indicator-notification-states 'done'
# Custom format
set -g @agent-indicator-notification-format '#{agent_name} is #{agent_state} in #{session_name}'
# Duration in milliseconds (0 = use tmux default display-time)
set -g @agent-indicator-notification-duration '3000'Available format placeholders: #{agent_name}, #{agent_state}, #{session_name}, #{window_name}, #{window_index}.
You can also run an external command on each notification. The command receives environment variables AGENT_NAME, AGENT_STATE, AGENT_SESSION, and AGENT_WINDOW:
# Log notifications to a file
set -g @agent-indicator-notification-command 'echo "$AGENT_NAME $AGENT_STATE" >> /tmp/agent-notify.log'
# macOS system notification
set -g @agent-indicator-notification-command 'osascript -e "display notification \"$AGENT_NAME is $AGENT_STATE\" with title \"tmux agent\""'To integrate any agent that does not have built-in hook support, call agent-state.sh from your agent's hooks or wrapper script.
~/.tmux/plugins/tmux-agent-indicator/scripts/agent-state.sh --agent claude --state running
~/.tmux/plugins/tmux-agent-indicator/scripts/agent-state.sh --agent claude --state needs-input
~/.tmux/plugins/tmux-agent-indicator/scripts/agent-state.sh --agent claude --state done
~/.tmux/plugins/tmux-agent-indicator/scripts/agent-state.sh --agent claude --state off--state off always resets pane background and border immediately.
Default template files:
hooks/claude-hooks.jsonhooks/codex-hooks.json
The installer uses these templates as the source for Claude and Codex hook configuration, replacing the default plugin path with the selected install target.
They map:
UserPromptSubmit->runningPermissionRequest->needs-inputStop->done
Codex hooks must be reviewed and trusted with /hooks before they can run.
The installer copies plugins/opencode-tmux-agent-indicator.js to ~/.config/opencode/plugins/. The plugin uses OpenCode's event system:
session.status(busy) ->runningpermission.updated->needs-inputsession.idle->done
To install manually without the installer, copy the plugin file:
mkdir -p ~/.config/opencode/plugins
cp plugins/opencode-tmux-agent-indicator.js ~/.config/opencode/plugins/MIT



