dgx-status

dgx-status is a skill for Claude Code, Codex from chipi/agentic-ai-homelab. It costs 73 tokens per session (551 once invoked), scanned A, original, MIT.

A read-only health snapshot for a DGX host, a computer designed for intensive GPU work. It reports GPU mode and activity, compute processes, service health, and running containers.

In plain words
What is it for?
Use it to check GPU utilization, identify processes using the GPU, test vLLM health endpoints, and see which containers are running.
Why use it?
It shows what the host is doing before deployment or debugging, without changing the machine's state.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to check GPU utilization, identify processes using the GPU, test vLLM health endpoints, and see which containers are running.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chipi/agentic-ai-homelab/dgx-status
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.

Any agent
npx skills add chipi/agentic-ai-homelab --skill dgx-status
Clone the repo
git clone --depth 1 https://github.com/chipi/agentic-ai-homelab

Made for: Claude Code, Codex.

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 dgx-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/chipi/agentic-ai-homelab/dgx-status/github.svg)](https://agentmods.dev/skills/chipi/agentic-ai-homelab/dgx-status)
Your own site
<a href="https://agentmods.dev/skills/chipi/agentic-ai-homelab/dgx-status"><img src="https://agentmods.dev/badge/skills/chipi/agentic-ai-homelab/dgx-status/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dgx-status

Your own site · 80×15
<a href="https://agentmods.dev/skills/chipi/agentic-ai-homelab/dgx-status"><img src="https://agentmods.dev/badge/skills/chipi/agentic-ai-homelab/dgx-status.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 551 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00073 $0.00551
Opus 5 $0.00036 $0.00275
Sonnet 5 $0.00015 $0.00110
Haiku 4.5 $0.00007 $0.00055

Measured 10d ago against content hash 78d2cb356065, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

dgx-status scanned grade A 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 10d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

for p in 9000 8003; do curl -fsS -o /dev/null -w "$p:%{http_code} " http://127.0.0.1:$p/health 2>/dev/null; done; echo
workstation/claude/skills/dgx-status/SKILL.md · 41 lines

What it actually says

dgx-status

A read-only snapshot of the DGX. Answers "what is the box doing right now" before you deploy, switch modes, or debug a dead endpoint. Never mutates — no mode switch, no up/down, no kill.

Gather (all read-only, over ssh dgx-llm-1)

ssh dgx-llm-1 '
  ~/bin/gpu-mode-swap.sh status --json
  nvidia-smi --query-gpu=memory.used,memory.total,utilization.gpu --format=csv,noheader
  nvidia-smi --query-compute-apps=pid,process_name,used_memory --format=csv,noheader
  for p in 9000 8003; do curl -fsS -o /dev/null -w "$p:%{http_code} " http://127.0.0.1:$p/health 2>/dev/null; done; echo
  docker ps --format "{{.Names}} {{.Status}}" 2>/dev/null || echo "docker ps needs sudo"
'

Report

One compact block:

  • mode (code/research/idle/BROKEN-BOTH) + gpu_compute_app_count
  • GPU: utilization %. NOTE: on GB10 (unified memory) nvidia-smi memory.used/total returns [N/A] — don't rely on it. Use the compute-apps used_memory below (and DCGM/Grafana) for real memory pressure.
  • compute apps: pid / name / memory — who actually holds the GPU
  • vLLM health: which of :9000 / :8003 answers
  • containers: running stacks (or note docker needs sudo)

Flag mismatches

  • idle but a compute app is present → a training job / Ollama holds the GPU directly (switching would fight it — see the gpu-mode skill).
  • code but :9000 not healthy → the stack didn't come up cleanly.
  • BROKEN-BOTH, or both ports answering → bad state; surface it, don't fix blindly.
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. 10d ago First seen · 41 lines · 73 tokens per session scan A 78d2cb356065

Subscribe to this mod's changes

dgx-status is a skill published in the GitHub repository chipi/agentic-ai-homelab (2 stars, last pushed today), licensed MIT. It adds 73 tokens to every session and 551 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.