Skip to content

m5d215/claude-statusline

Repository files navigation

claude-statusline

A Powerline-style status line and subagent panel renderer for Claude Code, written as single jq-jit programs.

Main status line

catalog

Segment Description
Model Claude model name and context window size
Directory Current working directory (~/src/github.com/ and ~/src/gitlab.com/ are shortened with icons)
Git branch Current branch (hidden when not in a git repo)
Profile Basename of $CLAUDE_CONFIG_DIR (hidden when unset or ~/.claude)
Context % Context window usage — green → yellow → red as it fills
Rate limits 5-hour and 7-day usage with reset time (hidden when no data)

Subagent status line

Renders each task row in Claude Code's subagent panel.

catalog-subagent

Each row is {icon} {label} [· {description}] · {tokens} [· {elapsed}].

Field Behaviour
Status icon running (green) · completed (cyan) · failed (red) · other (gray)
Label Falls back through labeldescriptionid
Description Only shown when it differs from the label
Tokens 234 (raw) / 61.4k / 234k / 1.2M
Elapsed M:SS or H:MM:SS; omitted when startTime is missing

Requirements

  • macOS (Linux is not currently supported)
  • jq-jit — a jq interpreter with exec/execv builtins
  • Nerd Font — for Powerline and icon glyphs in the main status line
  • Claude Code

Installation

Homebrew (recommended)

brew install m5d215/tap/claude-statusline

This pulls in jq-jit automatically and installs both claude-statusline and claude-subagent-statusline on your PATH.

Then add to your ~/.claude/settings.json:

{
  "statusLine": {
    "type": "command",
    "command": "claude-statusline",
    "padding": 0
  },
  "subagentStatusLine": {
    "type": "command",
    "command": "claude-subagent-statusline"
  }
}

Manual

1. Install jq-jit (via Homebrew, cargo install, or a release binary).

2. Download the scripts

curl -o ~/.claude/statusline.sh https://raw.githubusercontent.com/m5d215/claude-statusline/main/statusline.sh
curl -o ~/.claude/subagent-statusline.sh https://raw.githubusercontent.com/m5d215/claude-statusline/main/subagent-statusline.sh
chmod +x ~/.claude/statusline.sh ~/.claude/subagent-statusline.sh

3. Configure Claude Code

Add to your ~/.claude/settings.json:

{
  "statusLine": {
    "type": "command",
    "command": "~/.claude/statusline.sh",
    "padding": 0
  },
  "subagentStatusLine": {
    "type": "command",
    "command": "~/.claude/subagent-statusline.sh"
  }
}

License

MIT

About

A Powerline-style status line for Claude Code, written as a single jq-jit program

Topics

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Contributors

Languages