Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
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
clawhub skill install kn7914ekxf0n1eb58r1nx410dx80y7hr:home-assistant-clawbradgeOverall 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
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
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.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Mar 1, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
1.0.1
Install & run
clawhub skill install kn7914ekxf0n1eb58r1nx410dx80y7hr:home-assistant-clawbradgeSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
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.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Clawhub
Protocol compatibility
OpenClaw
Latest release
1.0.1
Adoption signal
964 downloads
Handshake status
UNKNOWN
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
2
Examples
6
Snippets
0
Languages
Unknown
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"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 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
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
v1.0.0 | 2026-02-12T18:33:40.052Z | user
Initial release of home-assistant-clawbradge.
Archive index:
Archive v1.0.1: 2 files, 2041 bytes
Files: SKILL.md (3829b), _meta.json (144b)
File v1.0.1:SKILL.md
Control Home Assistant devices through ClawBridge (air-gapped API proxy with human approval).
ClawBridge is an API gateway that sits between AI agents and Home Assistant:
http://YOUR_CLAWBRIDGE_IP:PORT (e.g., http://192.168.1.100:8100)scripts/ha-discord.py to set your entity filtersPython โ Discord Direct โ zero AI cost, instant delivery.
python3 /path/to/skills/home-assistant/scripts/ha-discord.py &
# Find the process and kill it
pgrep -f ha-discord.py
kill <PID>
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"]
curl -s "http://YOUR_CLAWBRIDGE_IP:PORT/api/states" \
-H "Authorization: Bearer YOUR_API_KEY" \
| grep -o '"entity_id": "[^"]*"' | cut -d'"' -f4
curl -s "http://YOUR_CLAWBRIDGE_IP:PORT/api/states/{entity_id}" \
-H "Authorization: Bearer YOUR_API_KEY"
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.
./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
| 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 |
| 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 |
See references/clawbridge-api.md
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
Control Home Assistant devices through ClawBridge (air-gapped API).
http://192.168.0.238:8100cb_Z2_Kcoc5Efrztj58lk7SlpZISkwbYlkAkxYjLc_U6lYhttps://discord.com/api/webhooks/1471253559323656194/bGAVuOBcC66p7pyuUFN465lXOHdeScffN1ZyclDj1jb8kmgvocgBwd6J-F5W6qmNQymfPython โ Discord Direct โ zero AI cost, instant delivery.
python3 /root/.openclaw/workspace/skills/home-assistant/scripts/ha-discord.py &
process kill sessionId={session_id}
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"]
WATCH_ENTITIES or IGNORE_ENTITIES in the scriptcurl -s "http://192.168.0.238:8100/api/states" \
-H "Authorization: Bearer cb_Z2_Kcoc5Efrztj58lk7SlpZISkwbYlkAkxYjLc_U6lY" \
| grep -o '"entity_id": "[^"]*"' | cut -d'"' -f4
curl -s "http://192.168.0.238:8100/api/states/{entity_id}" \
-H "Authorization: Bearer cb_Z2_Kcoc5Efrztj58lk7SlpZISkwbYlkAkxYjLc_U6lY"
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.
./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
| 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 |
| 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 |
See references/clawbridge-api.md
File v1.0.0:_meta.json
{ "ownerId": "kn7914ekxf0n1eb58r1nx410dx80y7hr", "slug": "home-assistant-clawbradge", "version": "1.0.0", "publishedAt": 1770921220052 }
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
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
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
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
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.