{
  "schemaVersion": "1.0",
  "item": {
    "slug": "homeassistant-assist",
    "name": "Home Assistant Assist",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/DevelopmentCats/homeassistant-assist",
    "canonicalUrl": "https://clawhub.ai/DevelopmentCats/homeassistant-assist",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/homeassistant-assist",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=homeassistant-assist",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "README.md",
      "SKILL.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-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/homeassistant-assist"
    },
    "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/homeassistant-assist",
    "agentPageUrl": "https://openagent3.xyz/skills/homeassistant-assist/agent",
    "manifestUrl": "https://openagent3.xyz/skills/homeassistant-assist/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/homeassistant-assist/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 Assist",
        "body": "Control smart home devices by passing natural language to Home Assistant's Assist (Conversation) API. Fire and forget — trust Assist to handle intent parsing, entity resolution, and execution."
      },
      {
        "title": "When to Use This Skill",
        "body": "Use this skill when the user wants to control or query any smart home device. If it's in Home Assistant, Assist can handle it."
      },
      {
        "title": "How It Works",
        "body": "Pass the user's request directly to Assist:\n\ncurl -s -X POST \"$HASS_SERVER/api/conversation/process\" \\\n  -H \"Authorization: Bearer $HASS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\": \"USER REQUEST HERE\", \"language\": \"en\"}'\n\nTrust Assist. It handles:\n\nIntent parsing\nFuzzy entity name matching\nArea-aware commands\nExecution\nError responses"
      },
      {
        "title": "Handling Responses",
        "body": "Just relay what Assist says. The response.speech.plain.speech field contains the human-readable result.\n\n\"Turned on the light\" → Success, tell the user\n\"Sorry, I couldn't understand that\" → Assist couldn't parse it\n\"Sorry, there are multiple devices called X\" → Ambiguous name\n\nDon't over-interpret. If Assist says it worked, it worked. Trust the response."
      },
      {
        "title": "When Assist Returns an Error",
        "body": "Only if Assist returns an error (response_type: \"error\"), you can suggest HA-side improvements:\n\nErrorSuggestionno_intent_match\"HA didn't recognize that command\"no_valid_targets\"Try checking the entity name in HA, or add an alias\"Multiple devices\"There may be duplicate names — consider adding unique aliases in HA\"\n\nThese are suggestions for improving HA config, not skill failures. The skill did its job — it passed the request to Assist."
      },
      {
        "title": "Setup",
        "body": "Set environment variables in OpenClaw config:\n\n{\n  \"env\": {\n    \"HASS_SERVER\": \"https://your-homeassistant-url\",\n    \"HASS_TOKEN\": \"your-long-lived-access-token\"\n  }\n}\n\nGenerate a token: Home Assistant → Profile → Long-Lived Access Tokens → Create Token"
      },
      {
        "title": "Endpoint",
        "body": "POST /api/conversation/process\n\nNote: Use /api/conversation/process, NOT /api/services/conversation/process."
      },
      {
        "title": "Request",
        "body": "{\n  \"text\": \"turn on the kitchen lights\",\n  \"language\": \"en\"\n}"
      },
      {
        "title": "Response",
        "body": "{\n  \"response\": {\n    \"speech\": {\n      \"plain\": {\"speech\": \"Turned on the light\"}\n    },\n    \"response_type\": \"action_done\",\n    \"data\": {\n      \"success\": [{\"name\": \"Kitchen Light\", \"id\": \"light.kitchen\"}],\n      \"failed\": []\n    }\n  }\n}"
      },
      {
        "title": "Philosophy",
        "body": "Trust Assist — It knows the user's HA setup better than we do\nFire and forget — Pass the request, relay the response\nDon't troubleshoot — If something doesn't work, suggest HA config improvements\nKeep it simple — One API call, natural language in, natural language out"
      },
      {
        "title": "Links",
        "body": "Home Assistant Conversation API Docs"
      }
    ],
    "body": "Home Assistant Assist\n\nControl smart home devices by passing natural language to Home Assistant's Assist (Conversation) API. Fire and forget — trust Assist to handle intent parsing, entity resolution, and execution.\n\nWhen to Use This Skill\n\nUse this skill when the user wants to control or query any smart home device. If it's in Home Assistant, Assist can handle it.\n\nHow It Works\n\nPass the user's request directly to Assist:\n\ncurl -s -X POST \"$HASS_SERVER/api/conversation/process\" \\\n  -H \"Authorization: Bearer $HASS_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"text\": \"USER REQUEST HERE\", \"language\": \"en\"}'\n\n\nTrust Assist. It handles:\n\nIntent parsing\nFuzzy entity name matching\nArea-aware commands\nExecution\nError responses\nHandling Responses\n\nJust relay what Assist says. The response.speech.plain.speech field contains the human-readable result.\n\n\"Turned on the light\" → Success, tell the user\n\"Sorry, I couldn't understand that\" → Assist couldn't parse it\n\"Sorry, there are multiple devices called X\" → Ambiguous name\n\nDon't over-interpret. If Assist says it worked, it worked. Trust the response.\n\nWhen Assist Returns an Error\n\nOnly if Assist returns an error (response_type: \"error\"), you can suggest HA-side improvements:\n\nError\tSuggestion\nno_intent_match\t\"HA didn't recognize that command\"\nno_valid_targets\t\"Try checking the entity name in HA, or add an alias\"\nMultiple devices\t\"There may be duplicate names — consider adding unique aliases in HA\"\n\nThese are suggestions for improving HA config, not skill failures. The skill did its job — it passed the request to Assist.\n\nSetup\n\nSet environment variables in OpenClaw config:\n\n{\n  \"env\": {\n    \"HASS_SERVER\": \"https://your-homeassistant-url\",\n    \"HASS_TOKEN\": \"your-long-lived-access-token\"\n  }\n}\n\n\nGenerate a token: Home Assistant → Profile → Long-Lived Access Tokens → Create Token\n\nAPI Reference\nEndpoint\nPOST /api/conversation/process\n\n\nNote: Use /api/conversation/process, NOT /api/services/conversation/process.\n\nRequest\n{\n  \"text\": \"turn on the kitchen lights\",\n  \"language\": \"en\"\n}\n\nResponse\n{\n  \"response\": {\n    \"speech\": {\n      \"plain\": {\"speech\": \"Turned on the light\"}\n    },\n    \"response_type\": \"action_done\",\n    \"data\": {\n      \"success\": [{\"name\": \"Kitchen Light\", \"id\": \"light.kitchen\"}],\n      \"failed\": []\n    }\n  }\n}\n\nPhilosophy\nTrust Assist — It knows the user's HA setup better than we do\nFire and forget — Pass the request, relay the response\nDon't troubleshoot — If something doesn't work, suggest HA config improvements\nKeep it simple — One API call, natural language in, natural language out\nLinks\nHome Assistant Conversation API Docs"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/DevelopmentCats/homeassistant-assist",
    "publisherUrl": "https://clawhub.ai/DevelopmentCats/homeassistant-assist",
    "owner": "DevelopmentCats",
    "version": "1.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/homeassistant-assist",
    "downloadUrl": "https://openagent3.xyz/downloads/homeassistant-assist",
    "agentUrl": "https://openagent3.xyz/skills/homeassistant-assist/agent",
    "manifestUrl": "https://openagent3.xyz/skills/homeassistant-assist/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/homeassistant-assist/agent.md"
  }
}