skills$openclaw/homeassistant-n8n-agent
enchantedmotorcycle9.8k

by enchantedmotorcycle

homeassistant-n8n-agent – OpenClaw Skill

homeassistant-n8n-agent is an OpenClaw Skills integration for productivity workflows. Bridge OpenClaw with your n8n instance for Home Assistant automation.

9.8k stars9.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026productivity

Skill Snapshot

namehomeassistant-n8n-agent
descriptionBridge OpenClaw with your n8n instance for Home Assistant automation. OpenClaw Skills integration.
ownerenchantedmotorcycle
repositoryenchantedmotorcycle/homeassistant-n8n-agent
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @enchantedmotorcycle/homeassistant-n8n-agent
last updatedFeb 7, 2026

Maintainer

enchantedmotorcycle

enchantedmotorcycle

Maintains homeassistant-n8n-agent in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
665 B
SKILL.md
2.0 KB
SKILL.md

name: homeassistant-n8n-agent description: Bridge OpenClaw with your n8n instance for Home Assistant automation. homepage: https://n8n.io/ metadata: {"clawdis":{"emoji":"🤖","requires":{"bins":["curl"]}}}

Home‑Assistant – n8n Agent Skill

This skill bridges OpenClaw with your n8n instance for Home Assistant automation.

How it works

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"}'

Steps

Determine whether the user's prompt is an IoT inquiry.

  1. Is the inquiry about a current device state or multiple states? If so, requestType is state
  2. Is the inquiry asking for a device state to be changed? If so, requestType is action
  3. Is the inquiry asking about IoT data from the past? If so, requestType is historical.

Quick Reference

Action

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"}'

curl -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"}'

Historical

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"}'

State

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"}'
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install homeassistant-n8n-agent?

Run openclaw add @enchantedmotorcycle/homeassistant-n8n-agent in your terminal. This installs homeassistant-n8n-agent into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/enchantedmotorcycle/homeassistant-n8n-agent. Review commits and README documentation before installing.