DeepCamera ha-automation-trigger

Fire Aegis detection events in Home Assistant

install
source · Clone the upstream repo
git clone https://github.com/SharpAI/DeepCamera
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/SharpAI/DeepCamera "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/automation/ha-trigger" ~/.claude/skills/sharpai-deepcamera-ha-automation-trigger && rm -rf "$T"
manifest: skills/automation/ha-trigger/SKILL.md
source content

Home Assistant Automation Trigger

Fires events in Home Assistant when Aegis detects activity. Use HA automations to turn on lights, send notifications, or trigger any HA action.

Example HA Automation

automation:
  trigger:
    - platform: event
      event_type: aegis_detection
  condition:
    - condition: template
      value_template: "{{ trigger.event.data.camera == 'front_door' }}"
  action:
    - service: light.turn_on
      target:
        entity_id: light.porch

Setup

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