{
  "schemaVersion": "1.0",
  "item": {
    "slug": "homeassistant-n8n-agent",
    "name": "Homeassistant N8n Agent",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/enchantedmotorcycle/homeassistant-n8n-agent",
    "canonicalUrl": "https://clawhub.ai/enchantedmotorcycle/homeassistant-n8n-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/homeassistant-n8n-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=homeassistant-n8n-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "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. 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-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-n8n-agent"
    },
    "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-n8n-agent",
    "agentPageUrl": "https://openagent3.xyz/skills/homeassistant-n8n-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/homeassistant-n8n-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/homeassistant-n8n-agent/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": "Home‑Assistant – n8n Agent Skill",
        "body": "This skill bridges OpenClaw with your n8n instance for Home Assistant automation."
      },
      {
        "title": "How it works",
        "body": "Uses curl to trigger a n8n workflow for all things related to IoT.  All requests should be a POST formatted as follows: curl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"USERS QUESTION/REQUEST\", \"requestType\": \"DETERMINED REQUEST TYPE\", \"sessionId\":\"openclaw\"}'"
      },
      {
        "title": "Steps",
        "body": "Determine the nature of a user's prompt.\n\nIs the inquiry about a current device state or multiple states?  If so, requestType is state\nIs the inquiry asking for an IoT device state to be changed?  If so, requestType is action\nIs the inquiry asking about IoT data from the past?  If so, requestType is historical\nIs the inquiry asking about calendar or schedule information?  If so, requestType is calendar"
      },
      {
        "title": "Action",
        "body": "curl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"turn off the office light\", \"requestType\": \"action\", \"sessionId\":\"openclaw\"}'\n\ncurl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"change the downstairs thermostat to 72\", \"requestType\": \"action\", \"sessionId\":\"openclaw\"}'"
      },
      {
        "title": "Historical",
        "body": "curl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"when was the front door last opened?\", \"requestType\": \"historical\", \"sessionId\":\"openclaw\"}'"
      },
      {
        "title": "State",
        "body": "curl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"is the air conditioner running?\", \"requestType\": \"state, \"sessionId\":\"openclaw\"}'"
      },
      {
        "title": "Calendar",
        "body": "curl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"when is my next meeting?\", \"requestType\": \"calendar, \"sessionId\":\"openclaw\"}'"
      }
    ],
    "body": "Home‑Assistant – n8n Agent Skill\n\nThis skill bridges OpenClaw with your n8n instance for Home Assistant automation.\n\nHow it works\n\nUses curl to trigger a n8n workflow for all things related to IoT. All requests should be a POST formatted as follows: curl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"USERS QUESTION/REQUEST\", \"requestType\": \"DETERMINED REQUEST TYPE\", \"sessionId\":\"openclaw\"}'\n\nSteps\n\nDetermine the nature of a user's prompt.\n\nIs the inquiry about a current device state or multiple states? If so, requestType is state\nIs the inquiry asking for an IoT device state to be changed? If so, requestType is action\nIs the inquiry asking about IoT data from the past? If so, requestType is historical\nIs the inquiry asking about calendar or schedule information? If so, requestType is calendar\nQuick Reference\nAction\ncurl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"turn off the office light\", \"requestType\": \"action\", \"sessionId\":\"openclaw\"}'\n\ncurl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"change the downstairs thermostat to 72\", \"requestType\": \"action\", \"sessionId\":\"openclaw\"}'\n\nHistorical\ncurl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"when was the front door last opened?\", \"requestType\": \"historical\", \"sessionId\":\"openclaw\"}'\n\nState\ncurl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"is the air conditioner running?\", \"requestType\": \"state, \"sessionId\":\"openclaw\"}'\n\nCalendar\ncurl -X POST http://localhost:5678/webhook/05f3f217-08b9-42de-a84a-e13f135bde73 -H \"Content-Type: application/json\" -d '{\"chatInput\": \"when is my next meeting?\", \"requestType\": \"calendar, \"sessionId\":\"openclaw\"}'"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/enchantedmotorcycle/homeassistant-n8n-agent",
    "publisherUrl": "https://clawhub.ai/enchantedmotorcycle/homeassistant-n8n-agent",
    "owner": "enchantedmotorcycle",
    "version": "1.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/homeassistant-n8n-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/homeassistant-n8n-agent",
    "agentUrl": "https://openagent3.xyz/skills/homeassistant-n8n-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/homeassistant-n8n-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/homeassistant-n8n-agent/agent.md"
  }
}