# Homeassistant Bridge

> Bidirectional Home Assistant integration — HA cameras in, detection results out

- Skill: `sharpai/homeassistant-bridge` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add sharpai/homeassistant-bridge`
- Raw SKILL.md: https://api.skillmd.com/api/skills/sharpai/homeassistant-bridge/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: sharpai (https://skillmd.com/u/sharpai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/sharpai/homeassistant-bridge

---


# Home Assistant Bridge

Bidirectional integration: HA camera feeds flow into Aegis's AI pipeline (detection → VLM → REID), and analysis results flow back as HA `image_processing` entities for automations.

## How It Works

```
Home Assistant                    SharpAI Aegis
──────────────                    ──────────────
camera.front_door ───────────►    Detection → VLM → REID
camera.backyard                        ↓
                                  Analysis results
image_processing.aegis_*  ◄──────  → objects, descriptions
  → HA automations                   → person identity
  → notifications                    → smart alerts
```

## Wraps

This skill builds on DeepCamera's `src/home-assistant-py/` and `src/home-assistant-nodejs/` modules.

## Setup

```bash
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
```

