Install
$ agentstack add skill-apappas1129-claude-skill-hud-skill-hud-setup ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Skill HUD setup
The claude-skill-hud plugin's hooks (which log skill invocations) are already active now that the plugin is installed. The one piece a plugin cannot wire up automatically is the main session status line — that's a plain user-level settings.json field, not a plugin-managed component, so it needs to be written once, explicitly.
This skill's job: add that one statusLine entry, without touching anything else already in the user's settings.
Resolved paths for this install
These paths were substituted into this skill's content when it loaded, so they're already correct for wherever this plugin is installed on this machine:
- Plugin root:
${CLAUDE_PLUGIN_ROOT} - Persistent data directory:
${CLAUDE_PLUGIN_DATA} - Status line script:
${CLAUDE_PLUGIN_ROOT}/scripts/statusline.sh
Steps
- Read
~/.claude/settings.json. If it doesn't exist, treat it as{}.
- Check the existing
statusLinekey, if any:
- If it's already set to a command containing
scripts/statusline.shfrom
this plugin's root, the HUD is already configured — tell the user this and stop, no changes needed.
- If a different
statusLineis already configured (the user has their
own custom one), stop and ask the user how they want to proceed. Do not silently overwrite it. Options: replace it, or skip HUD setup and let the user merge it manually.
- If no
statusLinekey exists, proceed to step 3.
- Add this exact block to the settings JSON, merging it in alongside any
other existing top-level keys (do not remove or reorder unrelated keys):
``json "statusLine": { "type": "command", "command": "CLAUDE_PLUGIN_DATA=\"${CLAUDE_PLUGIN_DATA}\" \"${CLAUDE_PLUGIN_ROOT}/scripts/statusline.sh\"", "refreshInterval": 2 } ``
The CLAUDE_PLUGIN_DATA=... prefix is required: the main status line runs outside the plugin hook/MCP substitution system, so this is the one place that env var has to be set explicitly rather than relying on automatic injection. refreshInterval is a safety net on top of the normal event-driven refresh (after each assistant message) — it forces a re-render every 2 seconds so the HUD can't visibly linger stale.
- Write the updated settings file back, preserving existing formatting and
keys as much as possible.
- Confirm to the user in one or two sentences that the HUD is active, and
mention that a new session (or /statusline reload if supported) is needed for the change to take effect. Also mention how to undo: remove the statusLine key from ~/.claude/settings.json, or run /plugin uninstall claude-skill-hud.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: apappas1129
- Source: apappas1129/claude-skill-hud
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.