GitHunt
CL

claude-contrib/claude-status

Live Claude Code status line — context, cost, model, branch, worktree and more. Install via zinit, Nix, or manually.

Claude Status

A live Claude Code status line for your terminal — context usage, cost, model, branch, worktree, and more.

Claude
Release
License: MIT

Claude Code's statusLine command fires on every tool call — but the raw JSON payload isn't something you can glance at. Claude Status turns that stream into a compact, color-coded status line you actually want to read.

Claude Status demo

How It Works

Claude Code calls your statusLine command after each tool invocation, piping a JSON payload with session metadata. claude-status reads that payload, parses it with jq, and renders each segment using TrueColor ANSI escape codes — styled, colored, and joined into a single line.

Requires a TrueColor terminal. Colors will not render on terminals that do not support 24-bit color. Most modern terminals qualify: iTerm2, Kitty, Alacritty, Warp, Ghostty, and Windows Terminal all work out of the box.

Running in a container or over SSH? Make sure these environment variables are set:

  • LANG=C.UTF-8 — needed for Unicode glyphs (Braille progress bar, Nerd Font icons)
  • COLORTERM=truecolor — needed for 24-bit color passthrough

Requirements

  • Claude Code (claude)
  • jq (jq)
  • A TrueColor terminal (iTerm2, Kitty, Alacritty, Warp, Ghostty, Windows Terminal)

macOS (Homebrew):

brew install jq

Nix:

nix profile install nixpkgs#jq

Install claude separately: Claude Code installation guide

Installation

Using zinit

Add to your ~/.zshrc:

zinit light claude-contrib/claude-status

Using Nix flakes

nix profile install github:claude-contrib/claude-status

Or in your flake.nix inputs:

inputs.claude-status.url = "github:claude-contrib/claude-status";

Manual (zsh)

git clone https://github.com/claude-contrib/claude-status ~/.local/share/claude-status
echo 'source ~/.local/share/claude-status/claude-status.plugin.zsh' >> ~/.zshrc
source ~/.local/share/claude-status/claude-status.plugin.zsh

Manual (bash)

git clone https://github.com/claude-contrib/claude-status ~/.local/share/claude-status
echo 'export PATH="$HOME/.local/share/claude-status:$PATH"' >> ~/.bashrc
export PATH="$HOME/.local/share/claude-status:$PATH"

Requires jq on your $PATH (brew install jq).

Configure Claude Code

Set the status command in ~/.claude/settings.json:

{
  "statusLine": {
    "type": "command",
    "command": "claude-status"
  }
}

Restart your shell. The status line appears automatically on every Claude Code tool call.

What You Get

Each segment is independently styled and only shown when relevant:

Segment Example Description
Context bar ⣿⣿⣿⣿⣀⣀⣀⣀⣀⣀ 42% 10-char progress bar + percentage; green → yellow → red at 70%/90%
Cost $ 0.13 Total session cost in USD
Agent ⚡ sub-agent Active agent name — hidden when not in agent mode
Model claude-sonnet-4-6 Display name of the active model
Directory  my-project Basename of the current working directory
Branch  main Active git branch (uses worktree branch when inside a worktree)
Worktree 󰙅 feature-x Active worktree name — hidden when not in a worktree
Time 󱑓 3m 42s Total session duration; shows hours when over 60 minutes
Diff +84 -12 Lines added (green) and removed (red) during the session
Nix  2.18.1 Nix icon + version — hidden when not inside nix develop or nix-shell

Configuration

Variable Values Default Description
CLAUDE_CODE_STATUS_THEME catppuccin-mocha | catppuccin-macchiato | catppuccin-frappe | catppuccin-latte | /path/to/custom.json catppuccin-mocha Built-in Catppuccin theme or absolute path to a custom theme JSON file

Set it in your ~/.zshrc before the zinit load line:

export CLAUDE_CODE_STATUS_THEME=catppuccin-latte
zinit light claude-contrib/claude-status

The claude-contrib Ecosystem

Repo What it provides
claude-extensions Hooks, context rules, session automation
claude-features Devcontainer features for Claude Code and Anthropic tools
claude-languages LSP language servers — completions, diagnostics, hover
claude-sandbox Sandboxed Docker environment for Claude Code
claude-services MCP servers — browser, filesystem, sequential thinking
claude-status ← you are here Live status line — context, cost, model, branch, worktree

License

MIT — use it, fork it, extend it.