$npx -y skills add SharpAI/DeepCamera --skill homeassistant-bridgeBidirectional Home Assistant integration — HA cameras in, detection results out
| 1 | # Home Assistant Bridge |
| 2 | |
| 3 | 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. |
| 4 | |
| 5 | ## How It Works |
| 6 | |
| 7 | ``` |
| 8 | Home Assistant SharpAI Aegis |
| 9 | ────────────── ────────────── |
| 10 | camera.front_door ───────────► Detection → VLM → REID |
| 11 | camera.backyard ↓ |
| 12 | Analysis results |
| 13 | image_processing.aegis_* ◄────── → objects, descriptions |
| 14 | → HA automations → person identity |
| 15 | → notifications → smart alerts |
| 16 | ``` |
| 17 | |
| 18 | ## Wraps |
| 19 | |
| 20 | This skill builds on DeepCamera's `src/home-assistant-py/` and `src/home-assistant-nodejs/` modules. |
| 21 | |
| 22 | ## Setup |
| 23 | |
| 24 | ```bash |
| 25 | python3 -m venv .venv && source .venv/bin/activate |
| 26 | pip install -r requirements.txt |
| 27 | ``` |