From cwm
Installs CWM HUD to Claude Code status line displaying folder, branch, context bar, tools/agents/skills, active plan, and 5h limit. Checks Node.js/jq prerequisites and handles existing configs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cwm:custom_commandThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> `/cwm:custom_command` — CWM 전용 HUD를 설치합니다.
/cwm:custom_command— CWM 전용 HUD를 설치합니다.
📂 폴더 | 🔀 브랜치 | 컨텍스트 바 | 🔧tool 🤖agent ⚡skill | 📋 활성 플랜 | 5h 리밋
설치 전 먼저 확인:
node --version
which jq
apt install jq 또는 brew install jq로 설치하세요." 경고 출력 (중단하지는 않음).~/.claude/settings.json을 읽어서 statusLine 항목을 확인한다.
사용자에게 확인:
현재 커스텀 statusLine이 설정되어 있습니다.
CWM HUD로 교체할까요? (y/n)
바로 설치 진행.
~/.claude/settings.json에 다음을 추가:
jq --arg cmd "node ${CLAUDE_PLUGIN_ROOT}/hud/cwm-hud.mjs" \
'.statusLine = {"type": "command", "command": $cmd}' \
~/.claude/settings.json > ~/.claude/settings.json.tmp \
&& mv ~/.claude/settings.json.tmp ~/.claude/settings.json
${CLAUDE_PLUGIN_ROOT}는 실제 플러그인 설치 경로로 치환한다.
플러그인 경로를 모르면 ~/.claude/plugins/cache/ 에서 cwm 디렉토리를 찾는다.
✅ CWM HUD 설치 완료
적용하려면 Claude Code를 재시작하세요.
npx claudepluginhub hsuneh/dev_sys_template --plugin cwmCreates and customizes Claude Code status lines to display contextual info like model name, git branch, token usage, project colors, and session cost. Supports manual scripts or ccstatusline widget.
Interactive wizard sets up Claude Code's custom status line with progress bars, token counts, git branch, model name, and session info. Cross-platform for Mac/Linux/Windows via bash/PowerShell scripts.
Develops custom status lines for Claude Code to display git branch, context usage, model name, and session costs using bash scripts that process JSON stdin input.