{
  "schemaVersion": "1.0",
  "item": {
    "slug": "idrac",
    "name": "iDRAC",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/eddygk/idrac",
    "canonicalUrl": "https://clawhub.ai/eddygk/idrac",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/idrac",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=idrac",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/endpoints.md",
      "scripts/idrac.sh"
    ],
    "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. 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. 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/idrac"
    },
    "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/idrac",
    "agentPageUrl": "https://openagent3.xyz/skills/idrac/agent",
    "manifestUrl": "https://openagent3.xyz/skills/idrac/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/idrac/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "iDRAC Skill",
        "body": "Monitor and manage Dell PowerEdge servers via iDRAC Redfish API."
      },
      {
        "title": "First-Time Setup",
        "body": "Create a config file at ~/.config/idrac-skill/config:\n\nmkdir -p ~/.config/idrac-skill\ncat > ~/.config/idrac-skill/config <<'EOF'\n# iDRAC connection settings\nIDRAC_IP=\"<your-idrac-ip>\"\n\n# Credential source: \"1password\" | \"file\" | \"env\"\nCREDS_SOURCE=\"file\"\n\n# For CREDS_SOURCE=\"1password\":\n#   OP_ITEM=\"<1password-item-name>\"\n#\n# For CREDS_SOURCE=\"file\":\n#   Create ~/.idrac-credentials with contents: username:password\n#   chmod 600 ~/.idrac-credentials\n#\n# For CREDS_SOURCE=\"env\":\n#   Export IDRAC_USER and IDRAC_PASS\nEOF"
      },
      {
        "title": "Authentication",
        "body": "The helper script supports three credential sources:\n\nSourceConfigHow It Works1passwordOP_ITEM=\"item-name\"Pulls username:password via op CLI, caches to ~/.idrac-credentialsfile(default)Reads ~/.idrac-credentials (format: user:pass, mode 600)env—Uses $IDRAC_USER and $IDRAC_PASS environment variables"
      },
      {
        "title": "Helper Script",
        "body": "Location: scripts/idrac.sh (relative to this skill directory)\n\nidrac.sh test            # Test connectivity and authentication\nidrac.sh status          # System summary (model, power, CPU, memory)\nidrac.sh health          # Health checks (temps, fans, power)\nidrac.sh power           # Current power state\nidrac.sh inventory       # Full hardware inventory\nidrac.sh logs            # Recent system event log entries (last 10)\nidrac.sh thermal         # Detailed temperature and fan status\nidrac.sh storage         # RAID/disk status\nidrac.sh reset-types     # Available power reset types"
      },
      {
        "title": "Workflow",
        "body": "Load config from ~/.config/idrac-skill/config\nHydrate credentials (JIT pattern) if needed\nDetermine operation type:\n\nRead-only (status, health, logs, inventory) → Execute directly\nDestructive (power off, restart, BIOS changes) → Confirm with user first\n\n\nQuery Redfish API via curl + Basic Auth (or session token for batch ops)\nParse JSON with jq\nSurface findings to user in natural language\nNever expose credentials in responses"
      },
      {
        "title": "Endpoint Reference",
        "body": "For raw Redfish API endpoints (system info, thermal, storage, network, logs, power ops, BIOS, firmware, session auth, Dell OEM attributes):\n\n→ See references/endpoints.md"
      },
      {
        "title": "Security Notes",
        "body": "Never log or display credentials — use --silent and pipe to jq\nCredential file must be mode 600 (chmod 600 ~/.idrac-credentials)\nTLS verification disabled (-k) — iDRAC uses self-signed certs (acceptable for private networks)\nPower operations are destructive — confirm with user before executing shutdown/restart"
      },
      {
        "title": "Compatibility",
        "body": "Works with Dell iDRAC 8 (Redfish 1.0–1.4) and iDRAC 9 (Redfish 1.6+). Covers PowerEdge 13th gen (R630/R730) through current gen. See endpoints reference for version-specific notes.\n\nNote: iDRAC 8 API responses can take 5–10s per call. The test command makes 4 sequential calls (~30–40s total). Set exec timeouts accordingly. iDRAC 9 is significantly faster."
      }
    ],
    "body": "iDRAC Skill\n\nMonitor and manage Dell PowerEdge servers via iDRAC Redfish API.\n\nFirst-Time Setup\n\nCreate a config file at ~/.config/idrac-skill/config:\n\nmkdir -p ~/.config/idrac-skill\ncat > ~/.config/idrac-skill/config <<'EOF'\n# iDRAC connection settings\nIDRAC_IP=\"<your-idrac-ip>\"\n\n# Credential source: \"1password\" | \"file\" | \"env\"\nCREDS_SOURCE=\"file\"\n\n# For CREDS_SOURCE=\"1password\":\n#   OP_ITEM=\"<1password-item-name>\"\n#\n# For CREDS_SOURCE=\"file\":\n#   Create ~/.idrac-credentials with contents: username:password\n#   chmod 600 ~/.idrac-credentials\n#\n# For CREDS_SOURCE=\"env\":\n#   Export IDRAC_USER and IDRAC_PASS\nEOF\n\nAuthentication\n\nThe helper script supports three credential sources:\n\nSource\tConfig\tHow It Works\n1password\tOP_ITEM=\"item-name\"\tPulls username:password via op CLI, caches to ~/.idrac-credentials\nfile\t(default)\tReads ~/.idrac-credentials (format: user:pass, mode 600)\nenv\t—\tUses $IDRAC_USER and $IDRAC_PASS environment variables\nHelper Script\n\nLocation: scripts/idrac.sh (relative to this skill directory)\n\nidrac.sh test            # Test connectivity and authentication\nidrac.sh status          # System summary (model, power, CPU, memory)\nidrac.sh health          # Health checks (temps, fans, power)\nidrac.sh power           # Current power state\nidrac.sh inventory       # Full hardware inventory\nidrac.sh logs            # Recent system event log entries (last 10)\nidrac.sh thermal         # Detailed temperature and fan status\nidrac.sh storage         # RAID/disk status\nidrac.sh reset-types     # Available power reset types\n\nWorkflow\nLoad config from ~/.config/idrac-skill/config\nHydrate credentials (JIT pattern) if needed\nDetermine operation type:\nRead-only (status, health, logs, inventory) → Execute directly\nDestructive (power off, restart, BIOS changes) → Confirm with user first\nQuery Redfish API via curl + Basic Auth (or session token for batch ops)\nParse JSON with jq\nSurface findings to user in natural language\nNever expose credentials in responses\nEndpoint Reference\n\nFor raw Redfish API endpoints (system info, thermal, storage, network, logs, power ops, BIOS, firmware, session auth, Dell OEM attributes):\n\n→ See references/endpoints.md\n\nSecurity Notes\nNever log or display credentials — use --silent and pipe to jq\nCredential file must be mode 600 (chmod 600 ~/.idrac-credentials)\nTLS verification disabled (-k) — iDRAC uses self-signed certs (acceptable for private networks)\nPower operations are destructive — confirm with user before executing shutdown/restart\nCompatibility\n\nWorks with Dell iDRAC 8 (Redfish 1.0–1.4) and iDRAC 9 (Redfish 1.6+). Covers PowerEdge 13th gen (R630/R730) through current gen. See endpoints reference for version-specific notes.\n\nNote: iDRAC 8 API responses can take 5–10s per call. The test command makes 4 sequential calls (~30–40s total). Set exec timeouts accordingly. iDRAC 9 is significantly faster."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/eddygk/idrac",
    "publisherUrl": "https://clawhub.ai/eddygk/idrac",
    "owner": "eddygk",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/idrac",
    "downloadUrl": "https://openagent3.xyz/downloads/idrac",
    "agentUrl": "https://openagent3.xyz/skills/idrac/agent",
    "manifestUrl": "https://openagent3.xyz/skills/idrac/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/idrac/agent.md"
  }
}