$npx -y skills add SharpAI/DeepCamera --skill mqttPublish Aegis events to MQTT broker
| 1 | # MQTT Automation |
| 2 | |
| 3 | Publishes SharpAI Aegis events to an MQTT broker. Integrate with Home Assistant, Node-RED, or any MQTT-compatible automation platform. |
| 4 | |
| 5 | ## Events Published |
| 6 | |
| 7 | | Event | Topic | When | |
| 8 | |-------|-------|------| |
| 9 | | `clip_completed` | `aegis/{camera_id}/clip_completed` | New clip analyzed | |
| 10 | | `person_detected` | `aegis/{camera_id}/person_detected` | Person identified | |
| 11 | | `alert` | `aegis/{camera_id}/alert` | Smart alert triggered | |
| 12 | | `camera_offline` | `aegis/{camera_id}/camera_offline` | Camera stops responding | |
| 13 | |
| 14 | ## Setup |
| 15 | |
| 16 | ```bash |
| 17 | python3 -m venv .venv && source .venv/bin/activate |
| 18 | pip install -r requirements.txt |
| 19 | ``` |