Claim this agent
Agent DossierCLAWHUBSafety 84/100

Xpersona Agent

Home Assistant Clawbridge

Control Home Assistant devices via ClawBridge API. Use when users ask to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow. Skill: Home Assistant Clawbridge Owner: finalbillybong Summary: Control Home Assistant devices via ClawBridge API. Use when users ask to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow. Tags: latest:1.0.1 Version history: v1.0.1 | 2026-02-12T18:47:01.935Z | user - Expanded documentation fo

OpenClaw ยท self-declared
964 downloadsTrust evidence available
clawhub skill install kn7914ekxf0n1eb58r1nx410dx80y7hr:home-assistant-clawbradge

Overall rank

#62

Adoption

964 downloads

Trust

Unknown

Freshness

Mar 1, 2026

Freshness

Last checked Mar 1, 2026

Best For

Home Assistant Clawbridge is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, CLAWHUB, runtime-metrics, public facts pack

Overview

Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.

Verifiededitorial-content

Overview

Executive Summary

Control Home Assistant devices via ClawBridge API. Use when users ask to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow. Skill: Home Assistant Clawbridge Owner: finalbillybong Summary: Control Home Assistant devices via ClawBridge API. Use when users ask to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow. Tags: latest:1.0.1 Version history: v1.0.1 | 2026-02-12T18:47:01.935Z | user - Expanded documentation fo Capability contract not published. No trust telemetry is available yet. 964 downloads reported by the source. Last updated 4/15/2026.

No verified compatibility signals964 downloads

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Mar 1, 2026

Vendor

Clawhub

Artifacts

0

Benchmarks

0

Last release

1.0.1

Install & run

Setup Snapshot

clawhub skill install kn7914ekxf0n1eb58r1nx410dx80y7hr:home-assistant-clawbradge
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence & Timeline

Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.

Verifiededitorial-content

Artifacts & Docs

Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.

Self-declaredCLAWHUB

Captured outputs

Artifacts Archive

Extracted files

2

Examples

6

Snippets

0

Languages

Unknown

Executable Examples

bash

python3 /path/to/skills/home-assistant/scripts/ha-discord.py &

bash

# Find the process and kill it
pgrep -f ha-discord.py
kill <PID>

python

# Watch only these (empty = all)
WATCH_ENTITIES = ["light.office", "binary_sensor.front_door"]

# Ignore these
IGNORE_ENTITIES = ["sensor.cpu_temp"]

bash

curl -s "http://YOUR_CLAWBRIDGE_IP:PORT/api/states" \
  -H "Authorization: Bearer YOUR_API_KEY" \

bash

curl -s "http://YOUR_CLAWBRIDGE_IP:PORT/api/states" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  | grep -o '"entity_id": "[^"]*"' | cut -d'"' -f4

bash

curl -s "http://YOUR_CLAWBRIDGE_IP:PORT/api/states/{entity_id}" \
  -H "Authorization: Bearer YOUR_API_KEY"
Extracted Files

SKILL.md

---
name: home-assistant
description: Control Home Assistant devices via ClawBridge API. Use when users ask to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow.
---

# Home Assistant Skill

Control Home Assistant devices through ClawBridge (air-gapped API proxy with human approval).

## What is ClawBridge?

ClawBridge is an API gateway that sits between AI agents and Home Assistant:
- **Token isolation:** Your HA token never leaves ClawBridge
- **Human approval:** Service calls require explicit approval via web UI
- **Read-only by default:** AI can query sensors/state freely
- **Audit trail:** Logs every request for transparency

## Configuration

- **Base URL:** `http://YOUR_CLAWBRIDGE_IP:PORT` (e.g., `http://192.168.1.100:8100`)
- **API Key:** Generate in ClawBridge web UI
- **Discord Webhook:** (Optional) For real-time notifications

## Installation

1. Install ClawBridge as a Home Assistant add-on or standalone Docker container
2. Generate an API key in the ClawBridge web UI
3. Configure the Discord webhook (optional, for notifications)
4. Edit `scripts/ha-discord.py` to set your entity filters

## Real-Time Notifications

**Python โ†’ Discord Direct** โ€” zero AI cost, instant delivery.

### Start Monitoring
```bash
python3 /path/to/skills/home-assistant/scripts/ha-discord.py &
```

### Stop Monitoring
```bash
# Find the process and kill it
pgrep -f ha-discord.py
kill <PID>
```

### Filter Entities

Edit `scripts/ha-discord.py`:
```python
# Watch only these (empty = all)
WATCH_ENTITIES = ["light.office", "binary_sensor.front_door"]

# Ignore these
IGNORE_ENTITIES = ["sensor.cpu_temp"]
```

## Device Control

### Check Exposed Entities
```bash
curl -s "http://YOUR_CLAWBRIDGE_IP:PORT/api/states" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  | grep -o '"entity_id": "[^"]*"' | cut -d'"' -f4
```

### Check Entity State
```bash
curl -s "http://YOUR_CLAWBRIDGE_IP:PORT/api/states/{entity_id}" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

### Control a Device
```bash
curl -s -X POST "http://YOUR_CLAWBRIDGE_IP:PORT/api/services/{domain}/{service}" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"entity_id": "{entity_id}"}'
```

**Note:** Service calls require human approval via ClawBridge web UI.

### Quick Script
```bash
./skills/home-assistant/scripts/ha-control.sh state light.office
./skills/home-assistant/scripts/ha-control.sh on light.office
./skills/home-assistant/scripts/ha-control.sh off light.office
```

## Notification Formats

| Domain | Message |
|--------|---------|
| light | ๐Ÿ’ก **{name}** turned **on/off** |
| switch | ๐Ÿ”Œ **{name}** turned **on/off** |
| binary_sensor (door) | ๐Ÿšช **{name}** **opened/closed** |
| binary_sensor (motion) | ๐Ÿ“ก **{name}** **motion detected** |
| person | ๐Ÿ‘ค **{name}** is now **{state}** |
| lock | ๐Ÿ”’ **{name}** **locked/unlocked** |
| ot

_meta.json

{
  "ownerId": "kn7914ekxf0n1eb58r1nx410dx80y7hr",
  "slug": "home-assistant-clawbradge",
  "version": "1.0.1",
  "publishedAt": 1770922021935
}

Editorial read

Docs & README

Docs source

CLAWHUB

Editorial quality

ready

Control Home Assistant devices via ClawBridge API. Use when users ask to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow. Skill: Home Assistant Clawbridge Owner: finalbillybong Summary: Control Home Assistant devices via ClawBridge API. Use when users ask to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow. Tags: latest:1.0.1 Version history: v1.0.1 | 2026-02-12T18:47:01.935Z | user - Expanded documentation fo

Full README

Skill: Home Assistant Clawbridge

Owner: finalbillybong

Summary: Control Home Assistant devices via ClawBridge API. Use when users ask to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow.

Tags: latest:1.0.1

Version history:

v1.0.1 | 2026-02-12T18:47:01.935Z | user

  • Expanded documentation for installation, configuration, and usage, including a new "What is ClawBridge?" overview.
  • Generalized and clarified all endpoint, token, and webhook instructions (no hardcoded IPs or secrets).
  • Added sections on security, audit, and the advantages of ClawBridge compared to direct Home Assistant API access.
  • Updated process management instructions for starting and stopping notification scripts.
  • Improved structure and explanations throughout; added a license section.

v1.0.0 | 2026-02-12T18:33:40.052Z | user

Initial release of home-assistant-clawbradge.

  • Control and monitor Home Assistant devices via the ClawBridge API.
  • Real-time device state notifications to Discord through Python script; instant, zero server-side cost.
  • Human approval flow for device control actions.
  • Includes configuration, entity filtering, monitoring, and command usage instructions.
  • Provides example scripts and API calls for checking and controlling devices.

Archive index:

Archive v1.0.1: 2 files, 2041 bytes

Files: SKILL.md (3829b), _meta.json (144b)

File v1.0.1:SKILL.md


name: home-assistant description: Control Home Assistant devices via ClawBridge API. Use when users ask to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow.

Home Assistant Skill

Control Home Assistant devices through ClawBridge (air-gapped API proxy with human approval).

What is ClawBridge?

ClawBridge is an API gateway that sits between AI agents and Home Assistant:

  • Token isolation: Your HA token never leaves ClawBridge
  • Human approval: Service calls require explicit approval via web UI
  • Read-only by default: AI can query sensors/state freely
  • Audit trail: Logs every request for transparency

Configuration

  • Base URL: http://YOUR_CLAWBRIDGE_IP:PORT (e.g., http://192.168.1.100:8100)
  • API Key: Generate in ClawBridge web UI
  • Discord Webhook: (Optional) For real-time notifications

Installation

  1. Install ClawBridge as a Home Assistant add-on or standalone Docker container
  2. Generate an API key in the ClawBridge web UI
  3. Configure the Discord webhook (optional, for notifications)
  4. Edit scripts/ha-discord.py to set your entity filters

Real-Time Notifications

Python โ†’ Discord Direct โ€” zero AI cost, instant delivery.

Start Monitoring

python3 /path/to/skills/home-assistant/scripts/ha-discord.py &

Stop Monitoring

# Find the process and kill it
pgrep -f ha-discord.py
kill <PID>

Filter Entities

Edit scripts/ha-discord.py:

# Watch only these (empty = all)
WATCH_ENTITIES = ["light.office", "binary_sensor.front_door"]

# Ignore these
IGNORE_ENTITIES = ["sensor.cpu_temp"]

Device Control

Check Exposed Entities

curl -s "http://YOUR_CLAWBRIDGE_IP:PORT/api/states" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  | grep -o '"entity_id": "[^"]*"' | cut -d'"' -f4

Check Entity State

curl -s "http://YOUR_CLAWBRIDGE_IP:PORT/api/states/{entity_id}" \
  -H "Authorization: Bearer YOUR_API_KEY"

Control a Device

curl -s -X POST "http://YOUR_CLAWBRIDGE_IP:PORT/api/services/{domain}/{service}" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"entity_id": "{entity_id}"}'

Note: Service calls require human approval via ClawBridge web UI.

Quick Script

./skills/home-assistant/scripts/ha-control.sh state light.office
./skills/home-assistant/scripts/ha-control.sh on light.office
./skills/home-assistant/scripts/ha-control.sh off light.office

Notification Formats

| Domain | Message | |--------|---------| | light | ๐Ÿ’ก {name} turned on/off | | switch | ๐Ÿ”Œ {name} turned on/off | | binary_sensor (door) | ๐Ÿšช {name} opened/closed | | binary_sensor (motion) | ๐Ÿ“ก {name} motion detected | | person | ๐Ÿ‘ค {name} is now {state} | | lock | ๐Ÿ”’ {name} locked/unlocked | | other | ๐Ÿ”” {name} old โ†’ new |

Scripts

| Script | Purpose | |--------|---------| | ha-discord.py | Primary โ€” WebSocket โ†’ Discord direct (zero cost) | | ha-monitor.py | WebSocket โ†’ file (for cron-based delivery) | | ha-control.sh | Quick CLI for on/off/state |

Why ClawBridge?

The Problem with Standard HA AI Integration

  • Long-lived tokens = full API access
  • No approval workflow for destructive actions
  • One prompt injection = uncontrolled home access

The ClawBridge Solution

  • AI gets scoped API keys (not your HA token)
  • Service calls queue for human approval
  • Read operations pass through instantly
  • Full audit trail of every request

API Reference

See references/clawbridge-api.md

License

MIT - Contributions welcome!

File v1.0.1:_meta.json

{ "ownerId": "kn7914ekxf0n1eb58r1nx410dx80y7hr", "slug": "home-assistant-clawbradge", "version": "1.0.1", "publishedAt": 1770922021935 }

Archive v1.0.0: 2 files, 1737 bytes

Files: SKILL.md (3093b), _meta.json (144b)

File v1.0.0:SKILL.md


name: home-assistant description: Control Home Assistant devices via ClawBridge API. Use when James asks to turn lights on/off, check device states, or interact with any exposed Home Assistant entities. Handles entity discovery, state checks, and service calls with human approval flow.

Home Assistant Skill

Control Home Assistant devices through ClawBridge (air-gapped API).

Configuration

  • Base URL: http://192.168.0.238:8100
  • API Key: cb_Z2_Kcoc5Efrztj58lk7SlpZISkwbYlkAkxYjLc_U6lY
  • Discord Webhook: https://discord.com/api/webhooks/1471253559323656194/bGAVuOBcC66p7pyuUFN465lXOHdeScffN1ZyclDj1jb8kmgvocgBwd6J-F5W6qmNQymf

Real-Time Notifications (Primary Method)

Python โ†’ Discord Direct โ€” zero AI cost, instant delivery.

Start Monitoring

python3 /root/.openclaw/workspace/skills/home-assistant/scripts/ha-discord.py &

Stop Monitoring

process kill sessionId={session_id}

Filter Entities

Edit scripts/ha-discord.py:

# Watch only these (empty = all)
WATCH_ENTITIES = ["light.office", "binary_sensor.front_door"]

# Ignore these
IGNORE_ENTITIES = ["sensor.cpu_temp"]

When James Asks to Monitor a New Device

  1. Ask: What's the entity_id? What state to watch for?
  2. Update WATCH_ENTITIES or IGNORE_ENTITIES in the script
  3. Restart the monitor

Device Control

Check Exposed Entities

curl -s "http://192.168.0.238:8100/api/states" \
  -H "Authorization: Bearer cb_Z2_Kcoc5Efrztj58lk7SlpZISkwbYlkAkxYjLc_U6lY" \
  | grep -o '"entity_id": "[^"]*"' | cut -d'"' -f4

Check Entity State

curl -s "http://192.168.0.238:8100/api/states/{entity_id}" \
  -H "Authorization: Bearer cb_Z2_Kcoc5Efrztj58lk7SlpZISkwbYlkAkxYjLc_U6lY"

Control a Device

curl -s -X POST "http://192.168.0.238:8100/api/services/{domain}/{service}" \
  -H "Authorization: Bearer cb_Z2_Kcoc5Efrztj58lk7SlpZISkwbYlkAkxYjLc_U6lY" \
  -H "Content-Type: application/json" \
  -d '{"entity_id": "{entity_id}"}'

Note: Service calls require human approval via ClawBridge UI.

Quick Script

./skills/home-assistant/scripts/ha-control.sh state light.office
./skills/home-assistant/scripts/ha-control.sh on light.office
./skills/home-assistant/scripts/ha-control.sh off light.office

Notification Formats

| Domain | Message | |--------|---------| | light | ๐Ÿ’ก {name} turned on/off | | switch | ๐Ÿ”Œ {name} turned on/off | | binary_sensor (door) | ๐Ÿšช {name} opened/closed | | binary_sensor (motion) | ๐Ÿ“ก {name} motion detected | | person | ๐Ÿ‘ค {name} is now {state} | | lock | ๐Ÿ”’ {name} locked/unlocked | | other | ๐Ÿ”” {name} old โ†’ new |

Scripts

| Script | Purpose | |--------|---------| | ha-discord.py | Primary โ€” WebSocket โ†’ Discord direct (zero cost) | | ha-monitor.py | WebSocket โ†’ file (for cron-based delivery) | | ha-control.sh | Quick CLI for on/off/state |

API Reference

See references/clawbridge-api.md

File v1.0.0:_meta.json

{ "ownerId": "kn7914ekxf0n1eb58r1nx410dx80y7hr", "slug": "home-assistant-clawbradge", "version": "1.0.0", "publishedAt": 1770921220052 }

API & Reliability

Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.

MissingCLAWHUB

Machine interfaces

Contract & API

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/trust"

Operational fit

Reliability & Benchmarks

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Machine Appendix

Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.

MissingCLAWHUB

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "CLAWHUB",
      "generatedAt": "2026-04-17T06:12:16.155Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Clawhub",
    "href": "https://clawhub.ai/finalbillybong/home-assistant-clawbradge",
    "sourceUrl": "https://clawhub.ai/finalbillybong/home-assistant-clawbradge",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "964 downloads",
    "href": "https://clawhub.ai/finalbillybong/home-assistant-clawbradge",
    "sourceUrl": "https://clawhub.ai/finalbillybong/home-assistant-clawbradge",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "latest_release",
    "category": "release",
    "label": "Latest release",
    "value": "1.0.1",
    "href": "https://clawhub.ai/finalbillybong/home-assistant-clawbradge",
    "sourceUrl": "https://clawhub.ai/finalbillybong/home-assistant-clawbradge",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-12T18:47:01.935Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-finalbillybong-home-assistant-clawbradge/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "release",
    "title": "Release 1.0.1",
    "description": "- Expanded documentation for installation, configuration, and usage, including a new \"What is ClawBridge?\" overview. - Generalized and clarified all endpoint, token, and webhook instructions (no hardcoded IPs or secrets). - Added sections on security, audit, and the advantages of ClawBridge compared to direct Home Assistant API access. - Updated process management instructions for starting and stopping notification scripts. - Improved structure and explanations throughout; added a license section.",
    "href": "https://clawhub.ai/finalbillybong/home-assistant-clawbradge",
    "sourceUrl": "https://clawhub.ai/finalbillybong/home-assistant-clawbradge",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-12T18:47:01.935Z",
    "isPublic": true
  }
]

Sponsored

Ads related to Home Assistant Clawbridge and adjacent AI workflows.