Configure claude-hud as your Claude Code statusline
Configures claude-hud as your Claude Code statusline for real-time session monitoring.
/plugin marketplace add davepoon/buildwithclaude/plugin install claude-hud@buildwithclaudeConfigure claude-hud as your Claude Code statusline by adding the following configuration to your settings.
Add this to your ~/.claude/settings.json:
{
"statusLine": {
"type": "command",
"command": "node ${CLAUDE_PLUGIN_ROOT}/dist/index.js"
}
}
The HUD displays real-time session information:
If automatic configuration doesn't work, you can manually:
~/.claude/settings.jsonstatusLine sectionIf the HUD doesn't appear:
node ${CLAUDE_PLUGIN_ROOT}/dist/index.js manually to check for errorsIf this is a fresh installation, build the TypeScript:
cd ${CLAUDE_PLUGIN_ROOT}
npm install
npm run build