Claude Tools / Plugins / moo-statusline
Plugins · moogento/moo-statusline
moo-statusline
Beautiful statusline showing git, model, context, and rate limits. Requires: jq, git, bash. Works on macOS and Linux.
CLEARED_STATICagent-agnosticv1.1.0
Pipeline results
Coverage
CLEARED_STATIC
Tests run
7 / 8
Portability
Agent-agnostic (works beyond Claude)
Type
Plugins
Tests & results
What the pipeline checked
What's inside
Components found
commands/statusline.md
componentlow
commands/uninstall.md
componentlow
commands/update.md
componentlow
Coverage
Not assessed
- behavioural execution not run
README
From the repository
# Moo Statusline for Claude Code
A beautiful, informative statusline for Claude Code CLI that shows your project, git branch, model, context usage, and **real-time rate limit tracking** via the Anthropic API.
## Codex CLI
For a Codex-oriented copy of the script, see `statusline-codex.sh` and `README-CODEX.md`.
Quick run:
```bash
chmod +x ./statusline-codex.sh
echo '{"cwd":"'$PWD'","model":"gpt-5.2-codex","info":{"last_token_usage":{"total_tokens":6472},"model_context_window":258400},"rate_limits":{"primary":{"used_percent":24.0,"window_minutes":300,"resets_at":1767958180},"secondary":{"used_percent":3.0,"window_minutes":10080,"resets_at":1768212356}}}' | ./statusline-codex.sh
```
Live watcher (separate terminal):
```bash
chmod +x ./codex-statusline-watch.sh
./codex-statusline-watch.sh
```
## Features
- 🌿 **Git Integration** - Shows project name and current branch (highlighted in green)
- 🤖 **Model Display** - Simplified model names with version (e.g., opus4.6, sonnet4.5, haiku4)
- 🧠 **Effort Indicator** - Shows thinking effort level as dots next to model name (●●• = medium; 6-dot scale by default for xhigh/max/ultra, stepping down to 3 dots only for known legacy models)
-…