by daniel3303
Custom status line for Claude Code showing model, tokens, rate limits, and git info in real-time
# Add to your Claude Code skills
git clone https://github.com/daniel3303/ClaudeCodeStatusLineGuides for using cli tools skills like ClaudeCodeStatusLine.
Last scanned: 5/16/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-16T06:23:33.186Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}ClaudeCodeStatusLine is an open-source cli tools skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by daniel3303. Custom status line for Claude Code showing model, tokens, rate limits, and git info in real-time. It has 580 GitHub stars.
Yes. ClaudeCodeStatusLine passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/daniel3303/ClaudeCodeStatusLine" and add it to your Claude Code skills directory (see the Installation section above).
ClaudeCodeStatusLine is primarily written in Shell. It is open-source under daniel3303 on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other CLI Tools skills you can browse and compare side by side. Open the CLI Tools category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh ClaudeCodeStatusLine against similar tools.
No comments yet. Be the first to share your thoughts!
Top skills in this category by stars
A custom status line for Claude Code that displays model info, token usage, rate limits, and reset times in a single compact line. It runs as an external shell command, so it does not slow down Claude Code or consume any extra tokens.

| Segment | Description |
|---|---|
| Model | Current model name (e.g., Opus 4.7) |
| CWD@Branch | Current folder name, git branch, and file changes (+/-) |
| Tokens | Used / total context window tokens (% used) |
| Effort | Reasoning effort level (low, med, high, xhigh) |
| 5h | 5-hour rate limit usage percentage and reset time |
| 7d | 7-day rate limit usage percentage and reset time |
| Extra | Extra usage credits spent / limit (if enabled) |
| Update | Appears when a new version is available (checked every 24h) |
Usage percentages are color-coded: green (<50%) → yellow (≥50%) → orange (≥70%) → red (≥90%).
Ask Claude Code:
Clone https://github.com/daniel3303/ClaudeCodeStatusLine to
~/.claude/statusline/(or%USERPROFILE%\.claude\statusline\on Windows) and configure it as my status bar by following its INSTALL.md.
Claude will clone the repo to that path, pick the right script for your OS, and update settings.json. Full step-by-step instructions Claude follows live in INSTALL.md.
Restart Claude Code after Claude saves the configuration.
When the status line shows a new release is available, ask Claude:
Find my installed status bar and update it.
Or update it yourself:
git -C ~/.claude/statusline pull
No settings.json changes are needed — the path stays valid across versions.
git in PATHjq and curlUsage data from the Anthropic API is cached for 60 seconds at /tmp/claude/statusline-usage-cache-<hash>.json (or %TEMP%\claude\... on Windows). Release checks are cached for 24 hours. Both caches are shared across concurrent Claude Code instances to avoid rate limits.
The status line checks GitHub for new releases once every 24 hours via an outbound HTTP request to api.github.com. When a newer version is available, a second line appears below the status line. The check fails silently if the API is unreachable.
To disable the update check entirely (no network calls):
export STATUSLINE_CHECK_UPDATES=false
MIT
Daniel Oliveira