debug-unraid

debug-unraid is a skill for Claude Code from GoogilyBoogily/googilyboogily-claude-power-tools. It costs 363 tokens per session (3,660 once invoked), scanned A, original, MIT.

A troubleshooting guide for Unraid, a NAS operating system used to manage storage arrays, Docker containers, and virtual machines. It uses Unraid-specific diagnostic steps for disks, networking, pools, and hardware passthrough.

In plain words
What is it for?
Diagnosing array start or stop problems, parity errors, disabled or emulated disks, Docker networking issues, virtual-machine failures, GPU or USB passthrough, and BTRFS or ZFS pool problems.
Why use it?
It avoids applying generic Linux fixes to Unraid systems, where configuration, parity-protected storage, and version changes work differently. It helps confirm the cause before making a risky repair.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the unraid-troubleshooter plugin — 1 skill shipped together

Good fit Diagnosing array start or stop problems, parity errors, disabled or emulated disks, Docker networking issues, virtual-machine failures, GPU or USB passthrough, and BTRFS or ZFS pool problems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/googilyboogily/googilyboogily-claude-power-tools/debug-unraid
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 GoogilyBoogily/googilyboogily-claude-power-tools --skill debug-unraid
Clone the repo
git clone --depth 1 https://github.com/GoogilyBoogily/googilyboogily-claude-power-tools

Made for: Claude Code.

Or install unraid-troubleshooter, the plugin that ships this one along with the rest of its 1 skill.

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 debug-unraid

README.md
[![agentmods](https://agentmods.dev/badge/skills/googilyboogily/googilyboogily-claude-power-tools/debug-unraid/github.svg)](https://agentmods.dev/skills/googilyboogily/googilyboogily-claude-power-tools/debug-unraid)
Your own site
<a href="https://agentmods.dev/skills/googilyboogily/googilyboogily-claude-power-tools/debug-unraid"><img src="https://agentmods.dev/badge/skills/googilyboogily/googilyboogily-claude-power-tools/debug-unraid/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 debug-unraid

Your own site · 80×15
<a href="https://agentmods.dev/skills/googilyboogily/googilyboogily-claude-power-tools/debug-unraid"><img src="https://agentmods.dev/badge/skills/googilyboogily/googilyboogily-claude-power-tools/debug-unraid.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 363 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,660 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00363 $0.03660
Opus 5 $0.00181 $0.01830
Sonnet 5 $0.00073 $0.00732
Haiku 4.5 $0.00036 $0.00366

Measured 9d ago against content hash 8c40ffff69a1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

debug-unraid scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/unraid-troubleshooter/skills/debug-unraid/SKILL.md · 222 lines

How it starts

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

Debug Unraid

Symptom-first diagnostic playbook for Unraid (Lime Technology NAS OS). Unraid is not generic Linux — it boots from USB, configs live on /boot/config/ and regenerate every boot, and its array model (parity-protected JBOD with separate cache pools) breaks most generic-Linux assumptions. Diagnose with that model in mind.

Operating Principles

  1. Prove before fixing. Every hypothesis needs a confirming command. Unraid issues are often misattributed (a "disk failed" is usually a cable/controller fault; "array won't stop" is almost always docker/NFS/VM holding a mount). Run diagnostics (or read /var/log/syslog) first, theorize second.

  2. Identify the version first. Unraid 6.12 → 7.x changed kernel, added ZFS as a first-class file system, reworked Docker network handling, and removed ReiserFS. Version-specific bugs are real: the 7.1.0 ZFS-loopback hang, the 6.12.x macvlan call traces, the 7.0.0 NVMe ZFS suspension. Always capture version before recommending a fix:

    cat /etc/unraid-version          # e.g. version="7.2.5"
    uname -r                         # kernel
    

    When unsure of a version's known issues, fetch the release notes (Step 5 below).

  3. Never propose destructive fixes without explicit confirmation. "New Config", "format disk", "rebuild parity onto a wrong disk", zpool destroy, mkfs, removing a disk from the array — these can lose data permanently on a parity-protected array. State the risk; wait for the user.

  4. Read syslog before reading forums. /var/log/syslog, dmesg, the diagnostics zip, and the GUI's Tools → System Log are authoritative. The forum is a great hint source but full of stale fixes for older versions. Match forum advice to the user's version before applying.

  5. Use sequential thinking for multi-axis bugs. "Array won't stop + macvlan trace + VM crashed + cache BTRFS errors" is one root cause (often a flaky NVMe, or a kernel regression) with four downstream symptoms. Externalize the reasoning.

Read the full file on GitHub · 222 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. 9d ago First seen · 222 lines · 363 tokens per session scan A 8c40ffff69a1

Subscribe to this mod's changes

debug-unraid is a skill published in the GitHub repository GoogilyBoogily/googilyboogily-claude-power-tools (2 stars, last pushed 4mo ago), licensed MIT. It adds 363 tokens to every session and 3,660 once invoked, about $0.0018 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

gke-ai-troubleshooting-tpu-dynamic-slices-monitoring

Monitors, troubleshoots, and manages GKE TPU Dynamic Slices custom resources. Use when checking TPU slice lifecycle states, troubleshooting slice provisioning failures, validating single-slice or multi-slice (JobSet) workload manifests, or safely patching stuck finalizers and disabling the slice controller. Don't use…

google/skills · 107 tokens

gke-ai-troubleshooting-tpu-vbar-oom

Diagnoses and prevents vbarcontrolagent segfaults, out-of-memory (OOM) errors, and TPU device initialization failures on TPU v6e nodes in GKE caused by race conditions during TPU device resets or high-frequency metrics polling. Use when troubleshooting vbarcontrolagent crashes, memory cgroup OOMs in serial console…

google/skills · 125 tokens

competition-firmware-layout

Internal downstream skill for ctf-sandbox-orchestrator. CTF-sandbox workflow for firmware images, partition tables, boot chains, update packages, extracted filesystems, embedded configs, and device-facing trust boundaries. Use when the user asks to unpack firmware, map partition layout, inspect bootloader or init…

zhaoxuya520/reverse-skill · 110 tokens

doca-flow

Build and debug DOCA Flow applications on supported NVIDIA NICs/DPUs: define match/action pipes, initialize ports and representors, choose forwarding targets, validate pipes before hardware programming, read counters, match the Flow version to the installed DOCA release, and diagnose Flow API errors. Trigger on DOCA…

NVIDIA/skills · 140 tokens

diagnose-driver-install

Diagnose NVIDIA driver installation failures on DeepOps-managed nodes — nvidia-smi errors, "No devices were found", DKMS build failures, or GPU pods crash-looping. Use before reinstalling anything.

NVIDIA/deepops · 47 tokens

catc-troubleshoot

Catalyst Center troubleshooting workflows - device unreachable investigation, client connectivity issues, interface down analysis, site-wide outage triage, wireless roaming problems, integration with pyATS for CLI-level diagnostics. Use when a device is unreachable, a user reports connectivity problems, an interface…

automateyournetwork/netclaw · 74 tokens