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.
npx claudepluginhub hsuneh/dev_sys_template --plugin cwmThis skill uses the workspace's default tool permissions.
> `/cwm:custom_command` — CWM 전용 HUD를 설치합니다.
Adds real-time HUD to Claude Code terminal statusline showing context usage bar, tool activity, running agents, todo progress, git status, and rate limits for monitoring sessions.
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.
Share bugs, ideas, or general feedback.
/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를 재시작하세요.