setup

setup is a command for coding agents from hadamyeedady12-dev/claude-ultimate-hud. It costs 11 tokens per session (1,673 once invoked), scanned B, original, MIT.

A setup command for configuring Claude Ultimate HUD, a status line that displays runtime and platform information. It asks for a display language and subscription plan unless those choices are supplied as arguments.

In plain words
What is it for?
Use it when installing or configuring the Claude Ultimate HUD, including its language and the rate-limit information associated with a Pro, Max, or Enterprise plan.
Why use it?
It removes the need to configure the status line manually and selects what information to show based on the chosen plan.

Command

Part of the claude-ultimate-hud plugin — 1 skill, 1 command shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/hadamyeedady12-dev/claude-ultimate-hud/setup
Clone the repo
git clone --depth 1 https://github.com/hadamyeedady12-dev/claude-ultimate-hud

Or install claude-ultimate-hud, the plugin that ships this one along with the rest of its 1 skill, 1 command.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for setup

README.md
[![agentmods](https://agentmods.dev/badge/commands/hadamyeedady12-dev/claude-ultimate-hud/setup.svg)](https://agentmods.dev/commands/hadamyeedady12-dev/claude-ultimate-hud/setup)
Your own site
<a href="https://agentmods.dev/commands/hadamyeedady12-dev/claude-ultimate-hud/setup"><img src="https://agentmods.dev/badge/commands/hadamyeedady12-dev/claude-ultimate-hud/setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 11 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,673 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00011 $0.01673
Opus 5 $0.00005 $0.00837
Sonnet 5 $0.00002 $0.00335
Haiku 4.5 $0.00001 $0.00167

Measured 5d ago against content hash c1a0f57232a2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

setup scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

Read `~/.claude/settings.json` (or `$env:USERPROFILE\.claude\settings.json` on Windows).
commands/setup.md · 168 lines

How it starts

The opening of the file, as written. The whole thing — 168 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Claude Ultimate HUD Setup

Configure the claude-ultimate-hud status line plugin with automatic runtime and platform detection.

Step 0: Ask User Preferences (if not provided via arguments)

Use AskUserQuestion to ask for both language and plan in a single call (up to 2 questions):

Question 1 - Language (if $1 not provided):

  • header: "Language"
  • question: "Which language do you prefer for the HUD?"
  • options:
    • en: English (Recommended)
    • ko: Korean (한국어)
    • auto: Auto-detect from system locale

Question 2 - Plan (if $2 not provided):

  • header: "Plan"
  • question: "Which subscription plan are you on?"
  • options:
    • max200: Max $200/mo (20x) - 5h + 7d all + 7d Sonnet (Recommended)
    • max100: Max $100/mo (5x) - 5h + 7d all + 7d Sonnet
    • pro: Pro - 5h only
    • enterprise: Enterprise - Cost in $ + 5h

Use the selected values for the rest of the setup.

Arguments (optional, skips interactive selection)

  • $1: Language preference

    • auto (default): Detect from system language
    • en: English
    • ko: Korean (한국어)
  • $2: Subscription plan

    • pro: Shows 5h rate limit only
    • max100: Shows 5h + 7d all + 7d Sonnet (Max $100/월 플랜)
    • max200 (default): Shows 5h + 7d all + 7d Sonnet (Max $200/월 플랜)
    • enterprise: Shows cost in $ + 5h rate limit (Enterprise 플랜)

Step 1: Detect Platform & Runtime

macOS/Linux (if uname -s returns "Darwin", "Linux", or MINGW*/MSYS*/CYGWIN*):

  1. Get plugin path (check cache/marketplace first, then manual install):

    ls -td ~/.claude/plugins/cache/claude-ultimate-hud/claude-ultimate-hud/*/ 2>/dev/null | head -1 || ls -d ~/.claude/plugins/claude-ultimate-hud/ 2>/dev/null
    

    If empty, plugin is not installed.

  2. Get runtime absolute path (prefer bun, fallback to node):

    command -v bun 2>/dev/null || command -v node 2>/dev/null
    

    If empty, tell user to install Node.js or Bun.

  3. Determine source file based on runtime:

    • If runtime is bun: use src/index.ts
    • Otherwise: use dist/index.js

Read the full file on GitHub · 168 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 168 lines · 11 tokens per session scan B c1a0f57232a2

Subscribe to this mod's changes

setup is a command published in the GitHub repository hadamyeedady12-dev/claude-ultimate-hud (48 stars, last pushed 5mo ago), licensed MIT. It adds 11 tokens to every session and 1,673 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.