AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skill Hud Setup

skill-apappas1129-claude-skill-hud-skill-hud-setup · by apappas1129

One-time setup that wires the Claude Skill HUD status line into the user's global settings.json. Run this once, right after installing the claude-skill-hud plugin, to finish activating the HUD.

No reviews yet
0 installs
11 views
0.0% view→install

Install

$ agentstack add skill-apappas1129-claude-skill-hud-skill-hud-setup

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-apappas1129-claude-skill-hud-skill-hud-setup)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Skill Hud Setup? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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

  1. Read ~/.claude/settings.json. If it doesn't exist, treat it as {}.
  1. Check the existing statusLine key, if any:
  • If it's already set to a command containing scripts/statusline.sh from

this plugin's root, the HUD is already configured — tell the user this and stop, no changes needed.

  • If a different statusLine is 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 statusLine key exists, proceed to step 3.
  1. 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.

  1. Write the updated settings file back, preserving existing formatting and

keys as much as possible.

  1. 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.