Claude Code HUD: Terminal Dashboard for Monitoring AI Coding Sessions

What claude-code-hud does
claude-code-hud is a terminal-based dashboard designed specifically for monitoring Claude Code sessions. The developer built it to address two common pain points: constantly running commands like git diff, git status, and cat to check what Claude changed, and not knowing how much context window remained until hitting limits.
Key features
- Context window gauge with color warnings (green → yellow → red)
- 5-hour/weekly usage rate from Anthropic API (actual data, not estimates)
- Interactive file browser with git status colors
- File diff viewer, branch switching, and commit history — all in the terminal
Setup and usage
Install and run with one command: npx claude-code-hud. No configuration required. The tool sits next to your Claude Code session in a separate terminal window.
The developer describes the workflow as: "You're not writing code with Claude Code. You're reviewing. For that, you don't need IntelliJ. You need a lightweight way to see what's changing and how much context you have left."
The project was built with Claude Code and is available on GitHub at https://github.com/letsgojh0810/hud-plugin.
📖 Read the full source: r/ClaudeAI
👀 See Also

Scrapling integrated as OpenClaw's scraping backbone
Scrapling, an open-source library that learns page structure and adapts to changes, has been integrated into OpenClaw as its core scraping engine. It's 774x faster than BeautifulSoup with Lxml and supports multiple selector types with async sessions.

llm-idle-timeout Fires at 2 Minutes on N100/WSL2 Despite timeoutSeconds Setting
A user reports that the idle watchdog in OpenClaw fires after 2 minutes on N100/WSL2 hardware, ignoring the timeoutSeconds=300 setting, due to slow gateway startup (45+ seconds) and no configurable noOutputTimeoutMs.

AskAlf: Open-source multi-agent orchestration platform for self-hosted AI workflows
AskAlf is an open-source multi-agent orchestration platform that runs on your own hardware, dynamically creating specialized workers that coordinate through an autonomous system with a 10-layer cognitive memory stored in pgvector.

Debugging Claude Code's Build-Check Logic: Why Name Search Fails and Structural Footprint Search Fixes It
Claude Code told a user 'feature not built' four times in one session — all wrong. The fix: replace name-based search with structural footprint search (routes, schemas, registered tools). Practical rule shared.