cstat: A Native Rust Status Line for Claude Code with 2ms Performance

What cstat Does
cstat is a native Rust binary that provides a status line for Claude Code. It addresses performance issues with existing solutions by eliminating subprocess spawning.
Performance Comparison
The developer reports that claude-hud spawns 24 subprocesses (jq, git, grep, date) on every invocation, taking 62ms each time. Claude Code calls the status line command approximately every 300ms. cstat achieves the same functionality in 2ms with zero subprocess spawns.
Displayed Information
- Model name
- Rate limits with reset countdown timers
- Project directory
- Git branch and dirty state
- Context window usage (color-coded)
- Active tools with file targets (e.g., Edit auth.ts, Grep x3)
- Running subagents with model and duration
- Task progress
Installation and Setup
Install via Homebrew:
brew install basuev/cstat/cstatThen add to ~/.claude/settings.json:
{"statusLine": {"type": "command", "command": "cstat"}}Technical Details
- Single ~1MB binary
- No runtime dependencies
- Statically linked Linux builds
Source
Available on GitHub: https://github.com/basuev/cstat
📖 Read the full source: r/ClaudeAI
👀 See Also

MAGELLAN: A 15-Agent Autonomous Scientific Discovery System Built on Claude Code
MAGELLAN is a 15-agent autonomous scientific discovery system built entirely on Claude Code. It uses Opus for deep reasoning and Sonnet for structured tasks, generating cross-disciplinary hypotheses without human direction, with 260 hypotheses proposed and 60% killed by adversarial validation in 19 sessions.

Claude Code Plugin Launches DOOM in Terminal While AI Thinks
A developer created a Claude Code plugin that displays DOOM as a tmux popup overlay during AI processing. The plugin uses doom-ascii, a terminal-based DOOM source port, and automatically launches/dismisses with prompts.

sourcecode: Open-Source CLI to Compress Large Java/Spring Monorepos for Claude
sourcecode CLI reduces a ~4k-file Java/Spring monorepo from ~3M tokens to 1.7k tokens (compact mode). Currently focuses on context compression, git hotspot detection, and symbol lookup.

Query Your Jira Sprint Via Claude MCP: Instant Status, Unassigned Issues, and Blocked Items
A Reddit user connected Jira to Claude via MCP, then asked plain‑language questions about their sprint and got instant clean tables — no clicking through boards.