{
  "schemaVersion": "1.0",
  "item": {
    "slug": "unraid",
    "name": "Unraid",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jmagar/unraid",
    "canonicalUrl": "https://clawhub.ai/jmagar/unraid",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/unraid",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=unraid",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "examples/disk-health.sh",
      "examples/read-logs.sh",
      "references/api-reference.md",
      "references/endpoints.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/unraid"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/unraid",
    "agentPageUrl": "https://openagent3.xyz/skills/unraid/agent",
    "manifestUrl": "https://openagent3.xyz/skills/unraid/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/unraid/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Unraid API Skill",
        "body": "Query and monitor Unraid servers using the GraphQL API. Access all 27 read-only endpoints for system monitoring, disk health, logs, containers, VMs, and more."
      },
      {
        "title": "Quick Start",
        "body": "Set your Unraid server credentials:\n\nexport UNRAID_URL=\"https://your-unraid-server/graphql\"\nexport UNRAID_API_KEY=\"your-api-key\"\n\nGet API Key: Settings → Management Access → API Keys → Create (select \"Viewer\" role)\n\nUse the helper script for any query:\n\n./scripts/unraid-query.sh -q \"{ online }\"\n\nOr run example scripts:\n\n./scripts/dashboard.sh              # Complete multi-server dashboard\n./examples/disk-health.sh           # Disk temperatures & health\n./examples/read-logs.sh syslog 20   # Read system logs"
      },
      {
        "title": "GraphQL API Structure",
        "body": "Unraid 7.2+ uses GraphQL (not REST). Key differences:\n\nSingle endpoint: /graphql for all queries\nRequest exactly what you need: Specify fields in query\nStrongly typed: Use introspection to discover fields\nNo container logs: Docker container output logs not accessible"
      },
      {
        "title": "Two Resources for Stats",
        "body": "info - Static hardware specs (CPU model, cores, OS version)\nmetrics - Real-time usage (CPU %, memory %, current load)\n\nAlways use metrics for monitoring, info for specifications."
      },
      {
        "title": "System Monitoring",
        "body": "Check if server is online:\n\n./scripts/unraid-query.sh -q \"{ online }\"\n\nGet CPU and memory usage:\n\n./scripts/unraid-query.sh -q \"{ metrics { cpu { percentTotal } memory { used total percentTotal } } }\"\n\nComplete dashboard:\n\n./scripts/dashboard.sh"
      },
      {
        "title": "Disk Management",
        "body": "Check disk health and temperatures:\n\n./examples/disk-health.sh\n\nGet array status:\n\n./scripts/unraid-query.sh -q \"{ array { state parityCheckStatus { status progress errors } } }\"\n\nList all physical disks (including cache/USB):\n\n./scripts/unraid-query.sh -q \"{ disks { name } }\""
      },
      {
        "title": "Storage Shares",
        "body": "List network shares:\n\n./scripts/unraid-query.sh -q \"{ shares { name comment } }\""
      },
      {
        "title": "Logs",
        "body": "List available logs:\n\n./scripts/unraid-query.sh -q \"{ logFiles { name size modifiedAt } }\"\n\nRead log content:\n\n./examples/read-logs.sh syslog 20"
      },
      {
        "title": "Containers & VMs",
        "body": "List Docker containers:\n\n./scripts/unraid-query.sh -q \"{ docker { containers { names image state status } } }\"\n\nList VMs:\n\n./scripts/unraid-query.sh -q \"{ vms { name state cpus memory } } }\"\n\nNote: Container output logs are NOT accessible via API. Use docker logs via SSH."
      },
      {
        "title": "Notifications",
        "body": "Get notification counts:\n\n./scripts/unraid-query.sh -q \"{ notifications { overview { unread { info warning alert total } } } }\""
      },
      {
        "title": "Helper Script Usage",
        "body": "The scripts/unraid-query.sh helper supports:\n\n# Basic usage\n./scripts/unraid-query.sh -u URL -k API_KEY -q \"QUERY\"\n\n# Use environment variables\nexport UNRAID_URL=\"https://unraid.local/graphql\"\nexport UNRAID_API_KEY=\"your-key\"\n./scripts/unraid-query.sh -q \"{ online }\"\n\n# Format options\n-f json    # Raw JSON (default)\n-f pretty  # Pretty-printed JSON\n-f raw     # Just the data (no wrapper)"
      },
      {
        "title": "Reference Files",
        "body": "For detailed documentation, consult:\n\nreferences/endpoints.md - Complete list of all 27 API endpoints\nreferences/troubleshooting.md - Common errors and solutions\nreferences/api-reference.md - Detailed field documentation"
      },
      {
        "title": "Helper Scripts",
        "body": "scripts/unraid-query.sh - Main GraphQL query tool\nscripts/dashboard.sh - Automated multi-server inventory reporter"
      },
      {
        "title": "Quick Command Reference",
        "body": "# System status\n./scripts/unraid-query.sh -q \"{ online metrics { cpu { percentTotal } } }\"\n\n# Disk health\n./examples/disk-health.sh\n\n# Array status\n./scripts/unraid-query.sh -q \"{ array { state } }\"\n\n# Read logs\n./examples/read-logs.sh syslog 20\n\n# Complete dashboard\n./scripts/dashboard.sh\n\n# List shares\n./scripts/unraid-query.sh -q \"{ shares { name } }\"\n\n# List containers\n./scripts/unraid-query.sh -q \"{ docker { containers { names state } } }\""
      }
    ],
    "body": "Unraid API Skill\n\nQuery and monitor Unraid servers using the GraphQL API. Access all 27 read-only endpoints for system monitoring, disk health, logs, containers, VMs, and more.\n\nQuick Start\n\nSet your Unraid server credentials:\n\nexport UNRAID_URL=\"https://your-unraid-server/graphql\"\nexport UNRAID_API_KEY=\"your-api-key\"\n\n\nGet API Key: Settings → Management Access → API Keys → Create (select \"Viewer\" role)\n\nUse the helper script for any query:\n\n./scripts/unraid-query.sh -q \"{ online }\"\n\n\nOr run example scripts:\n\n./scripts/dashboard.sh              # Complete multi-server dashboard\n./examples/disk-health.sh           # Disk temperatures & health\n./examples/read-logs.sh syslog 20   # Read system logs\n\nCore Concepts\nGraphQL API Structure\n\nUnraid 7.2+ uses GraphQL (not REST). Key differences:\n\nSingle endpoint: /graphql for all queries\nRequest exactly what you need: Specify fields in query\nStrongly typed: Use introspection to discover fields\nNo container logs: Docker container output logs not accessible\nTwo Resources for Stats\ninfo - Static hardware specs (CPU model, cores, OS version)\nmetrics - Real-time usage (CPU %, memory %, current load)\n\nAlways use metrics for monitoring, info for specifications.\n\nCommon Tasks\nSystem Monitoring\n\nCheck if server is online:\n\n./scripts/unraid-query.sh -q \"{ online }\"\n\n\nGet CPU and memory usage:\n\n./scripts/unraid-query.sh -q \"{ metrics { cpu { percentTotal } memory { used total percentTotal } } }\"\n\n\nComplete dashboard:\n\n./scripts/dashboard.sh\n\nDisk Management\n\nCheck disk health and temperatures:\n\n./examples/disk-health.sh\n\n\nGet array status:\n\n./scripts/unraid-query.sh -q \"{ array { state parityCheckStatus { status progress errors } } }\"\n\n\nList all physical disks (including cache/USB):\n\n./scripts/unraid-query.sh -q \"{ disks { name } }\"\n\nStorage Shares\n\nList network shares:\n\n./scripts/unraid-query.sh -q \"{ shares { name comment } }\"\n\nLogs\n\nList available logs:\n\n./scripts/unraid-query.sh -q \"{ logFiles { name size modifiedAt } }\"\n\n\nRead log content:\n\n./examples/read-logs.sh syslog 20\n\nContainers & VMs\n\nList Docker containers:\n\n./scripts/unraid-query.sh -q \"{ docker { containers { names image state status } } }\"\n\n\nList VMs:\n\n./scripts/unraid-query.sh -q \"{ vms { name state cpus memory } } }\"\n\n\nNote: Container output logs are NOT accessible via API. Use docker logs via SSH.\n\nNotifications\n\nGet notification counts:\n\n./scripts/unraid-query.sh -q \"{ notifications { overview { unread { info warning alert total } } } }\"\n\nHelper Script Usage\n\nThe scripts/unraid-query.sh helper supports:\n\n# Basic usage\n./scripts/unraid-query.sh -u URL -k API_KEY -q \"QUERY\"\n\n# Use environment variables\nexport UNRAID_URL=\"https://unraid.local/graphql\"\nexport UNRAID_API_KEY=\"your-key\"\n./scripts/unraid-query.sh -q \"{ online }\"\n\n# Format options\n-f json    # Raw JSON (default)\n-f pretty  # Pretty-printed JSON\n-f raw     # Just the data (no wrapper)\n\nAdditional Resources\nReference Files\n\nFor detailed documentation, consult:\n\nreferences/endpoints.md - Complete list of all 27 API endpoints\nreferences/troubleshooting.md - Common errors and solutions\nreferences/api-reference.md - Detailed field documentation\nHelper Scripts\nscripts/unraid-query.sh - Main GraphQL query tool\nscripts/dashboard.sh - Automated multi-server inventory reporter\nQuick Command Reference\n# System status\n./scripts/unraid-query.sh -q \"{ online metrics { cpu { percentTotal } } }\"\n\n# Disk health\n./examples/disk-health.sh\n\n# Array status\n./scripts/unraid-query.sh -q \"{ array { state } }\"\n\n# Read logs\n./examples/read-logs.sh syslog 20\n\n# Complete dashboard\n./scripts/dashboard.sh\n\n# List shares\n./scripts/unraid-query.sh -q \"{ shares { name } }\"\n\n# List containers\n./scripts/unraid-query.sh -q \"{ docker { containers { names state } } }\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jmagar/unraid",
    "publisherUrl": "https://clawhub.ai/jmagar/unraid",
    "owner": "jmagar",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/unraid",
    "downloadUrl": "https://openagent3.xyz/downloads/unraid",
    "agentUrl": "https://openagent3.xyz/skills/unraid/agent",
    "manifestUrl": "https://openagent3.xyz/skills/unraid/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/unraid/agent.md"
  }
}