High-performance multi-line statusline for Claude Code
npx claudepluginhub gregoryho/cc-pulselineHigh-performance multi-line statusline for Claude Code with setup commands and diagnostics
Share bugs, ideas, or general feedback.
A multi-line statusline for Claude Code that shows context usage, cost tracking, active tools, running agents, and todo progress — updated live as you work.

Core Metrics — L1-L3 always visible

Context Alert — CTX ≥70% turns red

Cost Alert — Burn rate >$50/h turns magenta

Tool Tracking — Running tools with targets + completed counts (noise-filtered, multi-line wrapping)
![]()
Agent Tracking — Running + completed agents on L5+
![]()
Todo Tracking — Task progress
![]()
--preview# npm (recommended — works on macOS, Linux, Windows)
npm install -g @cc-pulseline/cc-pulseline
# From source
cargo install cc-pulseline
# Or clone and build
git clone https://github.com/GregoryHo/cc-pulseline.git
cd cc-pulseline && ./scripts/install.sh
Add to ~/.claude/settings.json:
{
"statusLine": {
"type": "command",
"command": "~/.claude/pulseline/cc-pulseline"
}
}
Start a Claude Code session — the statusline appears automatically.
| Method | Command | Best For |
|---|---|---|
| npm | npm i -g @cc-pulseline/cc-pulseline | Claude Code users |
| cargo-binstall | cargo binstall cc-pulseline | Rust devs (prebuilt) |
| cargo install | cargo install cc-pulseline | Rust devs (from source) |
| install.sh | ./scripts/install.sh | Local clone |
cc-pulseline uses TOML configuration with two scopes:
~/.claude/pulseline/config.toml{project}/.claude/pulseline.toml (overrides user)cc-pulseline --init # Create user config
cc-pulseline --init --project # Create project config
cc-pulseline --check # Validate configs
cc-pulseline --print # Show effective merged config
[display]
theme = "tokyo-night" # tokyo-night | echo-sub-zero | titanium-precision | ...
# variant = "dark" # dark | light (overrides theme default)
icons = true # nerd font icons vs ascii
[segments.identity] # Line 1 — model, style, version, project, git
show_model = true
show_style = true
show_version = true
show_project = true
show_git = true
[segments.config] # Line 2 — CLAUDE.md, rules, memories, hooks, MCPs, skills, duration
show_claude_md = true
show_rules = true
show_memory = true
show_hooks = true
show_mcp = true
show_skills = true
show_duration = true
[segments.budget] # Line 3 — context, tokens, cost
show_context = true
show_tokens = true
show_cost = true
[segments.tools]
enabled = true
max_lines = 2 # max running tools shown
max_completed = 4 # max completed tool counts
tools_per_line = 6 # completed tools per line before wrapping
[segments.agents]
enabled = true
max_lines = 2
[segments.todo]
enabled = true
max_lines = 2
cc-pulseline 1.0.6 - High-performance Claude Code statusline
USAGE:
cc-pulseline [OPTIONS]
echo '{"model":...}' | cc-pulseline