From claude-status-hud
Configure the Claude Code / Codebuddy Code status HUD. Automatically updates your settings.json to enable the rich status line display.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-status-hud:setup-status-hudThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
The user wants to configure the claude-status-hud status line.
The user wants to configure the claude-status-hud status line.
Detect which tool is running:
~/.codebuddy/settings.json exists — if so, the user is likely on Codebuddy Code~/.claude/settings.json exists — if so, the user is likely on Claude CodesettingsHome to ~/.codebuddy or ~/.claude accordinglyFind the plugin's statusline script path:
<settingsHome>/plugins/installed_plugins.jsonclaude-status-hud entryinstallPath value<installPath>/scripts/statusline.js<installPath>/scripts/statusline-codebuddy.js~/.claude or ~/.codebuddy)Read the user's current <settingsHome>/settings.json
Add or update ONLY the statusLine field:
{
"statusLine": {
"type": "command",
"command": "node \"<installPath>/scripts/statusline.js\""
}
}
{
"statusLine": {
"type": "command",
"command": "node \"<installPath>/scripts/statusline-codebuddy.js\""
}
}
IMPORTANT: Do NOT modify any other settings. Specifically:
env settingsincludeCoAuthoredBystatusLine fieldShow the user the change and confirm.
Tell the user to restart the tool or start a new session for the statusline to take effect.
If the plugin is not found in installed_plugins.json:
statusline.js / statusline-codebuddy.js under ~/.claude/plugins/ or ~/.codebuddy/plugins/node /path/to/claude-status-hud/scripts/statusline.jsnode /path/to/claude-status-hud/scripts/statusline-codebuddy.jsnpx claudepluginhub czhjing/claude-status-hud --plugin claude-status-hudInstalls and configures claude-2x-statusline for Claude Code. Prompts for Minimal, Standard, or Full tier with peak status, model info, rate limits, tokens, cost, timeline, and git; updates settings.json and fetches schedule.
Guides creation and debugging of the Claude Code status line: a customizable shell-script-driven bar showing token usage, model, cost, git context, and more. Use when configuring statusLine in settings.json or writing status scripts.
Installs the MST HUD statusline wrapper by backing up the current statusLine.command and replacing it with the MST wrapper script.