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

AgenticStore MCP: Python Toolkit for Claude Desktop with 27 Local Tools
AgenticStore MCP is an open-source Python toolkit that replaces multiple MCP servers with a single installation, giving Claude Desktop 27 local tools including persistent memory, web search, and repo auditing without requiring Docker or Node.js configuration.

Void-Box Update Adds Sandboxed OpenClaw-Telegram Integration via KVM Micro-VMs
Void-Box, a capability-bound runtime for AI agents, now includes a working example that runs OpenClaw connected to Telegram fully sandboxed inside isolated KVM micro-VMs. The system creates micro-VMs on demand for each execution stage and destroys them afterward to prevent state leakage.

BetterClaw vs OpenClaw: Comparing Tool Calling, Structured Outputs, and Workflow Control
A developer-focused comparison of BetterClaw and OpenClaw covering tool calling, structured outputs, workflow control, and day-to-day agent development.

Hands-On with Tencent's Model: Strong for Agentic Workflows, Weak for Complex Coding
Tencent's model scores 8/10 for agentic tasks with low hallucination rates, but fails on complex coding like Notion API schemas. Avoid for backend logic.