{
  "schemaVersion": "1.0",
  "item": {
    "slug": "glitch-homeassistant",
    "name": "Homeassistant",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/chris6970barbarian-hue/glitch-homeassistant",
    "canonicalUrl": "https://clawhub.ai/chris6970barbarian-hue/glitch-homeassistant",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/glitch-homeassistant",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=glitch-homeassistant",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "config.json"
    ],
    "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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/glitch-homeassistant"
    },
    "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/glitch-homeassistant",
    "agentPageUrl": "https://openagent3.xyz/skills/glitch-homeassistant/agent",
    "manifestUrl": "https://openagent3.xyz/skills/glitch-homeassistant/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/glitch-homeassistant/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": "Home Assistant Skill",
        "body": "Control smart home devices via Home Assistant API."
      },
      {
        "title": "Skill Metadata",
        "body": "Name: homeassistant\nType: OpenClaw Skill\nPurpose: Control lights, switches, covers, climate, scenes, scripts via HA API"
      },
      {
        "title": "Prerequisites",
        "body": "Home Assistant running on local network\nLong-Lived Access Token from HA Profile page"
      },
      {
        "title": "Configuration (One-Command)",
        "body": "# Run this to configure\nha-cli setup <HA_URL> <TOKEN>\n\n# Example:\nha-cli setup 192.168.1.100 your_long_lived_token_here\n\nOr set environment variables:\n\nexport HA_URL=\"http://homeassistant.local:8123\"\nexport HA_TOKEN=\"your_token_here\""
      },
      {
        "title": "Basic Control",
        "body": "# Turn on device (any type)\nha-cli on <device_name>\nha-cli <device_name> on\n\n# Turn off device\nha-cli off <device_name>\nha-cli <device_name> off"
      },
      {
        "title": "Brightness & Color",
        "body": "# Set brightness (0-100)\nha-cli brightness <0-100> <device_name>\nha-cli <device_name> brightness 75\n\n# Set RGB color\nha-cli rgb #RRGGBB <device_name>\nha-cli rgb #FF5500 \"Living Room\""
      },
      {
        "title": "Temperature",
        "body": "# Set temperature\nha-cli <temperature> <thermostat_name>\nha-cli 22 thermostat"
      },
      {
        "title": "Scenes & Scripts",
        "body": "# Activate scene\nha-cli scene <scene_name>\nha-cli scene movie\n\n# Run script\nha-cli script <script_name>\nha-cli script morning"
      },
      {
        "title": "Status & Discovery",
        "body": "# Check HA status\nha-cli status\nha-cli info\n\n# List all entities\nha-cli list\nha-cli list entities\n\n# List by domain\nha-cli list light\nha-cli list switch\nha-cli list climate"
      },
      {
        "title": "Supported Device Types",
        "body": "DomainCommandsExampleslighton, off, brightness, rgbha-cli on living roomswitchon, offha-cli off tvcoveropen, close, stopha-cli open blindsclimatetemperature, modeha-cli 22 thermostatlocklock, unlockha-cli lock front doorsceneactivateha-cli scene moviescriptrunha-cli script morning"
      },
      {
        "title": "Entity Matching",
        "body": "Case insensitive\nPartial name matching (bed → Bedroom Light)\nFuzzy matching enabled"
      },
      {
        "title": "Error Handling",
        "body": "Connection error: Shows HA URL and token setup instructions\nEntity not found: Shows similar entity suggestions\nInvalid command: Shows usage help"
      },
      {
        "title": "Related Skills",
        "body": "openhue (Philips Hue)\nsonoscli (Sonos speakers)\neightctl (Eight Sleep)"
      },
      {
        "title": "Files",
        "body": "homeassistant/\n├── SKILL.md      # This file\n├── README.md     # User documentation\n├── ha-cli        # Main CLI executable\n├── ha            # Bash wrapper\n└── config.json   # Saved configuration"
      }
    ],
    "body": "Home Assistant Skill\n\nControl smart home devices via Home Assistant API.\n\nSkill Metadata\nName: homeassistant\nType: OpenClaw Skill\nPurpose: Control lights, switches, covers, climate, scenes, scripts via HA API\nSetup Commands\nPrerequisites\nHome Assistant running on local network\nLong-Lived Access Token from HA Profile page\nConfiguration (One-Command)\n# Run this to configure\nha-cli setup <HA_URL> <TOKEN>\n\n# Example:\nha-cli setup 192.168.1.100 your_long_lived_token_here\n\n\nOr set environment variables:\n\nexport HA_URL=\"http://homeassistant.local:8123\"\nexport HA_TOKEN=\"your_token_here\"\n\nUsage Commands\nBasic Control\n# Turn on device (any type)\nha-cli on <device_name>\nha-cli <device_name> on\n\n# Turn off device\nha-cli off <device_name>\nha-cli <device_name> off\n\nBrightness & Color\n# Set brightness (0-100)\nha-cli brightness <0-100> <device_name>\nha-cli <device_name> brightness 75\n\n# Set RGB color\nha-cli rgb #RRGGBB <device_name>\nha-cli rgb #FF5500 \"Living Room\"\n\nTemperature\n# Set temperature\nha-cli <temperature> <thermostat_name>\nha-cli 22 thermostat\n\nScenes & Scripts\n# Activate scene\nha-cli scene <scene_name>\nha-cli scene movie\n\n# Run script\nha-cli script <script_name>\nha-cli script morning\n\nStatus & Discovery\n# Check HA status\nha-cli status\nha-cli info\n\n# List all entities\nha-cli list\nha-cli list entities\n\n# List by domain\nha-cli list light\nha-cli list switch\nha-cli list climate\n\nSupported Device Types\nDomain\tCommands\tExamples\nlight\ton, off, brightness, rgb\tha-cli on living room\nswitch\ton, off\tha-cli off tv\ncover\topen, close, stop\tha-cli open blinds\nclimate\ttemperature, mode\tha-cli 22 thermostat\nlock\tlock, unlock\tha-cli lock front door\nscene\tactivate\tha-cli scene movie\nscript\trun\tha-cli script morning\nEntity Matching\nCase insensitive\nPartial name matching (bed → Bedroom Light)\nFuzzy matching enabled\nError Handling\nConnection error: Shows HA URL and token setup instructions\nEntity not found: Shows similar entity suggestions\nInvalid command: Shows usage help\nRelated Skills\nopenhue (Philips Hue)\nsonoscli (Sonos speakers)\neightctl (Eight Sleep)\nFiles\nhomeassistant/\n├── SKILL.md      # This file\n├── README.md     # User documentation\n├── ha-cli        # Main CLI executable\n├── ha            # Bash wrapper\n└── config.json   # Saved configuration"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/chris6970barbarian-hue/glitch-homeassistant",
    "publisherUrl": "https://clawhub.ai/chris6970barbarian-hue/glitch-homeassistant",
    "owner": "chris6970barbarian-hue",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/glitch-homeassistant",
    "downloadUrl": "https://openagent3.xyz/downloads/glitch-homeassistant",
    "agentUrl": "https://openagent3.xyz/skills/glitch-homeassistant/agent",
    "manifestUrl": "https://openagent3.xyz/skills/glitch-homeassistant/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/glitch-homeassistant/agent.md"
  }
}